diff --git a/.buildkite/ftr_configs.yml b/.buildkite/ftr_configs.yml index eb7daad21b0f0..812d22fec913b 100644 --- a/.buildkite/ftr_configs.yml +++ b/.buildkite/ftr_configs.yml @@ -58,6 +58,9 @@ disabled: - x-pack/test/screenshot_creation/config.ts - x-pack/test/fleet_packages/config.ts + # Scalability testing config that we run in its own pipeline + - x-pack/test/performance/scalability/config.ts + defaultQueue: 'n2-4-spot' enabled: - test/accessibility/config.ts diff --git a/.buildkite/pipelines/artifacts.yml b/.buildkite/pipelines/artifacts.yml index 8e08c736694e8..b6d3cc9fc9b14 100644 --- a/.buildkite/pipelines/artifacts.yml +++ b/.buildkite/pipelines/artifacts.yml @@ -73,13 +73,23 @@ steps: - command: .buildkite/scripts/steps/artifacts/cloud.sh label: 'Cloud Deployment' - soft_fail: true + soft_fail: + - exit_status: 255 agents: queue: n2-2 timeout_in_minutes: 30 if: "build.env('RELEASE_BUILD') == null || build.env('RELEASE_BUILD') == '' || build.env('RELEASE_BUILD') == 'false'" retry: automatic: + # Timeout and graceful shutdown | ecctl deployment create falure + - exit_status: 255 + limit: 0 + + # Timeout and forced shutdown + - exit_status: '-1' + limit: 0 + + # Test failures - exit_status: '*' limit: 1 diff --git a/.buildkite/pipelines/scalability/daily.yml b/.buildkite/pipelines/scalability/daily.yml new file mode 100644 index 0000000000000..8529a2f36b4de --- /dev/null +++ b/.buildkite/pipelines/scalability/daily.yml @@ -0,0 +1,23 @@ +steps: + - label: ':male-mechanic::skin-tone-2: Pre-Build' + command: .buildkite/scripts/lifecycle/pre_build.sh + agents: + queue: kibana-default + timeout_in_minutes: 10 + + - wait + + - label: ':kibana: Scalability Tests' + command: .buildkite/scripts/steps/scalability/benchmarking.sh + agents: + queue: kb-static-scalability + timeout_in_minutes: 90 + + - wait: ~ + continue_on_failure: true + + - label: ':male_superhero::skin-tone-2: Post-Build' + command: .buildkite/scripts/lifecycle/post_build.sh + agents: + queue: kibana-default + timeout_in_minutes: 10 diff --git a/.buildkite/scripts/steps/artifacts/cloud.sh b/.buildkite/scripts/steps/artifacts/cloud.sh index 5bf2285ab162a..4d2317ce0b6c7 100644 --- a/.buildkite/scripts/steps/artifacts/cloud.sh +++ b/.buildkite/scripts/steps/artifacts/cloud.sh @@ -12,28 +12,28 @@ mkdir -p target download_artifact "kibana-$FULL_VERSION-linux-x86_64.tar.gz" ./target --build "${KIBANA_BUILD_ID:-$BUILDKITE_BUILD_ID}" -node scripts/build \ - --skip-initialize \ - --skip-generic-folders \ - --skip-platform-folders \ - --skip-archives \ - --docker-images \ - --skip-docker-ubi \ - --skip-docker-ubuntu \ - --skip-docker-contexts - -docker load --input target/kibana-cloud-$FULL_VERSION-docker-image.tar.gz - TAG="$FULL_VERSION-$GIT_COMMIT" -KIBANA_BASE_IMAGE="docker.elastic.co/kibana-ci/kibana-cloud:$FULL_VERSION" KIBANA_TEST_IMAGE="docker.elastic.co/kibana-ci/kibana-cloud:$TAG" -docker tag "$KIBANA_BASE_IMAGE" "$KIBANA_TEST_IMAGE" - echo "$KIBANA_DOCKER_PASSWORD" | docker login -u "$KIBANA_DOCKER_USERNAME" --password-stdin docker.elastic.co trap 'docker logout docker.elastic.co' EXIT -docker push "$KIBANA_TEST_IMAGE" +if docker manifest inspect $KIBANA_TEST_IMAGE &> /dev/null; then + echo "Distribution already exists, skipping build" +else + node scripts/build \ + --skip-initialize \ + --skip-generic-folders \ + --skip-platform-folders \ + --skip-archives \ + --docker-images \ + --docker-tag-qualifier="$GIT_COMMIT" \ + --docker-push \ + --skip-docker-ubi \ + --skip-docker-ubuntu \ + --skip-docker-contexts +fi + docker logout docker.elastic.co echo "--- Create deployment" @@ -62,6 +62,7 @@ function shutdown { trap "shutdown" EXIT ecctl deployment create --track --output json --file "$DEPLOYMENT_SPEC" > "$LOGS" + CLOUD_DEPLOYMENT_USERNAME=$(jq -r --slurp '.[]|select(.resources).resources[] | select(.credentials).credentials.username' "$LOGS") CLOUD_DEPLOYMENT_PASSWORD=$(jq -r --slurp '.[]|select(.resources).resources[] | select(.credentials).credentials.password' "$LOGS") CLOUD_DEPLOYMENT_ID=$(jq -r --slurp '.[0].id' "$LOGS") diff --git a/.buildkite/scripts/steps/functional/scalability_dataset_extraction.sh b/.buildkite/scripts/steps/functional/scalability_dataset_extraction.sh index 4be4a750cf383..a8711c8d2f58a 100755 --- a/.buildkite/scripts/steps/functional/scalability_dataset_extraction.sh +++ b/.buildkite/scripts/steps/functional/scalability_dataset_extraction.sh @@ -22,7 +22,7 @@ for i in "${scalabilityJourneys[@]}"; do echo "Looking for JOURNEY=${JOURNEY_NAME} and BUILD_ID=${BUILD_ID} in APM traces" node scripts/extract_performance_testing_dataset \ - --config "x-pack/test/performance/journeys/${i}/config.ts" \ \ + --config "x-pack/test/performance/journeys/${i}/config.ts" \ --buildId "${BUILD_ID}" \ --es-url "${ES_SERVER_URL}" \ --es-username "${USER_FROM_VAULT}" \ @@ -51,6 +51,6 @@ cd - echo "--- Promoting '${BUILD_ID}' dataset to LATEST" cd "${OUTPUT_DIR}/.." -echo "${BUILD_ID}" > LATEST -gsutil cp LATEST "${GCS_BUCKET}" +echo "${BUILD_ID}" > latest +gsutil cp latest "${GCS_BUCKET}" cd - diff --git a/.buildkite/scripts/steps/scalability/benchmarking.sh b/.buildkite/scripts/steps/scalability/benchmarking.sh new file mode 100755 index 0000000000000..3bd762796e189 --- /dev/null +++ b/.buildkite/scripts/steps/scalability/benchmarking.sh @@ -0,0 +1,122 @@ +#!/usr/bin/env bash + +set -euo pipefail + +source .buildkite/scripts/common/util.sh + +#.buildkite/scripts/bootstrap.sh +echo "--- yarn kbn reset && yarn kbn bootstrap" +yarn kbn reset && yarn kbn bootstrap + +GCS_BUCKET="gs://kibana-performance/scalability-tests" +GCS_ARTIFACTS_REL="gcs_artifacts" +GCS_ARTIFACTS_DIR="${WORKSPACE}/${GCS_ARTIFACTS_REL}" +KIBANA_LOAD_TESTING_DIR="${KIBANA_DIR}/kibana-load-testing" + +# These tests are running on static workers so we must delete previous build, load runner and scalability artifacts +rm -rf "${KIBANA_BUILD_LOCATION}" +rm -rf "${KIBANA_LOAD_TESTING_DIR}" +rm -rf "${GCS_ARTIFACTS_DIR}" + +download_artifacts() { + mkdir -p "${GCS_ARTIFACTS_DIR}" + + gsutil cp "$GCS_BUCKET/latest" "${GCS_ARTIFACTS_DIR}/" + HASH=`cat ${GCS_ARTIFACTS_DIR}/latest` + gsutil cp -r "$GCS_BUCKET/$HASH" "${GCS_ARTIFACTS_DIR}/" + + export LATEST_RUN_ARTIFACTS_DIR="${GCS_ARTIFACTS_DIR}/${HASH}" + + echo "Unzip kibana build, plugins and scalability traces" + cd "$WORKSPACE" + mkdir -p "$KIBANA_BUILD_LOCATION" + tar -xzf "${LATEST_RUN_ARTIFACTS_DIR}/kibana-default.tar.gz" -C "$KIBANA_BUILD_LOCATION" --strip=1 + + cd "$KIBANA_DIR" + tar -xzf "${LATEST_RUN_ARTIFACTS_DIR}/kibana-default-plugins.tar.gz" + tar -xzf "${LATEST_RUN_ARTIFACTS_DIR}/scalability_traces.tar.gz" +} + +checkout_and_compile_load_runner() { + mkdir -p "${KIBANA_LOAD_TESTING_DIR}" && cd "${KIBANA_LOAD_TESTING_DIR}" + + if [[ ! -d .git ]]; then + git init + git remote add origin https://github.com/elastic/kibana-load-testing.git + fi + git fetch origin --depth 1 "main" + git reset --hard FETCH_HEAD + + KIBANA_LOAD_TESTING_GIT_COMMIT="$(git rev-parse HEAD)" + export KIBANA_LOAD_TESTING_GIT_COMMIT + + mvn -q test-compile + echo "Set 'GATLING_PROJECT_PATH' env var for ScalabilityTestRunner" + export GATLING_PROJECT_PATH="$(pwd)" +} + +upload_test_results() { + cd "${KIBANA_DIR}" + echo "--- Archive Gatling reports and upload as build artifacts" + tar -czf "scalability_test_report.tar.gz" --exclude=simulation.log -C kibana-load-testing/target gatling + buildkite-agent artifact upload "scalability_test_report.tar.gz" + cd "${LATEST_RUN_ARTIFACTS_DIR}" + echo "Upload scalability traces as build artifacts" + buildkite-agent artifact upload "scalability_traces.tar.gz" +} + +echo "--- Download the latest artifacts from single user performance pipeline" +download_artifacts + +echo "--- Clone kibana-load-testing repo and compile project" +checkout_and_compile_load_runner + +echo "--- Run Scalability Tests with Elasticsearch started only once and Kibana restart before each journey" +cd "$KIBANA_DIR" +node scripts/es snapshot& + +esPid=$! +# Set trap on EXIT to stop Elasticsearch process +trap "kill -9 $esPid" EXIT + +# unset env vars defined in other parts of CI for automatic APM collection of +# Kibana. We manage APM config in our FTR config and performance service, and +# APM treats config in the ENV with a very high precedence. +unset ELASTIC_APM_ENVIRONMENT +unset ELASTIC_APM_TRANSACTION_SAMPLE_RATE +unset ELASTIC_APM_SERVER_URL +unset ELASTIC_APM_SECRET_TOKEN +unset ELASTIC_APM_ACTIVE +unset ELASTIC_APM_CONTEXT_PROPAGATION_ONLY +unset ELASTIC_APM_GLOBAL_LABELS +unset ELASTIC_APM_MAX_QUEUE_SIZE +unset ELASTIC_APM_METRICS_INTERVAL +unset ELASTIC_APM_CAPTURE_SPAN_STACK_TRACES +unset ELASTIC_APM_BREAKDOWN_METRICS + + +export TEST_ES_DISABLE_STARTUP=true +ES_HOST="localhost:9200" +export TEST_ES_URL="http://elastic:changeme@${ES_HOST}" +# Overriding Gatling default configuration +export ES_URL="http://${ES_HOST}" + +# Pings the ES server every second for 2 mins until its status is green +curl --retry 120 \ + --retry-delay 1 \ + --retry-connrefused \ + -I -XGET "${TEST_ES_URL}/_cluster/health?wait_for_nodes=>=1&wait_for_status=yellow" + +export ELASTIC_APM_ACTIVE=true + +for journey in scalability_traces/server/*; do + export SCALABILITY_JOURNEY_PATH="$KIBANA_DIR/$journey" + echo "--- Run scalability file: $SCALABILITY_JOURNEY_PATH" + node scripts/functional_tests \ + --config x-pack/test/performance/scalability/config.ts \ + --kibana-install-dir "$KIBANA_BUILD_LOCATION" \ + --debug +done + +echo "--- Upload test results" +upload_test_results diff --git a/.eslintrc.js b/.eslintrc.js index caa408887c499..b73b88ba95de9 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -287,12 +287,6 @@ module.exports = { 'jsx-a11y/click-events-have-key-events': 'off', }, }, - { - files: ['x-pack/plugins/ml/**/*.{js,mjs,ts,tsx}'], - rules: { - 'react-hooks/exhaustive-deps': 'off', - }, - }, /** * Files that require dual-license headers, settings diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index ea68df6a8bd8c..71af2a3e67230 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -194,6 +194,7 @@ x-pack/examples/files_example @elastic/kibana-app-services # Machine Learning /x-pack/plugins/ml/ @elastic/ml-ui +/x-pack/plugins/ml/common/openapi/ @elastic/mlr-docs /x-pack/test/accessibility/apps/ml.ts @elastic/ml-ui /x-pack/test/accessibility/apps/ml_embeddables_in_dashboard.ts @elastic/ml-ui /x-pack/test/api_integration/apis/ml/ @elastic/ml-ui diff --git a/api_docs/actions.devdocs.json b/api_docs/actions.devdocs.json index 598753b29af80..c2759a6e70e0f 100644 --- a/api_docs/actions.devdocs.json +++ b/api_docs/actions.devdocs.json @@ -37,6 +37,7 @@ ], "path": "x-pack/plugins/actions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -50,6 +51,7 @@ ], "path": "x-pack/plugins/actions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -72,6 +74,7 @@ ], "path": "x-pack/plugins/actions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -96,6 +99,7 @@ ], "path": "x-pack/plugins/actions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -111,6 +115,7 @@ ], "path": "x-pack/plugins/actions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -132,6 +137,7 @@ "description": [], "path": "x-pack/plugins/actions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -161,6 +167,7 @@ ], "path": "x-pack/plugins/actions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -174,6 +181,7 @@ ], "path": "x-pack/plugins/actions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -195,6 +203,7 @@ ], "path": "x-pack/plugins/actions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -235,6 +244,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/case.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -248,6 +258,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/case.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -268,6 +279,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/case.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -285,6 +297,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/case.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -295,6 +308,7 @@ "description": [], "path": "x-pack/plugins/actions/server/sub_action_framework/case.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -304,7 +318,8 @@ "label": "incidentId", "description": [], "path": "x-pack/plugins/actions/server/sub_action_framework/case.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -314,7 +329,8 @@ "label": "comment", "description": [], "path": "x-pack/plugins/actions/server/sub_action_framework/case.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -335,6 +351,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/case.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -348,6 +365,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/case.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -367,6 +385,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/case.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -377,6 +396,7 @@ "description": [], "path": "x-pack/plugins/actions/server/sub_action_framework/case.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -386,7 +406,8 @@ "label": "incidentId", "description": [], "path": "x-pack/plugins/actions/server/sub_action_framework/case.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -399,7 +420,8 @@ "{ [x: string]: unknown; }" ], "path": "x-pack/plugins/actions/server/sub_action_framework/case.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -420,6 +442,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/case.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -430,6 +453,7 @@ "description": [], "path": "x-pack/plugins/actions/server/sub_action_framework/case.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -439,7 +463,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/actions/server/sub_action_framework/case.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -462,6 +487,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/case.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -475,6 +501,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/case.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -502,6 +529,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/sub_action_connector.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -514,7 +542,8 @@ "Logger" ], "path": "x-pack/plugins/actions/server/sub_action_framework/sub_action_connector.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -527,7 +556,8 @@ "{ id: string; type: string; }" ], "path": "x-pack/plugins/actions/server/sub_action_framework/sub_action_connector.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -540,7 +570,8 @@ "Config" ], "path": "x-pack/plugins/actions/server/sub_action_framework/sub_action_connector.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -553,7 +584,8 @@ "Secrets" ], "path": "x-pack/plugins/actions/server/sub_action_framework/sub_action_connector.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -567,6 +599,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/sub_action_connector.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -587,6 +620,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/sub_action_connector.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -606,6 +640,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/sub_action_connector.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -619,6 +654,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/sub_action_connector.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -636,6 +672,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/sub_action_connector.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -649,6 +686,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/sub_action_connector.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -668,6 +706,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/sub_action_connector.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -685,6 +724,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/sub_action_connector.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -699,6 +739,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/sub_action_connector.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -724,6 +765,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/sub_action_connector.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -743,6 +785,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/sub_action_connector.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -768,6 +811,7 @@ ], "path": "x-pack/plugins/actions/server/lib/action_execution_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -782,6 +826,7 @@ ], "path": "x-pack/plugins/actions/server/lib/action_execution_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -803,6 +848,7 @@ ], "path": "x-pack/plugins/actions/server/lib/action_execution_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -818,6 +864,7 @@ ], "path": "x-pack/plugins/actions/server/lib/action_execution_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -845,6 +892,7 @@ ], "path": "x-pack/plugins/actions/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -854,7 +902,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -864,7 +913,8 @@ "label": "actionTypeId", "description": [], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -874,7 +924,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -887,7 +938,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -900,7 +952,8 @@ "Config | undefined" ], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -910,7 +963,8 @@ "label": "isPreconfigured", "description": [], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -920,7 +974,8 @@ "label": "isDeprecated", "description": [], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -934,6 +989,7 @@ "description": [], "path": "x-pack/plugins/actions/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -954,6 +1010,7 @@ ], "path": "x-pack/plugins/actions/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -977,6 +1034,7 @@ ], "path": "x-pack/plugins/actions/server/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -990,7 +1048,8 @@ "string | undefined" ], "path": "x-pack/plugins/actions/server/action_type_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1006,6 +1065,7 @@ "description": [], "path": "x-pack/plugins/actions/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -1024,7 +1084,8 @@ } ], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -1043,7 +1104,8 @@ } ], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1067,6 +1129,7 @@ ], "path": "x-pack/plugins/actions/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -1076,7 +1139,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -1086,7 +1150,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -1099,7 +1164,8 @@ "number | undefined" ], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -1112,7 +1178,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\"" ], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -1125,7 +1192,8 @@ "string[]" ], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -1138,7 +1206,8 @@ "{ params?: ValidatorType | undefined; config?: ValidatorType | undefined; secrets?: ValidatorType | undefined; connector?: ((config: Config, secrets: Secrets) => string | null) | undefined; } | undefined" ], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -1152,6 +1221,7 @@ ], "path": "x-pack/plugins/actions/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -1165,6 +1235,7 @@ ], "path": "x-pack/plugins/actions/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1179,6 +1250,7 @@ ], "path": "x-pack/plugins/actions/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1193,6 +1265,7 @@ ], "path": "x-pack/plugins/actions/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1226,6 +1299,7 @@ ], "path": "x-pack/plugins/actions/server/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1246,7 +1320,8 @@ "" ], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1272,6 +1347,7 @@ ], "path": "x-pack/plugins/actions/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -1281,7 +1357,8 @@ "label": "actionId", "description": [], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -1294,7 +1371,8 @@ "Services" ], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -1307,7 +1385,8 @@ "Config" ], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -1320,7 +1399,8 @@ "Secrets" ], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -1333,7 +1413,8 @@ "Params" ], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -1346,7 +1427,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -1360,7 +1442,8 @@ " | undefined" ], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1394,6 +1477,7 @@ ], "path": "x-pack/plugins/actions/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -1403,7 +1487,8 @@ "label": "referencedByCount", "description": [], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1435,6 +1520,7 @@ ], "path": "x-pack/plugins/actions/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -1447,7 +1533,8 @@ "Secrets" ], "path": "x-pack/plugins/actions/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1471,6 +1558,7 @@ ], "path": "x-pack/plugins/actions/server/sub_action_framework/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -1485,7 +1573,8 @@ "{ id: string; type: string; }" ], "path": "x-pack/plugins/actions/server/sub_action_framework/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -1498,7 +1587,8 @@ "Config" ], "path": "x-pack/plugins/actions/server/sub_action_framework/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -1511,7 +1601,8 @@ "ActionsConfigurationUtilities" ], "path": "x-pack/plugins/actions/server/sub_action_framework/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -1524,7 +1615,8 @@ "Logger" ], "path": "x-pack/plugins/actions/server/sub_action_framework/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -1537,7 +1629,8 @@ "Secrets" ], "path": "x-pack/plugins/actions/server/sub_action_framework/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -1550,7 +1643,8 @@ "Services" ], "path": "x-pack/plugins/actions/server/sub_action_framework/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1570,6 +1664,7 @@ ], "path": "x-pack/plugins/actions/server/constants/saved_objects.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1584,6 +1679,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/cases_webhook/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1598,6 +1694,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/email.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1612,6 +1709,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/es_index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1626,6 +1724,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/pagerduty.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1640,6 +1739,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/server_log.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1654,6 +1754,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/slack.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1668,6 +1769,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/webhook.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1682,6 +1784,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/servicenow/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1696,6 +1799,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/jira/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1710,6 +1814,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/resilient/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1724,6 +1829,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/teams.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1738,6 +1844,7 @@ ], "path": "x-pack/plugins/actions/server/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1838,6 +1945,7 @@ ], "path": "x-pack/plugins/actions/server/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1852,6 +1960,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/cases_webhook/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1866,6 +1975,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/email.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1880,6 +1990,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/es_index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1894,6 +2005,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/pagerduty.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1908,6 +2020,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/server_log.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1922,6 +2035,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/slack.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1936,6 +2050,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/webhook.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1950,6 +2065,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/jira/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1964,6 +2080,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/resilient/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1978,6 +2095,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/teams.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1992,6 +2110,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/servicenow/config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2006,6 +2125,7 @@ ], "path": "x-pack/plugins/actions/server/builtin_action_types/servicenow/config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -2019,6 +2139,7 @@ "description": [], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2052,6 +2173,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2072,6 +2194,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2099,6 +2222,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2113,6 +2237,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2130,6 +2255,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2143,6 +2269,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2162,6 +2289,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2179,6 +2307,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2195,6 +2324,7 @@ "description": [], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2208,6 +2338,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2221,6 +2352,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2232,6 +2364,7 @@ "description": [], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2241,7 +2374,8 @@ "label": "notifyUsage", "description": [], "path": "x-pack/plugins/actions/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2260,6 +2394,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2273,6 +2408,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2287,6 +2423,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2298,6 +2435,7 @@ "description": [], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2307,7 +2445,8 @@ "label": "notifyUsage", "description": [], "path": "x-pack/plugins/actions/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2338,6 +2477,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2352,6 +2492,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2381,6 +2522,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2395,6 +2537,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2422,7 +2565,8 @@ ">[]" ], "path": "x-pack/plugins/actions/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -2440,6 +2584,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2453,6 +2598,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2467,6 +2613,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2481,6 +2628,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2495,6 +2643,7 @@ ], "path": "x-pack/plugins/actions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2520,6 +2669,7 @@ ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2533,6 +2683,7 @@ ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2551,6 +2702,7 @@ ], "path": "x-pack/plugins/actions/common/alert_history_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2564,6 +2716,7 @@ ], "path": "x-pack/plugins/actions/common/alert_history_schema.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2582,6 +2735,7 @@ ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2595,6 +2749,7 @@ ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2613,6 +2768,7 @@ ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2626,6 +2782,7 @@ ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2646,6 +2803,7 @@ ], "path": "x-pack/plugins/actions/common/mustache_template.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2659,6 +2817,7 @@ ], "path": "x-pack/plugins/actions/common/mustache_template.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2685,6 +2844,7 @@ ], "path": "x-pack/plugins/actions/common/validate_email_addresses.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2705,6 +2865,7 @@ ], "path": "x-pack/plugins/actions/common/validate_email_addresses.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2723,6 +2884,7 @@ ], "path": "x-pack/plugins/actions/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2736,6 +2898,7 @@ ], "path": "x-pack/plugins/actions/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2770,6 +2933,7 @@ ], "path": "x-pack/plugins/actions/common/validate_email_addresses.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2783,6 +2947,7 @@ ], "path": "x-pack/plugins/actions/common/validate_email_addresses.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2797,6 +2962,7 @@ ], "path": "x-pack/plugins/actions/common/validate_email_addresses.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2817,6 +2983,7 @@ ], "path": "x-pack/plugins/actions/common/validate_email_addresses.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2843,6 +3010,7 @@ ], "path": "x-pack/plugins/actions/common/validate_email_addresses.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2856,6 +3024,7 @@ ], "path": "x-pack/plugins/actions/common/validate_email_addresses.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2876,6 +3045,7 @@ ], "path": "x-pack/plugins/actions/common/mustache_template.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2889,6 +3059,7 @@ ], "path": "x-pack/plugins/actions/common/mustache_template.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2906,6 +3077,7 @@ "description": [], "path": "x-pack/plugins/actions/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2915,7 +3087,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -2925,7 +3098,8 @@ "label": "actionTypeId", "description": [], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -2935,7 +3109,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -2948,7 +3123,8 @@ "{ [x: string]: any; }" ], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -2958,7 +3134,8 @@ "label": "isPreconfigured", "description": [], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2972,6 +3149,7 @@ "description": [], "path": "x-pack/plugins/actions/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -2984,7 +3162,8 @@ "string[]" ], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2998,6 +3177,7 @@ "description": [], "path": "x-pack/plugins/actions/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -3007,7 +3187,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3017,7 +3198,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3027,7 +3209,8 @@ "label": "enabled", "description": [], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3037,7 +3220,8 @@ "label": "enabledInConfig", "description": [], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3047,7 +3231,8 @@ "label": "enabledInLicense", "description": [], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3060,7 +3245,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\"" ], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3073,7 +3259,8 @@ "string[]" ], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3097,6 +3284,7 @@ ], "path": "x-pack/plugins/actions/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -3106,7 +3294,8 @@ "label": "actionId", "description": [], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3119,7 +3308,8 @@ "\"error\" | \"ok\"" ], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3132,7 +3322,8 @@ "string | undefined" ], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3145,7 +3336,8 @@ "string | undefined" ], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3158,7 +3350,8 @@ "Data | undefined" ], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3171,7 +3364,8 @@ "boolean | Date | null | undefined" ], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3185,6 +3379,7 @@ "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -3194,7 +3389,8 @@ "label": "table", "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3204,7 +3400,8 @@ "label": "appScope", "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3214,7 +3411,8 @@ "label": "useImportAPI", "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3224,7 +3422,8 @@ "label": "importSetTable", "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3234,7 +3433,8 @@ "label": "commentFieldKey", "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3247,7 +3447,8 @@ "string | undefined" ], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3261,6 +3462,7 @@ "description": [], "path": "x-pack/plugins/actions/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -3270,7 +3472,8 @@ "label": "address", "description": [], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3280,7 +3483,8 @@ "label": "valid", "description": [], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3300,7 +3504,8 @@ " | undefined" ], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3316,6 +3521,7 @@ ], "path": "x-pack/plugins/actions/common/validate_email_addresses.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -3330,7 +3536,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/actions/common/validate_email_addresses.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3346,6 +3553,7 @@ "description": [], "path": "x-pack/plugins/actions/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3357,6 +3565,7 @@ "description": [], "path": "x-pack/plugins/actions/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3373,6 +3582,7 @@ ], "path": "x-pack/plugins/actions/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3394,6 +3604,7 @@ ], "path": "x-pack/plugins/actions/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3408,6 +3619,7 @@ ], "path": "x-pack/plugins/actions/common/alert_history_schema.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3419,6 +3631,7 @@ "description": [], "path": "x-pack/plugins/actions/common/alert_history_schema.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3433,6 +3646,7 @@ ], "path": "x-pack/plugins/actions/common/alert_history_schema.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3447,6 +3661,7 @@ ], "path": "x-pack/plugins/actions/common/alert_history_schema.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3461,6 +3676,7 @@ ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3475,6 +3691,7 @@ ], "path": "x-pack/plugins/actions/common/rewrite_request_case.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3489,6 +3706,7 @@ ], "path": "x-pack/plugins/actions/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3503,6 +3721,7 @@ ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3517,6 +3736,7 @@ ], "path": "x-pack/plugins/actions/common/servicenow_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3531,6 +3751,7 @@ ], "path": "x-pack/plugins/actions/common/servicenow_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3545,6 +3766,7 @@ ], "path": "x-pack/plugins/actions/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3567,6 +3789,7 @@ ], "path": "x-pack/plugins/actions/common/rewrite_request_case.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3580,7 +3803,8 @@ "{ [K in keyof T as CamelToSnake>>]: T[K]; }" ], "path": "x-pack/plugins/actions/common/rewrite_request_case.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3613,6 +3837,7 @@ ], "path": "x-pack/plugins/actions/common/rewrite_request_case.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3626,7 +3851,8 @@ "T" ], "path": "x-pack/plugins/actions/common/rewrite_request_case.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3643,6 +3869,7 @@ ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3657,6 +3884,7 @@ ], "path": "x-pack/plugins/actions/common/servicenow_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3671,6 +3899,7 @@ ], "path": "x-pack/plugins/actions/common/servicenow_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3685,6 +3914,7 @@ ], "path": "x-pack/plugins/actions/common/servicenow_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3699,6 +3929,7 @@ ], "path": "x-pack/plugins/actions/common/servicenow_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3713,6 +3944,7 @@ ], "path": "x-pack/plugins/actions/common/servicenow_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3735,6 +3967,7 @@ ], "path": "x-pack/plugins/actions/common/servicenow_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3749,6 +3982,7 @@ ], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3762,6 +3996,7 @@ "description": [], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -3771,7 +4006,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3781,7 +4017,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3791,7 +4028,8 @@ "label": "compatibility", "description": [], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3805,6 +4043,7 @@ "description": [], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -3814,7 +4053,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3824,7 +4064,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3834,7 +4075,8 @@ "label": "compatibility", "description": [], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3851,6 +4093,7 @@ ], "path": "x-pack/plugins/actions/common/mustache_template.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3862,6 +4105,7 @@ "description": [], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -3871,7 +4115,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3881,7 +4126,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3891,7 +4137,8 @@ "label": "compatibility", "description": [], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3905,6 +4152,7 @@ "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -3915,6 +4163,7 @@ "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -3924,7 +4173,8 @@ "label": "importSetTable", "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3934,7 +4184,8 @@ "label": "appScope", "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3944,7 +4195,8 @@ "label": "table", "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3957,7 +4209,8 @@ "true" ], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3967,7 +4220,8 @@ "label": "commentFieldKey", "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -3977,7 +4231,8 @@ "label": "appId", "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3990,6 +4245,7 @@ "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -3999,7 +4255,8 @@ "label": "importSetTable", "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -4009,7 +4266,8 @@ "label": "appScope", "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -4019,7 +4277,8 @@ "label": "table", "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -4032,7 +4291,8 @@ "true" ], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -4042,7 +4302,8 @@ "label": "commentFieldKey", "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -4052,7 +4313,8 @@ "label": "appId", "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -4065,6 +4327,7 @@ "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -4074,7 +4337,8 @@ "label": "importSetTable", "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -4084,7 +4348,8 @@ "label": "appScope", "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -4094,7 +4359,8 @@ "label": "table", "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -4107,7 +4373,8 @@ "false" ], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -4117,7 +4384,8 @@ "label": "commentFieldKey", "description": [], "path": "x-pack/plugins/actions/common/servicenow_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -4133,6 +4401,7 @@ "description": [], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "actions", @@ -4142,7 +4411,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -4152,7 +4422,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "actions", @@ -4162,7 +4433,8 @@ "label": "compatibility", "description": [], "path": "x-pack/plugins/actions/common/connector_feature_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/actions.mdx b/api_docs/actions.mdx index fd159586d1394..dadf167e8740e 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'actions'] --- import actionsObj from './actions.devdocs.json'; diff --git a/api_docs/advanced_settings.devdocs.json b/api_docs/advanced_settings.devdocs.json index c37abfdb271bb..04693d637ccb0 100644 --- a/api_docs/advanced_settings.devdocs.json +++ b/api_docs/advanced_settings.devdocs.json @@ -11,6 +11,7 @@ "description": [], "path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "advancedSettings", @@ -23,7 +24,8 @@ "{ [key: string]: Id; }" ], "path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "advancedSettings", @@ -34,6 +36,7 @@ "description": [], "path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "advancedSettings", @@ -47,6 +50,7 @@ ], "path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -62,6 +66,7 @@ ], "path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -77,6 +82,7 @@ ], "path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -91,6 +97,7 @@ "description": [], "path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -102,6 +109,7 @@ "description": [], "path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "advancedSettings", @@ -114,7 +122,8 @@ "{ [key: string]: Id; }" ], "path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "advancedSettings", @@ -130,6 +139,7 @@ ], "path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "advancedSettings", @@ -143,6 +153,7 @@ ], "path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -157,6 +168,7 @@ ], "path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -171,6 +183,7 @@ ], "path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -187,6 +200,7 @@ "description": [], "path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "advancedSettings", @@ -199,7 +213,8 @@ "{ [key: string]: Id; }" ], "path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "advancedSettings", @@ -215,6 +230,7 @@ ], "path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "advancedSettings", @@ -228,6 +244,7 @@ ], "path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -258,6 +275,7 @@ ], "path": "src/plugins/advanced_settings/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -271,7 +289,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -290,6 +309,7 @@ "description": [], "path": "src/plugins/advanced_settings/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "advancedSettings", @@ -302,7 +322,8 @@ "{ componentType: { [key: string]: Id; }; register: (id: Id, component: RegistryComponent, allowOverride?: boolean) => void; }" ], "path": "src/plugins/advanced_settings/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -317,6 +338,7 @@ "description": [], "path": "src/plugins/advanced_settings/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "advancedSettings", @@ -329,7 +351,8 @@ "{ componentType: { [key: string]: Id; }; get: (id: Id) => RegistryComponent; }" ], "path": "src/plugins/advanced_settings/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", diff --git a/api_docs/advanced_settings.mdx b/api_docs/advanced_settings.mdx index e8c147d3251fa..bff8c3b825061 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'advancedSettings'] --- import advancedSettingsObj from './advanced_settings.devdocs.json'; diff --git a/api_docs/aiops.devdocs.json b/api_docs/aiops.devdocs.json index 84e7d22381d1e..d1fca06df35b7 100644 --- a/api_docs/aiops.devdocs.json +++ b/api_docs/aiops.devdocs.json @@ -19,6 +19,7 @@ ], "path": "x-pack/plugins/aiops/public/shared_lazy_components.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "aiops", @@ -36,6 +37,7 @@ ], "path": "x-pack/plugins/aiops/public/shared_lazy_components.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -61,6 +63,7 @@ ], "path": "x-pack/plugins/aiops/public/types.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -83,6 +86,7 @@ ], "path": "x-pack/plugins/aiops/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -98,6 +102,7 @@ ], "path": "x-pack/plugins/aiops/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true @@ -123,6 +128,7 @@ ], "path": "x-pack/plugins/aiops/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -139,6 +145,7 @@ ], "path": "x-pack/plugins/aiops/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -155,6 +162,7 @@ ], "path": "x-pack/plugins/aiops/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/aiops.mdx b/api_docs/aiops.mdx index bba4554bee566..689c0f3dea5c1 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'aiops'] --- import aiopsObj from './aiops.devdocs.json'; diff --git a/api_docs/alerting.devdocs.json b/api_docs/alerting.devdocs.json index a71cca2e3d278..5eecc7808e303 100644 --- a/api_docs/alerting.devdocs.json +++ b/api_docs/alerting.devdocs.json @@ -29,6 +29,7 @@ ], "path": "x-pack/plugins/alerting/public/alert_navigation_registry/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [ "A URL that is meant to be relative to your application id, or a state object that your application uses to render\nthe rule. This information is intended to be used with cores NavigateToApp function, along with the application id that was\noriginally registered to {@link PluginSetupContract.registerNavigation }." ], @@ -94,7 +95,8 @@ " | undefined; activeSnoozes?: string[] | undefined; isSnoozedUntil?: Date | null | undefined; }" ], "path": "x-pack/plugins/alerting/public/alert_navigation_registry/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -110,6 +112,7 @@ "description": [], "path": "x-pack/plugins/alerting/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -135,6 +138,7 @@ ], "path": "x-pack/plugins/alerting/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -150,6 +154,7 @@ ], "path": "x-pack/plugins/alerting/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -166,6 +171,7 @@ ], "path": "x-pack/plugins/alerting/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -188,6 +194,7 @@ ], "path": "x-pack/plugins/alerting/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -215,6 +222,7 @@ ], "path": "x-pack/plugins/alerting/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -230,6 +238,7 @@ ], "path": "x-pack/plugins/alerting/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -252,6 +261,7 @@ ], "path": "x-pack/plugins/alerting/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -270,6 +280,7 @@ "description": [], "path": "x-pack/plugins/alerting/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -291,6 +302,7 @@ ], "path": "x-pack/plugins/alerting/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -304,6 +316,7 @@ ], "path": "x-pack/plugins/alerting/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -325,6 +338,7 @@ "description": [], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -338,6 +352,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -351,6 +366,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -368,6 +384,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -409,6 +426,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -422,6 +440,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -452,6 +471,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -472,6 +492,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -491,6 +512,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -504,6 +526,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -535,6 +558,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -554,6 +578,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -568,6 +593,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -615,6 +641,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -634,6 +661,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -648,6 +676,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -676,6 +705,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -721,6 +751,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -736,6 +767,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -766,6 +798,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -786,6 +819,7 @@ ], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -810,6 +844,7 @@ ], "path": "x-pack/plugins/alerting/server/lib/errors/es_error_parser.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -823,6 +858,7 @@ ], "path": "x-pack/plugins/alerting/server/lib/errors/es_error_parser.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -841,6 +877,7 @@ ], "path": "x-pack/plugins/alerting/server/lib/is_rule_snoozed.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -854,6 +891,7 @@ ], "path": "x-pack/plugins/alerting/server/lib/is_rule_snoozed.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -872,6 +910,7 @@ ], "path": "x-pack/plugins/alerting/common/parse_duration.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -885,6 +924,7 @@ ], "path": "x-pack/plugins/alerting/common/parse_duration.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -912,6 +952,7 @@ ], "path": "x-pack/plugins/alerting/common/rule_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -924,7 +965,8 @@ "ActionGroupIds" ], "path": "x-pack/plugins/alerting/common/rule_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -934,7 +976,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/alerting/common/rule_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -948,6 +991,7 @@ "description": [], "path": "x-pack/plugins/alerting/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -968,6 +1012,7 @@ ], "path": "x-pack/plugins/alerting/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -985,6 +1030,7 @@ ], "path": "x-pack/plugins/alerting/server/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -1008,6 +1054,7 @@ ], "path": "x-pack/plugins/alerting/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1023,6 +1070,7 @@ ], "path": "x-pack/plugins/alerting/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1038,6 +1086,7 @@ "description": [], "path": "x-pack/plugins/alerting/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -1056,7 +1105,8 @@ } ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1075,7 +1125,8 @@ } ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1089,6 +1140,7 @@ "description": [], "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -1098,7 +1150,8 @@ "label": "message", "description": [], "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1111,7 +1164,8 @@ "{ id: string; name: string; }" ], "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1135,6 +1189,7 @@ ], "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -1149,7 +1204,8 @@ " | undefined" ], "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1169,7 +1225,8 @@ "[]" ], "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1182,7 +1239,8 @@ "RuleParamsModifier | undefined" ], "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1206,6 +1264,7 @@ ], "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -1218,7 +1277,8 @@ "string[]" ], "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1238,7 +1298,8 @@ "[]" ], "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1251,7 +1312,8 @@ "RuleParamsModifier | undefined" ], "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1275,6 +1337,7 @@ ], "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -1284,7 +1347,8 @@ "label": "page", "description": [], "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1294,7 +1358,8 @@ "label": "perPage", "description": [], "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1304,7 +1369,8 @@ "label": "total", "description": [], "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1324,7 +1390,8 @@ "[]" ], "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1338,6 +1405,7 @@ "description": [], "path": "x-pack/plugins/alerting/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -1407,6 +1475,7 @@ ], "path": "x-pack/plugins/alerting/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -1427,6 +1496,7 @@ ], "path": "x-pack/plugins/alerting/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1446,6 +1516,7 @@ ], "path": "x-pack/plugins/alerting/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1468,6 +1539,7 @@ ], "path": "x-pack/plugins/alerting/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1483,6 +1555,7 @@ "description": [], "path": "x-pack/plugins/alerting/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -1498,6 +1571,7 @@ ], "path": "x-pack/plugins/alerting/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -1516,6 +1590,7 @@ ], "path": "x-pack/plugins/alerting/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -1530,6 +1605,7 @@ ], "path": "x-pack/plugins/alerting/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1559,6 +1635,7 @@ ], "path": "x-pack/plugins/alerting/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -1573,6 +1650,7 @@ ], "path": "x-pack/plugins/alerting/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1598,6 +1676,7 @@ ], "path": "x-pack/plugins/alerting/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1623,6 +1702,7 @@ ], "path": "x-pack/plugins/alerting/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -1632,7 +1712,8 @@ "label": "alertId", "description": [], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1642,7 +1723,8 @@ "label": "executionId", "description": [], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1655,7 +1737,8 @@ "Date" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1668,7 +1751,8 @@ "Date | null" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1688,7 +1772,8 @@ "" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1701,7 +1786,8 @@ "Params" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1714,7 +1800,8 @@ "State" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1735,7 +1822,8 @@ ", \"tags\" | \"name\" | \"enabled\" | \"actions\" | \"throttle\" | \"consumer\" | \"schedule\" | \"createdBy\" | \"updatedBy\" | \"createdAt\" | \"updatedAt\" | \"notifyWhen\"> & { producer: string; ruleTypeId: string; ruleTypeName: string; }" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1745,7 +1833,8 @@ "label": "spaceId", "description": [], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1758,7 +1847,8 @@ "string | undefined" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1768,7 +1858,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1781,7 +1872,8 @@ "string[]" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1794,7 +1886,8 @@ "string | null" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1807,7 +1900,8 @@ "string | null" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1827,10 +1921,11 @@ "section": "def-server.RuleExecutorServices", "text": "RuleExecutorServices" }, - "" + "" ], "path": "x-pack/plugins/alerting/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -1849,7 +1944,8 @@ } ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1862,7 +1958,8 @@ "SavedObjectsClientContract" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1881,7 +1978,8 @@ } ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1894,30 +1992,24 @@ "IScopedClusterClient" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", "id": "def-server.RuleExecutorServices.alertFactory", - "type": "Object", + "type": "CompoundType", "tags": [], "label": "alertFactory", "description": [], "signature": [ - "{ create: (id: string) => ", - { - "pluginId": "alerting", - "scope": "server", - "docId": "kibAlertingPluginApi", - "section": "def-server.PublicAlert", - "text": "PublicAlert" - }, - "; hasReachedAlertLimit: () => boolean; done: () => ", - "AlertFactoryDoneUtils", - "; }" + "Pick<", + "AlertFactory", + ", \"done\" | \"create\"> & { alertLimit: Pick<{ getValue: () => number; setLimitReached: (reached: boolean) => void; checkLimitUsage: () => void; }, \"getValue\" | \"setLimitReached\">; }" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1931,6 +2023,7 @@ ], "path": "x-pack/plugins/alerting/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1946,6 +2039,7 @@ ], "path": "x-pack/plugins/alerting/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1971,6 +2065,7 @@ ], "path": "x-pack/plugins/alerting/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -1984,7 +2079,8 @@ "[]" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -1997,7 +2093,8 @@ "Params" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2021,6 +2118,7 @@ ], "path": "x-pack/plugins/alerting/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -2030,7 +2128,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -2040,7 +2139,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -2055,7 +2155,8 @@ " | undefined; } | undefined" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -2075,7 +2176,8 @@ "[]" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -2088,7 +2190,8 @@ "ActionGroupIds" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -2108,7 +2211,8 @@ " | undefined" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -2138,6 +2242,7 @@ ], "path": "x-pack/plugins/alerting/server/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2158,7 +2263,8 @@ "" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2170,7 +2276,8 @@ "label": "producer", "description": [], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -2207,7 +2314,8 @@ "[] | undefined; } | undefined" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -2220,7 +2328,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\"" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -2243,7 +2352,8 @@ "[]) => Params; } | undefined" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -2253,7 +2363,8 @@ "label": "isExportable", "description": [], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -2266,7 +2377,8 @@ "string | undefined" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -2279,7 +2391,8 @@ "string | undefined" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -2292,7 +2405,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -2305,7 +2419,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/alerting/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2321,6 +2436,7 @@ "description": [], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2332,6 +2448,7 @@ "description": [], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization_kuery.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2343,6 +2460,7 @@ "description": [], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2354,6 +2472,7 @@ "description": [], "path": "x-pack/plugins/alerting/server/authorization/alerting_authorization.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -2386,6 +2505,7 @@ ], "path": "x-pack/plugins/alerting/common/rule_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2400,6 +2520,7 @@ ], "path": "x-pack/plugins/alerting/server/config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2414,6 +2535,7 @@ ], "path": "x-pack/plugins/alerting/common/alert_instance.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2428,6 +2550,7 @@ ], "path": "x-pack/plugins/alerting/common/alert_instance.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2450,6 +2573,7 @@ ], "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2479,6 +2603,7 @@ ], "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2493,6 +2618,7 @@ ], "path": "x-pack/plugins/alerting/server/config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2523,6 +2649,7 @@ ], "path": "x-pack/plugins/alerting/server/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2545,6 +2672,7 @@ ], "path": "x-pack/plugins/alerting/server/alert/alert.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2559,6 +2687,7 @@ ], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2749,6 +2878,7 @@ ], "path": "x-pack/plugins/alerting/server/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2763,6 +2893,7 @@ ], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2777,6 +2908,7 @@ ], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -2797,6 +2929,7 @@ ], "path": "x-pack/plugins/alerting/common/parse_duration.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -2810,6 +2943,7 @@ ], "path": "x-pack/plugins/alerting/common/parse_duration.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2824,6 +2958,7 @@ ], "path": "x-pack/plugins/alerting/common/parse_duration.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2866,6 +3001,7 @@ ], "path": "x-pack/plugins/alerting/common/builtin_action_groups.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -2886,6 +3022,7 @@ ], "path": "x-pack/plugins/alerting/common/builtin_action_groups.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2904,6 +3041,7 @@ ], "path": "x-pack/plugins/alerting/common/parse_duration.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -2917,6 +3055,7 @@ ], "path": "x-pack/plugins/alerting/common/parse_duration.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2935,6 +3074,7 @@ ], "path": "x-pack/plugins/alerting/common/parse_duration.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -2948,6 +3088,7 @@ ], "path": "x-pack/plugins/alerting/common/parse_duration.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2966,6 +3107,7 @@ ], "path": "x-pack/plugins/alerting/common/disabled_action_groups.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -2979,6 +3121,7 @@ ], "path": "x-pack/plugins/alerting/common/disabled_action_groups.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2993,6 +3136,7 @@ ], "path": "x-pack/plugins/alerting/common/disabled_action_groups.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3011,6 +3155,7 @@ ], "path": "x-pack/plugins/alerting/common/parse_duration.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -3024,6 +3169,7 @@ ], "path": "x-pack/plugins/alerting/common/parse_duration.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3042,6 +3188,7 @@ ], "path": "x-pack/plugins/alerting/common/parse_duration.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -3055,6 +3202,7 @@ ], "path": "x-pack/plugins/alerting/common/parse_duration.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3073,6 +3221,7 @@ ], "path": "x-pack/plugins/alerting/common/rule_notify_when_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -3086,6 +3235,7 @@ ], "path": "x-pack/plugins/alerting/common/rule_notify_when_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3113,6 +3263,7 @@ ], "path": "x-pack/plugins/alerting/common/rule_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -3125,7 +3276,8 @@ "ActionGroupIds" ], "path": "x-pack/plugins/alerting/common/rule_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3135,7 +3287,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/alerting/common/rule_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3149,6 +3302,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -3158,7 +3312,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3168,7 +3323,8 @@ "label": "description", "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3181,7 +3337,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3194,7 +3351,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3208,6 +3366,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -3217,7 +3376,8 @@ "label": "isSufficientlySecure", "description": [], "path": "x-pack/plugins/alerting/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3227,7 +3387,8 @@ "label": "hasPermanentEncryptionKey", "description": [], "path": "x-pack/plugins/alerting/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3246,7 +3407,8 @@ } ], "path": "x-pack/plugins/alerting/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3260,6 +3422,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -3280,7 +3443,8 @@ "; timestamp: string; }" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3301,7 +3465,8 @@ "; timestamp: string; }" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3322,7 +3487,8 @@ "; timestamp: string; }" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3336,6 +3502,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -3348,7 +3515,8 @@ "\"OK\" | \"Active\"" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3358,7 +3526,8 @@ "label": "muted", "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3371,7 +3540,8 @@ "string | undefined" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3384,7 +3554,8 @@ "string | undefined" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3397,7 +3568,8 @@ "string | undefined" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3411,6 +3583,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -3420,7 +3593,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3430,7 +3604,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3443,7 +3618,8 @@ "string[]" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3453,7 +3629,8 @@ "label": "ruleTypeId", "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3463,7 +3640,8 @@ "label": "consumer", "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3473,7 +3651,8 @@ "label": "muteAll", "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3486,7 +3665,8 @@ "string | null" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3496,7 +3676,8 @@ "label": "enabled", "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3506,7 +3687,8 @@ "label": "statusStartDate", "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3516,7 +3698,8 @@ "label": "statusEndDate", "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3529,7 +3712,8 @@ "\"OK\" | \"Active\" | \"Error\"" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3542,7 +3726,8 @@ "string | undefined" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3555,7 +3740,8 @@ "{ date: string; message: string; }[]" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3576,7 +3762,8 @@ "; }" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3595,7 +3782,8 @@ } ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3609,6 +3797,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -3618,7 +3807,8 @@ "label": "average", "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3631,7 +3821,8 @@ "{ [x: string]: number; }" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3645,6 +3836,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -3654,7 +3846,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3664,7 +3857,8 @@ "label": "timestamp", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3674,7 +3868,8 @@ "label": "type", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3684,7 +3879,8 @@ "label": "message", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3698,6 +3894,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -3707,7 +3904,8 @@ "label": "totalErrors", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3727,7 +3925,8 @@ "[]" ], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3741,6 +3940,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -3750,7 +3950,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3760,7 +3961,8 @@ "label": "timestamp", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3770,7 +3972,8 @@ "label": "duration_ms", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3780,7 +3983,8 @@ "label": "status", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3790,7 +3994,8 @@ "label": "message", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3800,7 +4005,8 @@ "label": "version", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3810,7 +4016,8 @@ "label": "num_active_alerts", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3820,7 +4027,8 @@ "label": "num_new_alerts", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3830,7 +4038,8 @@ "label": "num_recovered_alerts", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3840,7 +4049,8 @@ "label": "num_triggered_actions", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3850,7 +4060,8 @@ "label": "num_generated_actions", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3860,7 +4071,8 @@ "label": "num_succeeded_actions", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3870,7 +4082,8 @@ "label": "num_errored_actions", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3880,7 +4093,8 @@ "label": "total_search_duration_ms", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3890,7 +4104,8 @@ "label": "es_search_duration_ms", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3900,7 +4115,8 @@ "label": "schedule_delay_ms", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3910,7 +4126,8 @@ "label": "timed_out", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3924,6 +4141,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -3933,7 +4151,8 @@ "label": "total", "description": [], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -3953,7 +4172,8 @@ "[]" ], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3978,6 +4198,7 @@ ], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -3987,7 +4208,8 @@ "label": "interval", "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4001,6 +4223,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -4013,7 +4236,8 @@ "number | undefined" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4026,7 +4250,8 @@ "string | undefined" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4040,6 +4265,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -4049,7 +4275,8 @@ "label": "dtstart", "description": [], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4059,7 +4286,8 @@ "label": "tzid", "description": [], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4072,7 +4300,8 @@ "0 | 2 | 1 | 3 | 4 | 5 | 6 | undefined" ], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4085,7 +4314,8 @@ "string | undefined" ], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4098,7 +4328,8 @@ "number | undefined" ], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4111,7 +4342,8 @@ "number | undefined" ], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4125,7 +4357,8 @@ " | undefined" ], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4138,7 +4371,8 @@ "(string | number)[] | undefined" ], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4151,7 +4385,8 @@ "number[] | undefined" ], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4164,7 +4399,8 @@ "number[] | undefined" ], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4177,7 +4413,8 @@ "number[]" ], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4190,7 +4427,8 @@ "number[]" ], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4203,7 +4441,8 @@ "number[]" ], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4216,7 +4455,8 @@ "number[]" ], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4229,7 +4469,8 @@ "number[]" ], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4242,7 +4483,8 @@ "number[]" ], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4266,6 +4508,7 @@ ], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -4275,7 +4518,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4285,7 +4529,8 @@ "label": "enabled", "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4295,7 +4540,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4308,7 +4554,8 @@ "string[]" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4318,7 +4565,8 @@ "label": "alertTypeId", "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4328,7 +4576,8 @@ "label": "consumer", "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4347,7 +4596,8 @@ } ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4367,7 +4617,8 @@ "[]" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4380,7 +4631,8 @@ "Params" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4400,7 +4652,8 @@ " | undefined" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4413,7 +4666,8 @@ "string | undefined" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4426,7 +4680,8 @@ "string | null" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4439,7 +4694,8 @@ "string | null" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4452,7 +4708,8 @@ "Date" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4465,7 +4722,8 @@ "Date" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4478,7 +4736,8 @@ "string | null" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4491,7 +4750,8 @@ "string | null" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4504,7 +4764,8 @@ "string | null" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4514,7 +4775,8 @@ "label": "muteAll", "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4527,7 +4789,8 @@ "\"onActionGroupChange\" | \"onActiveAlert\" | \"onThrottleInterval\" | null" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4540,7 +4803,8 @@ "string[]" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4559,7 +4823,8 @@ } ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4579,7 +4844,8 @@ " | undefined" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4599,7 +4865,8 @@ " | undefined" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4612,7 +4879,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4625,7 +4893,8 @@ "Date | null | undefined" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4639,6 +4908,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -4648,7 +4918,8 @@ "label": "group", "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4658,7 +4929,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4668,7 +4940,8 @@ "label": "actionTypeId", "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4681,7 +4954,8 @@ "SavedObjectAttributes" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4695,6 +4969,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -4707,7 +4982,8 @@ "{ [status: string]: number; }" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4720,7 +4996,8 @@ "{ enabled: number; disabled: number; }" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4733,7 +5010,8 @@ "{ muted: number; unmuted: number; }" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4746,7 +5024,8 @@ "{ snoozed: number; }" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4759,7 +5038,8 @@ "string[]" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4773,6 +5053,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -4785,7 +5066,8 @@ "\"error\" | \"warning\" | \"unknown\" | \"pending\" | \"ok\" | \"active\"" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4798,7 +5080,8 @@ "Date" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4811,7 +5094,8 @@ "number | undefined" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4832,7 +5116,8 @@ "; message: string; } | undefined" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4853,7 +5138,8 @@ "; message: string; } | undefined" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4878,6 +5164,7 @@ ], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -4898,7 +5185,8 @@ "[]; calculated_metrics: { p50?: number | undefined; p95?: number | undefined; p99?: number | undefined; success_ratio: number; }; }" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4923,6 +5211,7 @@ ], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -4932,7 +5221,8 @@ "label": "success", "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4942,7 +5232,8 @@ "label": "timestamp", "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -4955,7 +5246,8 @@ "number | undefined" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4969,6 +5261,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -4978,7 +5271,8 @@ "label": "duration", "description": [], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -5007,7 +5301,8 @@ ", \"dtstart\" | \"tzid\">" ], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -5020,7 +5315,8 @@ "string | undefined" ], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -5033,7 +5329,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5047,6 +5344,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/rule_navigation.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -5059,7 +5357,8 @@ "JsonObject" ], "path": "x-pack/plugins/alerting/common/rule_navigation.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5083,6 +5382,7 @@ ], "path": "x-pack/plugins/alerting/common/rule_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -5092,7 +5392,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/alerting/common/rule_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -5102,7 +5403,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/alerting/common/rule_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -5122,7 +5424,8 @@ "[]" ], "path": "x-pack/plugins/alerting/common/rule_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -5142,7 +5445,8 @@ "" ], "path": "x-pack/plugins/alerting/common/rule_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -5155,7 +5459,8 @@ "{ context: ActionVariable[]; state: ActionVariable[]; params: ActionVariable[]; }" ], "path": "x-pack/plugins/alerting/common/rule_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -5168,7 +5473,8 @@ "ActionGroupIds" ], "path": "x-pack/plugins/alerting/common/rule_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -5178,7 +5484,8 @@ "label": "producer", "description": [], "path": "x-pack/plugins/alerting/common/rule_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -5191,7 +5498,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\"" ], "path": "x-pack/plugins/alerting/common/rule_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -5201,7 +5509,8 @@ "label": "isExportable", "description": [], "path": "x-pack/plugins/alerting/common/rule_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -5214,7 +5523,8 @@ "string | undefined" ], "path": "x-pack/plugins/alerting/common/rule_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -5227,7 +5537,8 @@ "string | undefined" ], "path": "x-pack/plugins/alerting/common/rule_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -5240,7 +5551,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/alerting/common/rule_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -5250,7 +5562,8 @@ "label": "enabledInLicense", "description": [], "path": "x-pack/plugins/alerting/common/rule_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "alerting", @@ -5263,7 +5576,8 @@ "{ [x: string]: ConsumerPrivileges; }" ], "path": "x-pack/plugins/alerting/common/rule_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5277,6 +5591,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/rule_navigation.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "alerting", @@ -5286,7 +5601,8 @@ "label": "path", "description": [], "path": "x-pack/plugins/alerting/common/rule_navigation.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5302,6 +5618,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/rule_task_instance.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5313,6 +5630,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5324,6 +5642,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5335,6 +5654,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -5351,6 +5671,7 @@ ], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5365,6 +5686,7 @@ ], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5395,6 +5717,7 @@ ], "path": "x-pack/plugins/alerting/common/rule_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5409,6 +5732,7 @@ ], "path": "x-pack/plugins/alerting/common/alert_instance.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5423,6 +5747,7 @@ ], "path": "x-pack/plugins/alerting/common/alert_instance.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5437,6 +5762,7 @@ ], "path": "x-pack/plugins/alerting/common/alert_instance.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5451,6 +5777,7 @@ ], "path": "x-pack/plugins/alerting/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5465,6 +5792,7 @@ ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5479,6 +5807,7 @@ ], "path": "x-pack/plugins/alerting/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5493,6 +5822,7 @@ ], "path": "x-pack/plugins/alerting/common/builtin_action_groups.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5507,6 +5837,7 @@ ], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5521,6 +5852,7 @@ ], "path": "x-pack/plugins/alerting/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5535,6 +5867,7 @@ ], "path": "x-pack/plugins/alerting/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5557,6 +5890,7 @@ ], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5571,6 +5905,7 @@ ], "path": "x-pack/plugins/alerting/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5585,6 +5920,7 @@ ], "path": "x-pack/plugins/alerting/common/alert_instance.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5599,6 +5935,7 @@ ], "path": "x-pack/plugins/alerting/common/builtin_action_groups.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5613,6 +5950,7 @@ ], "path": "x-pack/plugins/alerting/common/builtin_action_groups.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5636,6 +5974,7 @@ ], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5653,6 +5992,7 @@ ], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5667,6 +6007,7 @@ ], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5681,6 +6022,7 @@ ], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5709,6 +6051,7 @@ ], "path": "x-pack/plugins/alerting/common/rule_navigation.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5723,6 +6066,7 @@ ], "path": "x-pack/plugins/alerting/common/rule_notify_when_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5737,6 +6081,7 @@ ], "path": "x-pack/plugins/alerting/common/rule_snooze_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5751,6 +6096,7 @@ ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5765,6 +6111,7 @@ ], "path": "x-pack/plugins/alerting/common/rule_task_instance.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5779,6 +6126,7 @@ ], "path": "x-pack/plugins/alerting/common/rule_task_instance.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5793,6 +6141,7 @@ ], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5807,6 +6156,7 @@ ], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5869,6 +6219,7 @@ ], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5891,6 +6242,7 @@ ], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5913,6 +6265,7 @@ ], "path": "x-pack/plugins/alerting/common/builtin_action_groups.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -5929,6 +6282,7 @@ ], "path": "x-pack/plugins/alerting/common/disabled_action_groups.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5943,6 +6297,7 @@ ], "path": "x-pack/plugins/alerting/common/execution_log_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5978,6 +6333,7 @@ ], "path": "x-pack/plugins/alerting/common/alert_instance.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5992,6 +6348,7 @@ ], "path": "x-pack/plugins/alerting/common/builtin_action_groups.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6006,6 +6363,7 @@ ], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6029,6 +6387,7 @@ ], "path": "x-pack/plugins/alerting/common/rule_task_instance.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6082,6 +6441,7 @@ ], "path": "x-pack/plugins/alerting/common/rule_task_instance.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/alerting.mdx b/api_docs/alerting.mdx index 077495a14b13c..a05850bed5d32 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'alerting'] --- import alertingObj from './alerting.devdocs.json'; diff --git a/api_docs/apm.devdocs.json b/api_docs/apm.devdocs.json index ed625467a5aa2..f5b4ceba305d8 100644 --- a/api_docs/apm.devdocs.json +++ b/api_docs/apm.devdocs.json @@ -13,6 +13,7 @@ "description": [], "path": "x-pack/plugins/apm/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "apm", @@ -22,7 +23,8 @@ "label": "serviceMapEnabled", "description": [], "path": "x-pack/plugins/apm/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "apm", @@ -32,7 +34,8 @@ "label": "profilingEnabled", "description": [], "path": "x-pack/plugins/apm/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "apm", @@ -45,7 +48,8 @@ "{ enabled: boolean; }" ], "path": "x-pack/plugins/apm/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -78,6 +82,7 @@ ], "path": "x-pack/plugins/apm/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "setup", "initialIsOpen": true }, @@ -93,6 +98,7 @@ ], "path": "x-pack/plugins/apm/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -138,6 +144,7 @@ ], "path": "x-pack/plugins/apm/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "apm", @@ -151,6 +158,7 @@ ], "path": "x-pack/plugins/apm/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "apm", @@ -171,6 +179,7 @@ ], "path": "x-pack/plugins/apm/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -212,6 +221,7 @@ ], "path": "x-pack/plugins/apm/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "apm", @@ -234,6 +244,7 @@ ], "path": "x-pack/plugins/apm/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -248,6 +259,7 @@ ], "path": "x-pack/plugins/apm/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -273,6 +285,7 @@ ], "path": "x-pack/plugins/apm/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "apm", @@ -292,6 +305,7 @@ ], "path": "x-pack/plugins/apm/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -309,6 +323,7 @@ ], "path": "x-pack/plugins/apm/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -327,6 +342,7 @@ "description": [], "path": "x-pack/plugins/apm/server/routes/typings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "apm", @@ -340,7 +356,8 @@ "" ], "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "apm", @@ -384,7 +401,8 @@ ">; }" ], "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "apm", @@ -397,7 +415,8 @@ "{ query: { _inspect: boolean; start?: number | undefined; end?: number | undefined; }; }" ], "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "apm", @@ -412,7 +431,8 @@ "; readonly telemetryCollectionEnabled: boolean; readonly metricsInterval: number; readonly profilingEnabled: boolean; readonly agent: Readonly<{} & { migrations: Readonly<{} & { enabled: boolean; }>; }>; }" ], "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "apm", @@ -425,7 +445,8 @@ "Logger" ], "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "apm", @@ -454,7 +475,8 @@ ">; }" ], "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "apm", @@ -701,7 +723,8 @@ "; start: () => Promise; } | undefined; }" ], "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "apm", @@ -720,7 +743,8 @@ } ], "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "apm", @@ -740,7 +764,8 @@ " | undefined" ], "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "apm", @@ -750,7 +775,8 @@ "label": "kibanaVersion", "description": [], "path": "x-pack/plugins/apm/server/routes/typings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -766,10 +792,11 @@ "label": "APIEndpoint", "description": [], "signature": [ - "\"POST /internal/apm/data_view/static\" | \"GET /internal/apm/data_view/title\" | \"GET /internal/apm/environments\" | \"GET /internal/apm/services/{serviceName}/errors/groups/main_statistics\" | \"GET /internal/apm/services/{serviceName}/errors/groups/main_statistics_by_transaction_name\" | \"POST /internal/apm/services/{serviceName}/errors/groups/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/errors/{groupId}\" | \"GET /internal/apm/services/{serviceName}/errors/distribution\" | \"GET /internal/apm/services/{serviceName}/errors/{groupId}/top_erroneous_transactions\" | \"POST /internal/apm/latency/overall_distribution/transactions\" | \"GET /internal/apm/services/{serviceName}/metrics/charts\" | \"GET /internal/apm/observability_overview\" | \"GET /internal/apm/observability_overview/has_data\" | \"GET /internal/apm/service-map\" | \"GET /internal/apm/service-map/service/{serviceName}\" | \"GET /internal/apm/service-map/dependency\" | \"GET /internal/apm/services/{serviceName}/serviceNodes\" | \"GET /internal/apm/services\" | \"POST /internal/apm/services/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/metadata/details\" | \"GET /internal/apm/services/{serviceName}/metadata/icons\" | \"GET /internal/apm/services/{serviceName}/agent\" | \"GET /internal/apm/services/{serviceName}/transaction_types\" | \"GET /internal/apm/services/{serviceName}/node/{serviceNodeName}/metadata\" | \"GET /api/apm/services/{serviceName}/annotation/search\" | \"POST /api/apm/services/{serviceName}/annotation\" | \"GET /internal/apm/services/{serviceName}/service_overview_instances/details/{serviceNodeName}\" | \"GET /internal/apm/services/{serviceName}/throughput\" | \"GET /internal/apm/services/{serviceName}/service_overview_instances/main_statistics\" | \"GET /internal/apm/services/{serviceName}/service_overview_instances/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/dependencies\" | \"GET /internal/apm/services/{serviceName}/dependencies/breakdown\" | \"GET /internal/apm/services/{serviceName}/profiling/timeline\" | \"GET /internal/apm/services/{serviceName}/profiling/statistics\" | \"GET /internal/apm/services/{serviceName}/anomaly_charts\" | \"GET /internal/apm/sorted_and_filtered_services\" | \"GET /internal/apm/service-groups\" | \"GET /internal/apm/service-group\" | \"POST /internal/apm/service-group\" | \"DELETE /internal/apm/service-group\" | \"GET /internal/apm/service-group/services\" | \"GET /internal/apm/suggestions\" | \"GET /internal/apm/traces/{traceId}\" | \"GET /internal/apm/traces\" | \"GET /internal/apm/traces/{traceId}/root_transaction\" | \"GET /internal/apm/transactions/{transactionId}\" | \"GET /internal/apm/traces/find\" | \"GET /internal/apm/services/{serviceName}/transactions/groups/main_statistics\" | \"GET /internal/apm/services/{serviceName}/transactions/groups/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/latency\" | \"GET /internal/apm/services/{serviceName}/transactions/traces/samples\" | \"GET /internal/apm/services/{serviceName}/transaction/charts/breakdown\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/error_rate\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/coldstart_rate\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/coldstart_rate_by_transaction_name\" | \"GET /internal/apm/alerts/chart_preview/transaction_error_rate\" | \"GET /internal/apm/alerts/chart_preview/transaction_duration\" | \"GET /internal/apm/alerts/chart_preview/transaction_error_count\" | \"GET /api/apm/settings/agent-configuration\" | \"GET /api/apm/settings/agent-configuration/view\" | \"DELETE /api/apm/settings/agent-configuration\" | \"PUT /api/apm/settings/agent-configuration\" | \"POST /api/apm/settings/agent-configuration/search\" | \"GET /api/apm/settings/agent-configuration/environments\" | \"GET /api/apm/settings/agent-configuration/agent_name\" | \"GET /internal/apm/settings/anomaly-detection/jobs\" | \"POST /internal/apm/settings/anomaly-detection/jobs\" | \"GET /internal/apm/settings/anomaly-detection/environments\" | \"POST /internal/apm/settings/anomaly-detection/update_to_v3\" | \"GET /internal/apm/settings/apm-index-settings\" | \"GET /internal/apm/settings/apm-indices\" | \"POST /internal/apm/settings/apm-indices/save\" | \"GET /internal/apm/settings/custom_links/transaction\" | \"GET /internal/apm/settings/custom_links\" | \"POST /internal/apm/settings/custom_links\" | \"PUT /internal/apm/settings/custom_links/{id}\" | \"DELETE /internal/apm/settings/custom_links/{id}\" | \"GET /api/apm/sourcemaps\" | \"POST /api/apm/sourcemaps\" | \"DELETE /api/apm/sourcemaps/{id}\" | \"GET /internal/apm/fleet/has_apm_policies\" | \"GET /internal/apm/fleet/agents\" | \"POST /api/apm/fleet/apm_server_schema\" | \"GET /internal/apm/fleet/apm_server_schema/unsupported\" | \"GET /internal/apm/fleet/migration_check\" | \"POST /internal/apm/fleet/cloud_apm_package_policy\" | \"GET /internal/apm/fleet/java_agent_versions\" | \"GET /internal/apm/dependencies/top_dependencies\" | \"GET /internal/apm/dependencies/upstream_services\" | \"GET /internal/apm/dependencies/metadata\" | \"GET /internal/apm/dependencies/charts/latency\" | \"GET /internal/apm/dependencies/charts/throughput\" | \"GET /internal/apm/dependencies/charts/error_rate\" | \"GET /internal/apm/dependencies/operations\" | \"GET /internal/apm/dependencies/charts/distribution\" | \"GET /internal/apm/dependencies/operations/spans\" | \"GET /internal/apm/correlations/field_candidates/transactions\" | \"POST /internal/apm/correlations/field_stats/transactions\" | \"GET /internal/apm/correlations/field_value_stats/transactions\" | \"POST /internal/apm/correlations/field_value_pairs/transactions\" | \"POST /internal/apm/correlations/significant_correlations/transactions\" | \"POST /internal/apm/correlations/p_values/transactions\" | \"GET /internal/apm/fallback_to_transactions\" | \"GET /internal/apm/has_data\" | \"GET /internal/apm/event_metadata/{processorEvent}/{id}\" | \"GET /internal/apm/agent_keys\" | \"GET /internal/apm/agent_keys/privileges\" | \"POST /internal/apm/api_key/invalidate\" | \"POST /api/apm/agent_keys\" | \"GET /internal/apm/traces/{traceId}/span_links/{spanId}/parents\" | \"GET /internal/apm/traces/{traceId}/span_links/{spanId}/children\" | \"GET /internal/apm/services/{serviceName}/infrastructure_attributes\" | \"GET /internal/apm/debug-telemetry\" | \"GET /internal/apm/time_range_metadata\"" + "\"POST /internal/apm/data_view/static\" | \"GET /internal/apm/data_view/title\" | \"GET /internal/apm/environments\" | \"GET /internal/apm/services/{serviceName}/errors/groups/main_statistics\" | \"GET /internal/apm/services/{serviceName}/errors/groups/main_statistics_by_transaction_name\" | \"POST /internal/apm/services/{serviceName}/errors/groups/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/errors/{groupId}\" | \"GET /internal/apm/services/{serviceName}/errors/distribution\" | \"GET /internal/apm/services/{serviceName}/errors/{groupId}/top_erroneous_transactions\" | \"POST /internal/apm/latency/overall_distribution/transactions\" | \"GET /internal/apm/services/{serviceName}/metrics/charts\" | \"GET /internal/apm/observability_overview\" | \"GET /internal/apm/observability_overview/has_data\" | \"GET /internal/apm/service-map\" | \"GET /internal/apm/service-map/service/{serviceName}\" | \"GET /internal/apm/service-map/dependency\" | \"GET /internal/apm/services/{serviceName}/serviceNodes\" | \"GET /internal/apm/services\" | \"POST /internal/apm/services/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/metadata/details\" | \"GET /internal/apm/services/{serviceName}/metadata/icons\" | \"GET /internal/apm/services/{serviceName}/agent\" | \"GET /internal/apm/services/{serviceName}/transaction_types\" | \"GET /internal/apm/services/{serviceName}/node/{serviceNodeName}/metadata\" | \"GET /api/apm/services/{serviceName}/annotation/search\" | \"POST /api/apm/services/{serviceName}/annotation\" | \"GET /internal/apm/services/{serviceName}/service_overview_instances/details/{serviceNodeName}\" | \"GET /internal/apm/services/{serviceName}/throughput\" | \"GET /internal/apm/services/{serviceName}/service_overview_instances/main_statistics\" | \"GET /internal/apm/services/{serviceName}/service_overview_instances/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/dependencies\" | \"GET /internal/apm/services/{serviceName}/dependencies/breakdown\" | \"GET /internal/apm/services/{serviceName}/profiling/timeline\" | \"GET /internal/apm/services/{serviceName}/profiling/statistics\" | \"GET /internal/apm/services/{serviceName}/anomaly_charts\" | \"GET /internal/apm/sorted_and_filtered_services\" | \"GET /internal/apm/service-groups\" | \"GET /internal/apm/service-group\" | \"POST /internal/apm/service-group\" | \"DELETE /internal/apm/service-group\" | \"GET /internal/apm/service-group/services\" | \"GET /internal/apm/suggestions\" | \"GET /internal/apm/traces/{traceId}\" | \"GET /internal/apm/traces\" | \"GET /internal/apm/traces/{traceId}/root_transaction\" | \"GET /internal/apm/transactions/{transactionId}\" | \"GET /internal/apm/traces/find\" | \"GET /internal/apm/services/{serviceName}/transactions/groups/main_statistics\" | \"GET /internal/apm/services/{serviceName}/transactions/groups/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/latency\" | \"GET /internal/apm/services/{serviceName}/transactions/traces/samples\" | \"GET /internal/apm/services/{serviceName}/transaction/charts/breakdown\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/error_rate\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/coldstart_rate\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/coldstart_rate_by_transaction_name\" | \"GET /internal/apm/alerts/chart_preview/transaction_error_rate\" | \"GET /internal/apm/alerts/chart_preview/transaction_duration\" | \"GET /internal/apm/alerts/chart_preview/transaction_error_count\" | \"GET /api/apm/settings/agent-configuration\" | \"GET /api/apm/settings/agent-configuration/view\" | \"DELETE /api/apm/settings/agent-configuration\" | \"PUT /api/apm/settings/agent-configuration\" | \"POST /api/apm/settings/agent-configuration/search\" | \"GET /api/apm/settings/agent-configuration/environments\" | \"GET /api/apm/settings/agent-configuration/agent_name\" | \"GET /internal/apm/settings/anomaly-detection/jobs\" | \"POST /internal/apm/settings/anomaly-detection/jobs\" | \"GET /internal/apm/settings/anomaly-detection/environments\" | \"POST /internal/apm/settings/anomaly-detection/update_to_v3\" | \"GET /internal/apm/settings/apm-index-settings\" | \"GET /internal/apm/settings/apm-indices\" | \"POST /internal/apm/settings/apm-indices/save\" | \"GET /internal/apm/settings/custom_links/transaction\" | \"GET /internal/apm/settings/custom_links\" | \"POST /internal/apm/settings/custom_links\" | \"PUT /internal/apm/settings/custom_links/{id}\" | \"DELETE /internal/apm/settings/custom_links/{id}\" | \"GET /api/apm/sourcemaps\" | \"POST /api/apm/sourcemaps\" | \"DELETE /api/apm/sourcemaps/{id}\" | \"GET /internal/apm/fleet/has_apm_policies\" | \"GET /internal/apm/fleet/agents\" | \"POST /api/apm/fleet/apm_server_schema\" | \"GET /internal/apm/fleet/apm_server_schema/unsupported\" | \"GET /internal/apm/fleet/migration_check\" | \"POST /internal/apm/fleet/cloud_apm_package_policy\" | \"GET /internal/apm/fleet/java_agent_versions\" | \"GET /internal/apm/dependencies/top_dependencies\" | \"GET /internal/apm/dependencies/upstream_services\" | \"GET /internal/apm/dependencies/metadata\" | \"GET /internal/apm/dependencies/charts/latency\" | \"GET /internal/apm/dependencies/charts/throughput\" | \"GET /internal/apm/dependencies/charts/error_rate\" | \"GET /internal/apm/dependencies/operations\" | \"GET /internal/apm/dependencies/charts/distribution\" | \"GET /internal/apm/dependencies/operations/spans\" | \"GET /internal/apm/correlations/field_candidates/transactions\" | \"POST /internal/apm/correlations/field_stats/transactions\" | \"GET /internal/apm/correlations/field_value_stats/transactions\" | \"POST /internal/apm/correlations/field_value_pairs/transactions\" | \"POST /internal/apm/correlations/significant_correlations/transactions\" | \"POST /internal/apm/correlations/p_values/transactions\" | \"GET /internal/apm/fallback_to_transactions\" | \"GET /internal/apm/has_data\" | \"GET /internal/apm/event_metadata/{processorEvent}/{id}\" | \"GET /internal/apm/agent_keys\" | \"GET /internal/apm/agent_keys/privileges\" | \"POST /internal/apm/api_key/invalidate\" | \"POST /api/apm/agent_keys\" | \"GET /internal/apm/storage_explorer\" | \"GET /internal/apm/services/{serviceName}/storage_details\" | \"GET /internal/apm/traces/{traceId}/span_links/{spanId}/parents\" | \"GET /internal/apm/traces/{traceId}/span_links/{spanId}/children\" | \"GET /internal/apm/services/{serviceName}/infrastructure_attributes\" | \"GET /internal/apm/debug-telemetry\" | \"GET /internal/apm/time_range_metadata\"" ], "path": "x-pack/plugins/apm/server/routes/apm_routes/get_global_apm_server_route_repository.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -784,6 +811,7 @@ ], "path": "x-pack/plugins/apm/common/alert_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -800,6 +828,7 @@ ], "path": "x-pack/plugins/apm/server/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -814,6 +843,7 @@ ], "path": "x-pack/plugins/apm/server/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1034,6 +1064,180 @@ "SpanLinkDetails", "[]; }, ", "APMRouteCreateOptions", + ">; \"GET /internal/apm/services/{serviceName}/storage_details\": ", + "ServerRoute", + "<\"GET /internal/apm/services/{serviceName}/storage_details\", ", + "TypeC", + "<{ path: ", + "TypeC", + "<{ serviceName: ", + "StringC", + "; }>; query: ", + "IntersectionC", + "<[", + "TypeC", + "<{ indexLifecyclePhase: ", + "UnionC", + "<[", + "LiteralC", + "<", + "IndexLifecyclePhaseSelectOption", + ".All>, ", + "LiteralC", + "<", + "IndexLifecyclePhaseSelectOption", + ".Hot>, ", + "LiteralC", + "<", + "IndexLifecyclePhaseSelectOption", + ".Warm>, ", + "LiteralC", + "<", + "IndexLifecyclePhaseSelectOption", + ".Cold>, ", + "LiteralC", + "<", + "IndexLifecyclePhaseSelectOption", + ".Frozen>]>; }>, ", + "TypeC", + "<{ probability: ", + "Type", + "; }>, ", + "TypeC", + "<{ environment: ", + "UnionC", + "<[", + "LiteralC", + "<\"ENVIRONMENT_NOT_DEFINED\">, ", + "LiteralC", + "<\"ENVIRONMENT_ALL\">, ", + "BrandC", + "<", + "StringC", + ", ", + "NonEmptyStringBrand", + ">]>; }>, ", + "TypeC", + "<{ kuery: ", + "StringC", + "; }>, ", + "TypeC", + "<{ start: ", + "Type", + "; end: ", + "Type", + "; }>]>; }>, ", + { + "pluginId": "apm", + "scope": "server", + "docId": "kibApmPluginApi", + "section": "def-server.APMRouteHandlerResources", + "text": "APMRouteHandlerResources" + }, + ", { processorEventStats: { processorEvent: ", + { + "pluginId": "observability", + "scope": "common", + "docId": "kibObservabilityPluginApi", + "section": "def-common.ProcessorEvent", + "text": "ProcessorEvent" + }, + ".transaction | ", + { + "pluginId": "observability", + "scope": "common", + "docId": "kibObservabilityPluginApi", + "section": "def-common.ProcessorEvent", + "text": "ProcessorEvent" + }, + ".error | ", + { + "pluginId": "observability", + "scope": "common", + "docId": "kibObservabilityPluginApi", + "section": "def-common.ProcessorEvent", + "text": "ProcessorEvent" + }, + ".metric | ", + { + "pluginId": "observability", + "scope": "common", + "docId": "kibObservabilityPluginApi", + "section": "def-common.ProcessorEvent", + "text": "ProcessorEvent" + }, + ".span; docs: number; size: number; }[]; }, ", + "APMRouteCreateOptions", + ">; \"GET /internal/apm/storage_explorer\": ", + "ServerRoute", + "<\"GET /internal/apm/storage_explorer\", ", + "TypeC", + "<{ query: ", + "IntersectionC", + "<[", + "TypeC", + "<{ indexLifecyclePhase: ", + "UnionC", + "<[", + "LiteralC", + "<", + "IndexLifecyclePhaseSelectOption", + ".All>, ", + "LiteralC", + "<", + "IndexLifecyclePhaseSelectOption", + ".Hot>, ", + "LiteralC", + "<", + "IndexLifecyclePhaseSelectOption", + ".Warm>, ", + "LiteralC", + "<", + "IndexLifecyclePhaseSelectOption", + ".Cold>, ", + "LiteralC", + "<", + "IndexLifecyclePhaseSelectOption", + ".Frozen>]>; }>, ", + "TypeC", + "<{ probability: ", + "Type", + "; }>, ", + "TypeC", + "<{ environment: ", + "UnionC", + "<[", + "LiteralC", + "<\"ENVIRONMENT_NOT_DEFINED\">, ", + "LiteralC", + "<\"ENVIRONMENT_ALL\">, ", + "BrandC", + "<", + "StringC", + ", ", + "NonEmptyStringBrand", + ">]>; }>, ", + "TypeC", + "<{ kuery: ", + "StringC", + "; }>, ", + "TypeC", + "<{ start: ", + "Type", + "; end: ", + "Type", + "; }>]>; }>, ", + { + "pluginId": "apm", + "scope": "server", + "docId": "kibApmPluginApi", + "section": "def-server.APMRouteHandlerResources", + "text": "APMRouteHandlerResources" + }, + ", { serviceStatistics: { serviceName: string; environments: string[]; size?: number | undefined; agentName: ", + "AgentName", + "; sampling: number; }[]; }, ", + "APMRouteCreateOptions", ">; \"POST /api/apm/agent_keys\": ", "ServerRoute", "<\"POST /api/apm/agent_keys\", ", @@ -5374,6 +5578,7 @@ ], "path": "x-pack/plugins/apm/server/routes/apm_routes/get_global_apm_server_route_repository.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -5387,6 +5592,7 @@ "description": [], "path": "x-pack/plugins/apm/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "apm", @@ -5402,7 +5608,8 @@ "; telemetryCollectionEnabled: boolean; metricsInterval: number; profilingEnabled: boolean; agent: Readonly<{} & { migrations: Readonly<{} & { enabled: boolean; }>; }>; }>>" ], "path": "x-pack/plugins/apm/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "apm", @@ -5418,6 +5625,7 @@ ], "path": "x-pack/plugins/apm/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5439,6 +5647,7 @@ ], "path": "x-pack/plugins/apm/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "apm", @@ -5449,6 +5658,7 @@ "description": [], "path": "x-pack/plugins/apm/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "apm", @@ -5461,7 +5671,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/apm/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "apm", @@ -5475,7 +5686,8 @@ "" ], "path": "x-pack/plugins/apm/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "apm", @@ -5519,7 +5731,8 @@ ">; }" ], "path": "x-pack/plugins/apm/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/apm.mdx b/api_docs/apm.mdx index 4a87a009eb3f2..25fe4d5efea10 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'apm'] --- import apmObj from './apm.devdocs.json'; @@ -21,7 +21,7 @@ Contact [APM UI](https://github.com/orgs/elastic/teams/apm-ui) for questions reg | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 39 | 0 | 39 | 53 | +| 39 | 0 | 39 | 54 | ## Client diff --git a/api_docs/banners.devdocs.json b/api_docs/banners.devdocs.json index eae41491a43d2..ac8f2e365bb54 100644 --- a/api_docs/banners.devdocs.json +++ b/api_docs/banners.devdocs.json @@ -29,6 +29,7 @@ "description": [], "path": "x-pack/plugins/banners/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "banners", @@ -41,7 +42,8 @@ "\"top\" | \"disabled\"" ], "path": "x-pack/plugins/banners/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "banners", @@ -51,7 +53,8 @@ "label": "textContent", "description": [], "path": "x-pack/plugins/banners/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "banners", @@ -61,7 +64,8 @@ "label": "textColor", "description": [], "path": "x-pack/plugins/banners/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "banners", @@ -71,7 +75,8 @@ "label": "backgroundColor", "description": [], "path": "x-pack/plugins/banners/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -85,6 +90,7 @@ "description": [], "path": "x-pack/plugins/banners/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "banners", @@ -94,7 +100,8 @@ "label": "allowed", "description": [], "path": "x-pack/plugins/banners/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "banners", @@ -113,7 +120,8 @@ } ], "path": "x-pack/plugins/banners/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -133,6 +141,7 @@ ], "path": "x-pack/plugins/banners/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/banners.mdx b/api_docs/banners.mdx index a16267ba36e6f..78291085e75c2 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'banners'] --- import bannersObj from './banners.devdocs.json'; diff --git a/api_docs/bfetch.devdocs.json b/api_docs/bfetch.devdocs.json index fb3b44c609fd3..74f1cf1aee455 100644 --- a/api_docs/bfetch.devdocs.json +++ b/api_docs/bfetch.devdocs.json @@ -21,6 +21,7 @@ ], "path": "src/plugins/bfetch/public/streaming/split.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -34,6 +35,7 @@ ], "path": "src/plugins/bfetch/public/streaming/split.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -56,6 +58,7 @@ ], "path": "src/plugins/bfetch/public/batching/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -69,7 +72,8 @@ "Payload" ], "path": "src/plugins/bfetch/public/batching/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "bfetch", @@ -82,7 +86,8 @@ "AbortSignal | undefined" ], "path": "src/plugins/bfetch/public/batching/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -99,6 +104,7 @@ ], "path": "src/plugins/bfetch/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -112,6 +118,7 @@ "description": [], "path": "src/plugins/bfetch/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -129,6 +136,7 @@ ], "path": "src/plugins/bfetch/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -142,6 +150,7 @@ ], "path": "src/plugins/bfetch/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -169,6 +178,7 @@ ], "path": "src/plugins/bfetch/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -183,6 +193,7 @@ ], "path": "src/plugins/bfetch/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -216,6 +227,7 @@ ], "path": "src/plugins/bfetch/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -229,6 +241,7 @@ ], "path": "src/plugins/bfetch/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -242,6 +255,7 @@ ], "path": "src/plugins/bfetch/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -263,6 +277,7 @@ "description": [], "path": "src/plugins/bfetch/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -286,6 +301,7 @@ ], "path": "src/plugins/bfetch/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -299,6 +315,7 @@ ], "path": "src/plugins/bfetch/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -323,6 +340,7 @@ ], "path": "src/plugins/bfetch/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -368,6 +386,7 @@ ], "path": "src/plugins/bfetch/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -381,6 +400,7 @@ ], "path": "src/plugins/bfetch/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -413,6 +433,7 @@ ], "path": "src/plugins/bfetch/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -427,6 +448,7 @@ ], "path": "src/plugins/bfetch/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -450,6 +472,7 @@ ], "path": "src/plugins/bfetch/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -468,6 +491,7 @@ "description": [], "path": "src/plugins/bfetch/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true @@ -496,6 +520,7 @@ ], "path": "src/plugins/bfetch/common/buffer/item_buffer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -509,6 +534,7 @@ ], "path": "src/plugins/bfetch/common/buffer/item_buffer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -529,6 +555,7 @@ ], "path": "src/plugins/bfetch/common/buffer/item_buffer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -544,7 +571,8 @@ "\nGet current buffer size." ], "path": "src/plugins/bfetch/common/buffer/item_buffer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "bfetch", @@ -560,6 +588,7 @@ ], "path": "src/plugins/bfetch/common/buffer/item_buffer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -573,6 +602,7 @@ ], "path": "src/plugins/bfetch/common/buffer/item_buffer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -592,6 +622,7 @@ ], "path": "src/plugins/bfetch/common/buffer/item_buffer.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -609,6 +640,7 @@ ], "path": "src/plugins/bfetch/common/buffer/item_buffer.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -642,6 +674,7 @@ ], "path": "src/plugins/bfetch/common/buffer/timed_item_buffer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -655,6 +688,7 @@ ], "path": "src/plugins/bfetch/common/buffer/timed_item_buffer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -675,6 +709,7 @@ ], "path": "src/plugins/bfetch/common/buffer/timed_item_buffer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -692,6 +727,7 @@ ], "path": "src/plugins/bfetch/common/buffer/timed_item_buffer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -705,6 +741,7 @@ ], "path": "src/plugins/bfetch/common/buffer/timed_item_buffer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -722,6 +759,7 @@ ], "path": "src/plugins/bfetch/common/buffer/timed_item_buffer.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -737,6 +775,7 @@ ], "path": "src/plugins/bfetch/common/buffer/timed_item_buffer.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -757,6 +796,7 @@ ], "path": "src/plugins/bfetch/common/util/query_params.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -770,6 +810,7 @@ ], "path": "src/plugins/bfetch/common/util/query_params.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -784,6 +825,7 @@ ], "path": "src/plugins/bfetch/common/util/query_params.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -798,6 +840,7 @@ ], "path": "src/plugins/bfetch/common/util/query_params.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -832,6 +875,7 @@ ], "path": "src/plugins/bfetch/common/buffer/create_batched_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -852,6 +896,7 @@ ], "path": "src/plugins/bfetch/common/buffer/create_batched_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -886,6 +931,7 @@ ], "path": "src/plugins/bfetch/common/util/normalize_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -899,6 +945,7 @@ ], "path": "src/plugins/bfetch/common/util/normalize_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -917,6 +964,7 @@ ], "path": "src/plugins/bfetch/common/util/remove_leading_slash.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -930,6 +978,7 @@ ], "path": "src/plugins/bfetch/common/util/remove_leading_slash.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -957,6 +1006,7 @@ ], "path": "src/plugins/bfetch/common/buffer/create_batched_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -970,6 +1020,7 @@ ], "path": "src/plugins/bfetch/common/buffer/create_batched_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -983,6 +1034,7 @@ ], "path": "src/plugins/bfetch/common/buffer/create_batched_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1000,6 +1052,7 @@ ], "path": "src/plugins/bfetch/common/buffer/create_batched_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -1013,6 +1066,7 @@ ], "path": "src/plugins/bfetch/common/buffer/create_batched_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1029,7 +1083,8 @@ "number | undefined" ], "path": "src/plugins/bfetch/common/buffer/create_batched_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "bfetch", @@ -1042,7 +1097,8 @@ "number | undefined" ], "path": "src/plugins/bfetch/common/buffer/create_batched_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1056,6 +1112,7 @@ "description": [], "path": "src/plugins/bfetch/common/batch.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -1065,7 +1122,8 @@ "label": "compressed", "description": [], "path": "src/plugins/bfetch/common/batch.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "bfetch", @@ -1075,7 +1133,8 @@ "label": "payload", "description": [], "path": "src/plugins/bfetch/common/batch.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1099,6 +1158,7 @@ ], "path": "src/plugins/bfetch/common/batch.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -1111,7 +1171,8 @@ "Item[]" ], "path": "src/plugins/bfetch/common/batch.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1135,6 +1196,7 @@ ], "path": "src/plugins/bfetch/common/batch.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -1144,7 +1206,8 @@ "label": "id", "description": [], "path": "src/plugins/bfetch/common/batch.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "bfetch", @@ -1157,7 +1220,8 @@ "Result | undefined" ], "path": "src/plugins/bfetch/common/batch.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "bfetch", @@ -1170,7 +1234,8 @@ "Error | undefined" ], "path": "src/plugins/bfetch/common/batch.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1184,6 +1249,7 @@ "description": [], "path": "src/plugins/bfetch/common/batch.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -1193,7 +1259,8 @@ "label": "message", "description": [], "path": "src/plugins/bfetch/common/batch.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1217,6 +1284,7 @@ ], "path": "src/plugins/bfetch/common/buffer/item_buffer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -1231,7 +1299,8 @@ "number | undefined" ], "path": "src/plugins/bfetch/common/buffer/item_buffer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "bfetch", @@ -1247,6 +1316,7 @@ ], "path": "src/plugins/bfetch/common/buffer/item_buffer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -1260,6 +1330,7 @@ ], "path": "src/plugins/bfetch/common/buffer/item_buffer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1287,6 +1358,7 @@ ], "path": "src/plugins/bfetch/common/streaming/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -1302,6 +1374,7 @@ ], "path": "src/plugins/bfetch/common/streaming/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -1315,6 +1388,7 @@ ], "path": "src/plugins/bfetch/common/streaming/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1350,6 +1424,7 @@ ], "path": "src/plugins/bfetch/common/buffer/timed_item_buffer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "bfetch", @@ -1364,7 +1439,8 @@ "number | undefined" ], "path": "src/plugins/bfetch/common/buffer/timed_item_buffer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1384,6 +1460,7 @@ ], "path": "src/plugins/bfetch/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1398,6 +1475,7 @@ ], "path": "src/plugins/bfetch/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/bfetch.mdx b/api_docs/bfetch.mdx index 12bfadbc6983d..3aa8cd01a8314 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'bfetch'] --- import bfetchObj from './bfetch.devdocs.json'; diff --git a/api_docs/canvas.devdocs.json b/api_docs/canvas.devdocs.json index 5bbd6d01afb20..adbb5b897f3d3 100644 --- a/api_docs/canvas.devdocs.json +++ b/api_docs/canvas.devdocs.json @@ -13,6 +13,7 @@ "description": [], "path": "x-pack/plugins/canvas/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "canvas", @@ -37,7 +38,8 @@ "; }; }" ], "path": "x-pack/plugins/canvas/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -60,6 +62,7 @@ ], "path": "x-pack/plugins/canvas/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "lifecycle": "setup", "initialIsOpen": true }, @@ -75,6 +78,7 @@ ], "path": "x-pack/plugins/canvas/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -105,6 +109,7 @@ ], "path": "x-pack/plugins/canvas/common/locator.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -134,6 +139,7 @@ ], "path": "x-pack/plugins/canvas/common/locator.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -148,6 +154,7 @@ ], "path": "x-pack/plugins/canvas/common/locator.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -161,6 +168,7 @@ "description": [], "path": "x-pack/plugins/canvas/common/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "canvas", @@ -170,7 +178,8 @@ "label": "ENABLE_LABS_UI", "description": [], "path": "x-pack/plugins/canvas/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/canvas.mdx b/api_docs/canvas.mdx index 511fb6d718b45..2f71a9aa930fa 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'canvas'] --- import canvasObj from './canvas.devdocs.json'; diff --git a/api_docs/cases.devdocs.json b/api_docs/cases.devdocs.json index d40148aa36c1a..e68be19ab7203 100644 --- a/api_docs/cases.devdocs.json +++ b/api_docs/cases.devdocs.json @@ -41,6 +41,7 @@ ], "path": "x-pack/plugins/cases/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -54,6 +55,7 @@ ], "path": "x-pack/plugins/cases/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -74,6 +76,7 @@ ], "path": "x-pack/plugins/cases/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -108,6 +111,7 @@ ], "path": "x-pack/plugins/cases/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -128,6 +132,7 @@ ], "path": "x-pack/plugins/cases/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -142,6 +147,7 @@ ], "path": "x-pack/plugins/cases/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -176,6 +182,7 @@ ], "path": "x-pack/plugins/cases/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -195,6 +202,7 @@ ], "path": "x-pack/plugins/cases/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -209,6 +217,7 @@ ], "path": "x-pack/plugins/cases/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -226,6 +235,7 @@ ], "path": "x-pack/plugins/cases/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -248,6 +258,7 @@ ], "path": "x-pack/plugins/cases/public/common/navigation/paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -261,6 +272,7 @@ ], "path": "x-pack/plugins/cases/public/common/navigation/paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -279,6 +291,7 @@ ], "path": "x-pack/plugins/cases/public/common/navigation/paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -292,6 +305,7 @@ ], "path": "x-pack/plugins/cases/public/common/navigation/paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -322,6 +336,7 @@ ], "path": "x-pack/plugins/cases/public/common/navigation/deep_links.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -332,6 +347,7 @@ "description": [], "path": "x-pack/plugins/cases/public/common/navigation/deep_links.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -344,7 +360,8 @@ "string | undefined" ], "path": "x-pack/plugins/cases/public/common/navigation/deep_links.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cases", @@ -365,7 +382,8 @@ ", Partial>> | undefined" ], "path": "x-pack/plugins/cases/public/common/navigation/deep_links.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -385,6 +403,7 @@ ], "path": "x-pack/plugins/cases/public/common/navigation/paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -398,6 +417,7 @@ ], "path": "x-pack/plugins/cases/public/common/navigation/paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -416,6 +436,7 @@ ], "path": "x-pack/plugins/cases/public/common/navigation/paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -429,6 +450,7 @@ ], "path": "x-pack/plugins/cases/public/common/navigation/paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -446,6 +468,7 @@ "description": [], "path": "x-pack/plugins/cases/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -458,7 +481,8 @@ "AttachmentFramework" ], "path": "x-pack/plugins/cases/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -485,6 +509,7 @@ ], "path": "x-pack/plugins/cases/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -500,6 +525,7 @@ ], "path": "x-pack/plugins/cases/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -514,6 +540,7 @@ ], "path": "x-pack/plugins/cases/public/components/markdown_editor/plugins/lens/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -550,6 +577,7 @@ ], "path": "x-pack/plugins/cases/public/client/ui/get_all_cases_selector_modal.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -592,6 +620,7 @@ ], "path": "x-pack/plugins/cases/public/client/ui/get_cases.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -644,6 +673,7 @@ ], "path": "x-pack/plugins/cases/public/client/ui/get_create_case_flyout.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -670,6 +700,7 @@ ], "path": "x-pack/plugins/cases/public/client/ui/get_recent_cases.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -684,6 +715,7 @@ ], "path": "x-pack/plugins/cases/public/common/navigation/deep_links.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -724,6 +756,7 @@ ], "path": "x-pack/plugins/cases/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -740,6 +773,7 @@ ], "path": "x-pack/plugins/cases/public/common/navigation/deep_links.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -752,6 +786,7 @@ "description": [], "path": "x-pack/plugins/cases/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -776,7 +811,8 @@ ">; getCasesStatus: (query: { from?: string | undefined; to?: string | undefined; owner?: string | string[] | undefined; }, signal?: AbortSignal | undefined) => Promise<{ countOpenCases: number; countInProgressCases: number; countClosedCases: number; }>; getCasesMetrics: (query: { features: string[]; } & { from?: string | undefined; to?: string | undefined; owner?: string | string[] | undefined; }, signal?: AbortSignal | undefined) => Promise<{ mttr?: number | null | undefined; }>; }; }" ], "path": "x-pack/plugins/cases/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cases", @@ -855,7 +891,8 @@ ", string | React.JSXElementConstructor>; }" ], "path": "x-pack/plugins/cases/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cases", @@ -884,7 +921,8 @@ " | undefined; }) => void; close: () => void; }; }" ], "path": "x-pack/plugins/cases/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cases", @@ -923,7 +961,8 @@ "; }" ], "path": "x-pack/plugins/cases/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", @@ -943,6 +982,7 @@ ], "path": "x-pack/plugins/cases/server/client/client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -956,6 +996,7 @@ ], "path": "x-pack/plugins/cases/server/client/client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -969,6 +1010,7 @@ ], "path": "x-pack/plugins/cases/server/client/client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -987,7 +1029,8 @@ "CasesSubClient" ], "path": "x-pack/plugins/cases/server/client/client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cases", @@ -1002,7 +1045,8 @@ "AttachmentsSubClient" ], "path": "x-pack/plugins/cases/server/client/client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cases", @@ -1017,7 +1061,8 @@ "UserActionsSubClient" ], "path": "x-pack/plugins/cases/server/client/client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cases", @@ -1032,7 +1077,8 @@ "ConfigureSubClient" ], "path": "x-pack/plugins/cases/server/client/client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cases", @@ -1047,7 +1093,8 @@ "MetricsSubClient" ], "path": "x-pack/plugins/cases/server/client/client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1064,6 +1111,7 @@ "description": [], "path": "x-pack/plugins/cases/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -1076,7 +1124,8 @@ "AttachmentFramework" ], "path": "x-pack/plugins/cases/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1092,6 +1141,7 @@ ], "path": "x-pack/plugins/cases/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -1117,6 +1167,7 @@ ], "path": "x-pack/plugins/cases/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -1133,6 +1184,7 @@ ], "path": "x-pack/plugins/cases/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1165,6 +1217,7 @@ ], "path": "x-pack/plugins/cases/common/utils/capabilities.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -1183,6 +1236,7 @@ ], "path": "x-pack/plugins/cases/common/utils/connectors_api.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "All connectors endpoint" @@ -1201,6 +1255,7 @@ ], "path": "x-pack/plugins/cases/common/api/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -1214,6 +1269,7 @@ ], "path": "x-pack/plugins/cases/common/api/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1234,6 +1290,7 @@ ], "path": "x-pack/plugins/cases/common/utils/connectors_api.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "Create connector endpoint" @@ -1254,6 +1311,7 @@ ], "path": "x-pack/plugins/cases/common/api/runtime_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -1267,6 +1325,7 @@ ], "path": "x-pack/plugins/cases/common/api/runtime_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1284,6 +1343,7 @@ "description": [], "path": "x-pack/plugins/cases/common/ui/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -1293,7 +1353,8 @@ "label": "all", "description": [], "path": "x-pack/plugins/cases/common/ui/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cases", @@ -1303,7 +1364,8 @@ "label": "create", "description": [], "path": "x-pack/plugins/cases/common/ui/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cases", @@ -1313,7 +1375,8 @@ "label": "read", "description": [], "path": "x-pack/plugins/cases/common/ui/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cases", @@ -1323,7 +1386,8 @@ "label": "update", "description": [], "path": "x-pack/plugins/cases/common/ui/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cases", @@ -1333,7 +1397,8 @@ "label": "delete", "description": [], "path": "x-pack/plugins/cases/common/ui/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cases", @@ -1343,7 +1408,8 @@ "label": "push", "description": [], "path": "x-pack/plugins/cases/common/ui/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1357,6 +1423,7 @@ "description": [], "path": "x-pack/plugins/cases/common/ui/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cases", @@ -1366,7 +1433,8 @@ "label": "_id", "description": [], "path": "x-pack/plugins/cases/common/ui/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cases", @@ -1379,7 +1447,8 @@ "string | undefined" ], "path": "x-pack/plugins/cases/common/ui/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cases", @@ -1393,7 +1462,8 @@ " | undefined" ], "path": "x-pack/plugins/cases/common/ui/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cases", @@ -1408,7 +1478,8 @@ "; } | undefined" ], "path": "x-pack/plugins/cases/common/ui/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1424,6 +1495,7 @@ "description": [], "path": "x-pack/plugins/cases/common/api/cases/status.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1435,6 +1507,7 @@ "description": [], "path": "x-pack/plugins/cases/common/api/cases/comment.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1535,6 +1608,7 @@ ], "path": "x-pack/plugins/cases/common/ui/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1551,6 +1625,7 @@ ], "path": "x-pack/plugins/cases/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1567,6 +1642,7 @@ ], "path": "x-pack/plugins/cases/common/ui/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1583,6 +1659,7 @@ ], "path": "x-pack/plugins/cases/common/ui/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1599,6 +1676,7 @@ ], "path": "x-pack/plugins/cases/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1613,6 +1691,7 @@ ], "path": "x-pack/plugins/cases/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1627,6 +1706,7 @@ ], "path": "x-pack/plugins/cases/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1641,6 +1721,7 @@ ], "path": "x-pack/plugins/cases/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1657,6 +1738,7 @@ ], "path": "x-pack/plugins/cases/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1671,6 +1753,7 @@ ], "path": "x-pack/plugins/cases/common/ui/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1685,6 +1768,7 @@ ], "path": "x-pack/plugins/cases/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/cases.mdx b/api_docs/cases.mdx index afae89f5e215c..5f4998268d334 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: 2022-09-05 +date: 2022-09-08 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 6658d572dadd5..18bb2aa2a806a 100644 --- a/api_docs/charts.devdocs.json +++ b/api_docs/charts.devdocs.json @@ -19,6 +19,7 @@ ], "path": "src/plugins/charts/public/static/components/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -32,7 +33,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -55,6 +57,7 @@ ], "path": "src/plugins/charts/public/static/components/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -68,7 +71,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -87,6 +91,7 @@ ], "path": "src/plugins/charts/public/static/colors/color_palette.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -100,6 +105,7 @@ ], "path": "src/plugins/charts/public/static/colors/color_palette.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -120,6 +126,7 @@ ], "path": "src/plugins/charts/public/static/components/current_time.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -133,6 +140,7 @@ ], "path": "src/plugins/charts/public/static/components/current_time.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -153,6 +161,7 @@ ], "path": "src/plugins/charts/public/static/components/empty_placeholder.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -166,6 +175,7 @@ ], "path": "src/plugins/charts/public/static/components/empty_placeholder.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -184,6 +194,7 @@ ], "path": "src/plugins/charts/public/static/components/endzones.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -197,6 +208,7 @@ ], "path": "src/plugins/charts/public/static/components/endzones.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -217,6 +229,7 @@ ], "path": "src/plugins/charts/public/static/components/endzones.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -232,6 +245,7 @@ ], "path": "src/plugins/charts/public/static/components/endzones.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -246,6 +260,7 @@ ], "path": "src/plugins/charts/public/static/components/endzones.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -260,6 +275,7 @@ ], "path": "src/plugins/charts/public/static/components/endzones.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -274,6 +290,7 @@ ], "path": "src/plugins/charts/public/static/components/endzones.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -292,6 +309,7 @@ ], "path": "src/plugins/charts/common/static/color_maps/heatmap_color.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -305,6 +323,7 @@ ], "path": "src/plugins/charts/common/static/color_maps/heatmap_color.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -319,6 +338,7 @@ ], "path": "src/plugins/charts/common/static/color_maps/heatmap_color.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -341,6 +361,7 @@ ], "path": "src/plugins/charts/public/static/components/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -354,7 +375,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -377,6 +399,7 @@ ], "path": "src/plugins/charts/public/static/components/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -390,7 +413,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -407,6 +431,7 @@ ], "path": "src/plugins/charts/public/services/palettes/lighten_color.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -420,6 +445,7 @@ ], "path": "src/plugins/charts/public/services/palettes/lighten_color.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -434,6 +460,7 @@ ], "path": "src/plugins/charts/public/services/palettes/lighten_color.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -448,6 +475,7 @@ ], "path": "src/plugins/charts/public/services/palettes/lighten_color.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -470,6 +498,7 @@ ], "path": "src/plugins/charts/public/static/components/endzones.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -483,6 +512,7 @@ ], "path": "src/plugins/charts/public/static/components/endzones.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -497,6 +527,7 @@ ], "path": "src/plugins/charts/public/static/components/endzones.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -511,6 +542,7 @@ ], "path": "src/plugins/charts/public/static/components/endzones.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -525,6 +557,7 @@ ], "path": "src/plugins/charts/public/static/components/endzones.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -539,6 +572,7 @@ ], "path": "src/plugins/charts/public/static/components/endzones.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -563,6 +597,7 @@ ], "path": "src/plugins/charts/public/services/active_cursor/use_active_cursor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -576,6 +611,7 @@ ], "path": "src/plugins/charts/public/services/active_cursor/use_active_cursor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -592,6 +628,7 @@ ], "path": "src/plugins/charts/public/services/active_cursor/use_active_cursor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -606,6 +643,7 @@ ], "path": "src/plugins/charts/public/services/active_cursor/use_active_cursor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -628,6 +666,7 @@ ], "path": "src/plugins/charts/public/static/components/common_chart_styles.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -643,6 +682,7 @@ "description": [], "path": "src/plugins/charts/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -655,7 +695,8 @@ "\"brush\"" ], "path": "src/plugins/charts/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -676,7 +717,8 @@ "; column: number; range: number[]; timeFieldName?: string | undefined; }" ], "path": "src/plugins/charts/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -690,6 +732,7 @@ "description": [], "path": "src/plugins/charts/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -702,7 +745,8 @@ "\"filter\"" ], "path": "src/plugins/charts/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -723,7 +767,8 @@ ", \"rows\" | \"columns\">; column: number; row: number; value: any; }[]; timeFieldName?: string | undefined; negate?: boolean | undefined; }" ], "path": "src/plugins/charts/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -737,6 +782,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -756,7 +802,8 @@ } ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -770,6 +817,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -788,7 +836,8 @@ } ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -798,7 +847,8 @@ "label": "text", "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -812,6 +862,7 @@ "description": [], "path": "src/plugins/charts/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -830,7 +881,8 @@ } ], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -840,7 +892,8 @@ "label": "invertColors", "description": [], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -854,6 +907,7 @@ "description": [], "path": "src/plugins/charts/common/expressions/palette/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -866,7 +920,8 @@ "string[] | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -876,7 +931,8 @@ "label": "gradient", "description": [], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -889,7 +945,8 @@ "boolean | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -902,7 +959,8 @@ "number[] | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -915,7 +973,8 @@ "\"number\" | \"percent\" | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -928,7 +987,8 @@ "number | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -941,7 +1001,8 @@ "number | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -955,7 +1016,8 @@ " | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -969,6 +1031,7 @@ "description": [], "path": "src/plugins/charts/common/expressions/palette/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -981,7 +1044,8 @@ "string[]" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -991,7 +1055,8 @@ "label": "gradient", "description": [], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1004,7 +1069,8 @@ "number[]" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1017,7 +1083,8 @@ "\"number\" | \"percent\"" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1027,7 +1094,8 @@ "label": "rangeMin", "description": [], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1037,7 +1105,8 @@ "label": "rangeMax", "description": [], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1051,7 +1120,8 @@ " | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1065,6 +1135,7 @@ "description": [], "path": "src/plugins/charts/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -1077,7 +1148,8 @@ "string | undefined" ], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1090,7 +1162,8 @@ "boolean | undefined" ], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1103,7 +1176,8 @@ "boolean | undefined" ], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1116,7 +1190,8 @@ "number | undefined" ], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1129,7 +1204,8 @@ "boolean | undefined" ], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1142,7 +1218,8 @@ "number | null | undefined" ], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1156,6 +1233,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -1174,7 +1252,8 @@ } ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1184,7 +1263,8 @@ "label": "label", "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1197,7 +1277,8 @@ "[number, number[]][]" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1211,6 +1292,7 @@ "description": [], "path": "src/plugins/charts/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -1220,7 +1302,8 @@ "label": "bgFill", "description": [], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1230,7 +1313,8 @@ "label": "bgColor", "description": [], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1240,7 +1324,8 @@ "label": "labelColor", "description": [], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1250,7 +1335,8 @@ "label": "subText", "description": [], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1260,7 +1346,8 @@ "label": "fontSize", "description": [], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1274,6 +1361,7 @@ "description": [], "path": "src/plugins/charts/common/expressions/palette/system_palette.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -1283,7 +1371,8 @@ "label": "name", "description": [], "path": "src/plugins/charts/common/expressions/palette/system_palette.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1299,6 +1388,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1315,6 +1405,7 @@ ], "path": "src/plugins/charts/common/static/components/collections.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1336,6 +1427,7 @@ ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1347,6 +1439,7 @@ "description": [], "path": "src/plugins/charts/common/static/components/collections.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1361,6 +1454,7 @@ ], "path": "src/plugins/charts/common/static/components/collections.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1375,6 +1469,7 @@ ], "path": "src/plugins/charts/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1391,6 +1486,7 @@ ], "path": "src/plugins/charts/public/static/colors/seed_colors.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1412,6 +1508,7 @@ ], "path": "src/plugins/charts/common/static/color_maps/truncated_color_maps.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1428,6 +1525,7 @@ ], "path": "src/plugins/charts/common/static/components/collections.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1442,6 +1540,7 @@ ], "path": "src/plugins/charts/common/static/components/collections.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1453,6 +1552,7 @@ "description": [], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -1463,6 +1563,7 @@ "description": [], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -1475,7 +1576,8 @@ "true" ], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1485,7 +1587,8 @@ "label": "padding", "description": [], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1495,7 +1598,8 @@ "label": "rotation", "description": [], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1506,6 +1610,7 @@ "description": [], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -1518,7 +1623,8 @@ "\"bottom\"" ], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1531,7 +1637,8 @@ "\"left\"" ], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1546,6 +1653,7 @@ "description": [], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -1558,7 +1666,8 @@ "true" ], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1568,7 +1677,8 @@ "label": "size", "description": [], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1578,7 +1688,8 @@ "label": "padding", "description": [], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1594,6 +1705,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/truncated_color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false }, @@ -1606,6 +1718,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -1618,6 +1731,7 @@ ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -1637,7 +1751,8 @@ ".Blues" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1647,7 +1762,8 @@ "label": "label", "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1660,7 +1776,8 @@ "[number, number[]][]" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1673,6 +1790,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -1692,7 +1810,8 @@ ".Greens" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1702,7 +1821,8 @@ "label": "label", "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1715,7 +1835,8 @@ "[number, number[]][]" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1728,6 +1849,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -1747,7 +1869,8 @@ ".Greys" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1757,7 +1880,8 @@ "label": "label", "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1770,7 +1894,8 @@ "[number, number[]][]" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1783,6 +1908,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -1802,7 +1928,8 @@ ".Reds" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1812,7 +1939,8 @@ "label": "label", "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1825,7 +1953,8 @@ "[number, number[]][]" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1838,6 +1967,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -1857,7 +1987,8 @@ ".YellowToRed" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1867,7 +1998,8 @@ "label": "label", "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1880,7 +2012,8 @@ "[number, number[]][]" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1893,6 +2026,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -1912,7 +2046,8 @@ ".GreenToRed" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1922,7 +2057,8 @@ "label": "label", "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -1935,7 +2071,8 @@ "[number, number[]][]" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1952,6 +2089,7 @@ "description": [], "path": "src/plugins/charts/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -1966,7 +2104,8 @@ "; createColorLookupFunction: (arrayOfStringsOrNumbers?: (string | number)[] | undefined, colorMapping?: Partial>) => (value: string | number) => any; }" ], "path": "src/plugins/charts/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2003,7 +2142,8 @@ "; }" ], "path": "src/plugins/charts/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2018,7 +2158,8 @@ ">; }" ], "path": "src/plugins/charts/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -2045,6 +2186,7 @@ ], "path": "src/plugins/charts/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -2062,6 +2204,7 @@ "description": [], "path": "src/plugins/charts/common/expressions/palette/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -2074,7 +2217,8 @@ "string[] | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2084,7 +2228,8 @@ "label": "gradient", "description": [], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2097,7 +2242,8 @@ "boolean | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2110,7 +2256,8 @@ "number[] | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2123,7 +2270,8 @@ "\"number\" | \"percent\" | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2136,7 +2284,8 @@ "number | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2149,7 +2298,8 @@ "number | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2163,7 +2313,8 @@ " | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2177,6 +2328,7 @@ "description": [], "path": "src/plugins/charts/common/expressions/palette/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -2189,7 +2341,8 @@ "string[]" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2199,7 +2352,8 @@ "label": "gradient", "description": [], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2212,7 +2366,8 @@ "number[]" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2225,7 +2380,8 @@ "\"number\" | \"percent\"" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2235,7 +2391,8 @@ "label": "rangeMin", "description": [], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2245,7 +2402,8 @@ "label": "rangeMax", "description": [], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2259,7 +2417,8 @@ " | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2273,6 +2432,7 @@ "description": [], "path": "src/plugins/charts/common/expressions/palette/system_palette.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -2282,7 +2442,8 @@ "label": "name", "description": [], "path": "src/plugins/charts/common/expressions/palette/system_palette.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2302,6 +2463,7 @@ ], "path": "src/plugins/charts/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -2322,6 +2484,7 @@ ], "path": "src/plugins/charts/common/static/color_maps/heatmap_color.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -2335,6 +2498,7 @@ ], "path": "src/plugins/charts/common/static/color_maps/heatmap_color.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2349,6 +2513,7 @@ ], "path": "src/plugins/charts/common/static/color_maps/heatmap_color.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2368,6 +2533,7 @@ ], "path": "src/plugins/charts/common/expressions/palette/palette.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -2420,6 +2586,7 @@ ], "path": "src/plugins/charts/common/expressions/palette/system_palette.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -2435,6 +2602,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -2454,7 +2622,8 @@ } ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2468,6 +2637,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -2486,7 +2656,8 @@ } ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2496,7 +2667,8 @@ "label": "text", "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2510,6 +2682,7 @@ "description": [], "path": "src/plugins/charts/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -2528,7 +2701,8 @@ } ], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2538,7 +2712,8 @@ "label": "invertColors", "description": [], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2552,6 +2727,7 @@ "description": [], "path": "src/plugins/charts/common/expressions/palette/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -2564,7 +2740,8 @@ "string[] | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2574,7 +2751,8 @@ "label": "gradient", "description": [], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2587,7 +2765,8 @@ "boolean | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2600,7 +2779,8 @@ "number[] | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2613,7 +2793,8 @@ "\"number\" | \"percent\" | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2626,7 +2807,8 @@ "number | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2639,7 +2821,8 @@ "number | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2653,7 +2836,8 @@ " | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2667,6 +2851,7 @@ "description": [], "path": "src/plugins/charts/common/expressions/palette/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -2679,7 +2864,8 @@ "string[]" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2689,7 +2875,8 @@ "label": "gradient", "description": [], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2702,7 +2889,8 @@ "number[]" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2715,7 +2903,8 @@ "\"number\" | \"percent\"" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2725,7 +2914,8 @@ "label": "rangeMin", "description": [], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2735,7 +2925,8 @@ "label": "rangeMax", "description": [], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2749,7 +2940,8 @@ " | undefined" ], "path": "src/plugins/charts/common/expressions/palette/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2763,6 +2955,7 @@ "description": [], "path": "src/plugins/charts/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -2775,7 +2968,8 @@ "string | undefined" ], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2788,7 +2982,8 @@ "boolean | undefined" ], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2801,7 +2996,8 @@ "boolean | undefined" ], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2814,7 +3010,8 @@ "number | undefined" ], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2827,7 +3024,8 @@ "boolean | undefined" ], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2840,7 +3038,8 @@ "number | null | undefined" ], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2854,6 +3053,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -2872,7 +3072,8 @@ } ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2882,7 +3083,8 @@ "label": "label", "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2895,7 +3097,8 @@ "[number, number[]][]" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2909,6 +3112,7 @@ "description": [], "path": "src/plugins/charts/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -2918,7 +3122,8 @@ "label": "bgFill", "description": [], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2928,7 +3133,8 @@ "label": "bgColor", "description": [], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2938,7 +3144,8 @@ "label": "labelColor", "description": [], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2948,7 +3155,8 @@ "label": "subText", "description": [], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -2958,7 +3166,8 @@ "label": "fontSize", "description": [], "path": "src/plugins/charts/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2972,6 +3181,7 @@ "description": [], "path": "src/plugins/charts/common/expressions/palette/system_palette.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -2981,7 +3191,8 @@ "label": "name", "description": [], "path": "src/plugins/charts/common/expressions/palette/system_palette.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2997,6 +3208,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3013,6 +3225,7 @@ ], "path": "src/plugins/charts/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3027,6 +3240,7 @@ ], "path": "src/plugins/charts/common/static/components/collections.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3048,6 +3262,7 @@ ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3059,6 +3274,7 @@ "description": [], "path": "src/plugins/charts/common/static/components/collections.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3073,6 +3289,7 @@ ], "path": "src/plugins/charts/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3087,6 +3304,7 @@ ], "path": "src/plugins/charts/common/static/components/collections.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3101,6 +3319,7 @@ ], "path": "src/plugins/charts/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3115,6 +3334,7 @@ ], "path": "src/plugins/charts/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3136,6 +3356,7 @@ ], "path": "src/plugins/charts/common/static/color_maps/truncated_color_maps.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3152,6 +3373,7 @@ ], "path": "src/plugins/charts/common/static/components/collections.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3166,6 +3388,7 @@ ], "path": "src/plugins/charts/common/static/components/collections.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3177,6 +3400,7 @@ "description": [], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -3187,6 +3411,7 @@ "description": [], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -3199,7 +3424,8 @@ "true" ], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -3209,7 +3435,8 @@ "label": "padding", "description": [], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -3219,7 +3446,8 @@ "label": "rotation", "description": [], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -3230,6 +3458,7 @@ "description": [], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -3242,7 +3471,8 @@ "\"bottom\"" ], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -3255,7 +3485,8 @@ "\"left\"" ], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -3270,6 +3501,7 @@ "description": [], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -3282,7 +3514,8 @@ "true" ], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -3292,7 +3525,8 @@ "label": "size", "description": [], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -3302,7 +3536,8 @@ "label": "padding", "description": [], "path": "src/plugins/charts/common/static/styles/multilayer_timeaxis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -3318,6 +3553,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/truncated_color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false }, @@ -3330,6 +3566,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -3342,6 +3579,7 @@ ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -3361,7 +3599,8 @@ ".Blues" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -3371,7 +3610,8 @@ "label": "label", "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -3384,7 +3624,8 @@ "[number, number[]][]" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3397,6 +3638,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -3416,7 +3658,8 @@ ".Greens" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -3426,7 +3669,8 @@ "label": "label", "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -3439,7 +3683,8 @@ "[number, number[]][]" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3452,6 +3697,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -3471,7 +3717,8 @@ ".Greys" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -3481,7 +3728,8 @@ "label": "label", "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -3494,7 +3742,8 @@ "[number, number[]][]" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3507,6 +3756,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -3526,7 +3776,8 @@ ".Reds" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -3536,7 +3787,8 @@ "label": "label", "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -3549,7 +3801,8 @@ "[number, number[]][]" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3562,6 +3815,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -3581,7 +3835,8 @@ ".YellowToRed" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -3591,7 +3846,8 @@ "label": "label", "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -3604,7 +3860,8 @@ "[number, number[]][]" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3617,6 +3874,7 @@ "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "charts", @@ -3636,7 +3894,8 @@ ".GreenToRed" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -3646,7 +3905,8 @@ "label": "label", "description": [], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "charts", @@ -3659,7 +3919,8 @@ "[number, number[]][]" ], "path": "src/plugins/charts/common/static/color_maps/color_maps.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/charts.mdx b/api_docs/charts.mdx index 9914b389bcd12..0d3e659e8b785 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'charts'] --- import chartsObj from './charts.devdocs.json'; diff --git a/api_docs/cloud.devdocs.json b/api_docs/cloud.devdocs.json index 2434130292270..97aac894f3a0e 100644 --- a/api_docs/cloud.devdocs.json +++ b/api_docs/cloud.devdocs.json @@ -17,6 +17,7 @@ ], "path": "x-pack/plugins/cloud/public/components/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -32,6 +33,7 @@ "description": [], "path": "x-pack/plugins/cloud/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cloud", @@ -44,7 +46,8 @@ "string | undefined" ], "path": "x-pack/plugins/cloud/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cloud", @@ -57,7 +60,8 @@ "string | undefined" ], "path": "x-pack/plugins/cloud/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cloud", @@ -70,7 +74,8 @@ "string | undefined" ], "path": "x-pack/plugins/cloud/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cloud", @@ -83,7 +88,8 @@ "string | undefined" ], "path": "x-pack/plugins/cloud/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cloud", @@ -96,7 +102,8 @@ "string | undefined" ], "path": "x-pack/plugins/cloud/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cloud", @@ -109,7 +116,8 @@ "string | undefined" ], "path": "x-pack/plugins/cloud/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cloud", @@ -122,7 +130,8 @@ "{ enabled: boolean; org_id?: string | undefined; eventTypesAllowlist?: string[] | undefined; }" ], "path": "x-pack/plugins/cloud/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cloud", @@ -137,7 +146,8 @@ "{ enabled: boolean; chatURL: string; }" ], "path": "x-pack/plugins/cloud/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -151,6 +161,7 @@ "description": [], "path": "x-pack/plugins/cloud/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cloud", @@ -166,6 +177,7 @@ ], "path": "x-pack/plugins/cloud/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -179,7 +191,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cloud", @@ -192,7 +205,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -212,6 +226,7 @@ "description": [], "path": "x-pack/plugins/cloud/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cloud", @@ -224,7 +239,8 @@ "string | undefined" ], "path": "x-pack/plugins/cloud/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cloud", @@ -237,7 +253,8 @@ "string | undefined" ], "path": "x-pack/plugins/cloud/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cloud", @@ -250,7 +267,8 @@ "string | undefined" ], "path": "x-pack/plugins/cloud/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cloud", @@ -263,7 +281,8 @@ "string | undefined" ], "path": "x-pack/plugins/cloud/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cloud", @@ -276,7 +295,8 @@ "string | undefined" ], "path": "x-pack/plugins/cloud/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cloud", @@ -289,7 +309,8 @@ "string | undefined" ], "path": "x-pack/plugins/cloud/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cloud", @@ -302,7 +323,8 @@ "string | undefined" ], "path": "x-pack/plugins/cloud/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cloud", @@ -312,7 +334,8 @@ "label": "isCloudEnabled", "description": [], "path": "x-pack/plugins/cloud/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -335,6 +358,7 @@ "description": [], "path": "x-pack/plugins/cloud/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cloud", @@ -347,7 +371,8 @@ "string | undefined" ], "path": "x-pack/plugins/cloud/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cloud", @@ -360,7 +385,8 @@ "string | undefined" ], "path": "x-pack/plugins/cloud/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cloud", @@ -370,7 +396,8 @@ "label": "isCloudEnabled", "description": [], "path": "x-pack/plugins/cloud/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cloud", @@ -383,7 +410,8 @@ "number | undefined" ], "path": "x-pack/plugins/cloud/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "cloud", @@ -396,7 +424,8 @@ "{ url?: string | undefined; secretToken?: string | undefined; }" ], "path": "x-pack/plugins/cloud/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", diff --git a/api_docs/cloud.mdx b/api_docs/cloud.mdx index 7aead5b437507..14a4c1d38c53e 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloud'] --- import cloudObj from './cloud.devdocs.json'; diff --git a/api_docs/cloud_security_posture.devdocs.json b/api_docs/cloud_security_posture.devdocs.json index 4f3fe1dfefeef..49320bbccb442 100644 --- a/api_docs/cloud_security_posture.devdocs.json +++ b/api_docs/cloud_security_posture.devdocs.json @@ -27,6 +27,7 @@ ], "path": "x-pack/plugins/cloud_security_posture/public/common/navigation/security_solution_links.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cloudSecurityPosture", @@ -42,6 +43,7 @@ ], "path": "x-pack/plugins/cloud_security_posture/public/common/navigation/security_solution_links.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -72,6 +74,7 @@ ], "path": "x-pack/plugins/cloud_security_posture/public/common/navigation/security_solution_links.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cloudSecurityPosture", @@ -87,6 +90,7 @@ ], "path": "x-pack/plugins/cloud_security_posture/public/common/navigation/security_solution_links.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -103,6 +107,7 @@ ], "path": "x-pack/plugins/cloud_security_posture/public/common/navigation/security_solution_links.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -122,6 +127,7 @@ ], "path": "x-pack/plugins/cloud_security_posture/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cloudSecurityPosture", @@ -137,6 +143,7 @@ ], "path": "x-pack/plugins/cloud_security_posture/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -162,6 +169,7 @@ ], "path": "x-pack/plugins/cloud_security_posture/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -181,6 +189,7 @@ ], "path": "x-pack/plugins/cloud_security_posture/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -204,6 +213,7 @@ ], "path": "x-pack/plugins/cloud_security_posture/public/common/navigation/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -220,6 +230,7 @@ ], "path": "x-pack/plugins/cloud_security_posture/public/common/navigation/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -235,6 +246,7 @@ ], "path": "x-pack/plugins/cloud_security_posture/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -250,6 +262,7 @@ ], "path": "x-pack/plugins/cloud_security_posture/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "cloudSecurityPosture", @@ -267,6 +280,7 @@ ], "path": "x-pack/plugins/cloud_security_posture/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -291,6 +305,7 @@ "description": [], "path": "x-pack/plugins/cloud_security_posture/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -304,6 +319,7 @@ "description": [], "path": "x-pack/plugins/cloud_security_posture/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true @@ -329,6 +345,7 @@ ], "path": "x-pack/plugins/cloud_security_posture/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -345,6 +362,7 @@ ], "path": "x-pack/plugins/cloud_security_posture/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/cloud_security_posture.mdx b/api_docs/cloud_security_posture.mdx index 89fca19c761cd..5a3a2a236e7fc 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudSecurityPosture'] --- import cloudSecurityPostureObj from './cloud_security_posture.devdocs.json'; diff --git a/api_docs/console.devdocs.json b/api_docs/console.devdocs.json index b3f71c4e530b9..2201a90f74d04 100644 --- a/api_docs/console.devdocs.json +++ b/api_docs/console.devdocs.json @@ -31,6 +31,7 @@ ], "path": "src/plugins/console/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "console", @@ -44,6 +45,7 @@ ], "path": "src/plugins/console/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "console", @@ -64,6 +66,7 @@ ], "path": "src/plugins/console/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -98,6 +101,7 @@ ], "path": "src/plugins/console/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "console", @@ -118,6 +122,7 @@ ], "path": "src/plugins/console/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -132,6 +137,7 @@ ], "path": "src/plugins/console/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -149,6 +155,7 @@ ], "path": "src/plugins/console/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -167,6 +174,7 @@ "description": [], "path": "src/plugins/console/public/types/plugin_dependencies.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "console", @@ -194,7 +202,8 @@ "> | undefined" ], "path": "src/plugins/console/public/types/plugin_dependencies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -219,6 +228,7 @@ ], "path": "src/plugins/console/public/types/locator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "console", @@ -231,7 +241,8 @@ "string | undefined" ], "path": "src/plugins/console/public/types/locator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -260,6 +271,7 @@ ], "path": "src/plugins/console/server/types.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "setup", "initialIsOpen": true }, @@ -275,6 +287,7 @@ ], "path": "src/plugins/console/server/types.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } diff --git a/api_docs/console.mdx b/api_docs/console.mdx index a537cfc353e26..3df1c839b0f08 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'console'] --- import consoleObj from './console.devdocs.json'; diff --git a/api_docs/controls.devdocs.json b/api_docs/controls.devdocs.json index 97e48e7ea9984..78f856d45261e 100644 --- a/api_docs/controls.devdocs.json +++ b/api_docs/controls.devdocs.json @@ -47,6 +47,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -59,7 +60,23 @@ "\"control_group\"" ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "controls", + "id": "def-public.ControlGroupContainer.anyControlOutputConsumerLoading$", + "type": "Object", + "tags": [], + "label": "anyControlOutputConsumerLoading$", + "description": [], + "signature": [ + "Subject", + "" + ], + "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -73,6 +90,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -86,6 +104,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -103,6 +122,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -116,6 +136,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -133,6 +154,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -148,6 +170,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -169,6 +192,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -184,6 +208,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -200,6 +225,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -207,6 +233,38 @@ "If `buttonType == 'toolbar'`, returns `EuiContextMenuPanel` with input control types as items.\nOtherwise, if `buttonType == 'callout'` returns `EuiButton` with popover containing input control types." ] }, + { + "parentPluginId": "controls", + "id": "def-public.ControlGroupContainer.getCreateTimeSliderControlButton", + "type": "Function", + "tags": [], + "label": "getCreateTimeSliderControlButton", + "description": [], + "signature": [ + "(closePopover?: (() => void) | undefined) => JSX.Element" + ], + "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "controls", + "id": "def-public.ControlGroupContainer.getCreateTimeSliderControlButton.$1", + "type": "Function", + "tags": [], + "label": "closePopover", + "description": [], + "signature": [ + "(() => void) | undefined" + ], + "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", + "deprecated": false, + "trackAdoption": false, + "isRequired": false + } + ], + "returnComment": [] + }, { "parentPluginId": "controls", "id": "def-public.ControlGroupContainer.getToolbarButtons", @@ -223,6 +281,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "`SolutionToolbarPopover` button for input controls" @@ -240,6 +299,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -259,6 +319,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -279,6 +340,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -316,6 +378,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -333,6 +396,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -398,6 +462,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -448,6 +513,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -462,6 +528,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -486,6 +553,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -499,6 +567,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -517,6 +586,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -530,6 +600,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -547,6 +618,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -562,6 +634,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -575,6 +648,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -592,6 +666,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -667,6 +742,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -679,7 +755,8 @@ "true" ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -692,7 +769,8 @@ "\"control_group\"" ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -723,6 +801,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container_factory.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -736,7 +815,8 @@ "P" ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -750,7 +830,8 @@ "[]" ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -784,6 +865,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container_factory.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -797,7 +879,8 @@ "P" ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -813,6 +896,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -832,6 +916,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -849,6 +934,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -864,6 +950,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -887,6 +974,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -942,6 +1030,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -961,6 +1050,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -998,6 +1088,7 @@ ], "path": "src/plugins/controls/public/control_group/embeddable/control_group_container_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1049,6 +1140,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -1061,7 +1153,8 @@ "\"optionsListControl\"" ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -1071,7 +1164,8 @@ "label": "deferEmbeddableLoad", "description": [], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -1085,6 +1179,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -1104,6 +1199,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1124,6 +1220,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1144,6 +1241,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1181,6 +1279,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1198,6 +1297,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1213,6 +1313,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1228,6 +1329,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -1241,10 +1343,27 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], "returnComment": [] + }, + { + "parentPluginId": "controls", + "id": "def-public.OptionsListEmbeddable.isChained", + "type": "Function", + "tags": [], + "label": "isChained", + "description": [], + "signature": [ + "() => boolean" + ], + "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [] } ], "initialIsOpen": false @@ -1334,6 +1453,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -1343,7 +1463,8 @@ "label": "type", "description": [], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -1357,6 +1478,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1372,6 +1494,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1427,6 +1550,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -1446,6 +1570,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1483,6 +1608,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1540,6 +1666,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -1561,12 +1688,13 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { "parentPluginId": "controls", "id": "def-public.OptionsListEmbeddableFactory.presaveTransformFunction.$2", - "type": "Object", + "type": "CompoundType", "tags": [], "label": "embeddable", "description": [], @@ -1598,6 +1726,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1617,6 +1746,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -1630,6 +1760,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1663,6 +1794,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1691,7 +1823,8 @@ ">" ], "path": "src/plugins/controls/public/options_list/components/options_list_editor_options.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1707,6 +1840,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1722,6 +1856,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1737,6 +1872,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1752,6 +1888,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1784,6 +1921,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1797,7 +1935,8 @@ "P" ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -1811,7 +1950,8 @@ "[]" ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1845,6 +1985,7 @@ ], "path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1858,7 +1999,8 @@ "P" ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1908,6 +2050,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -1920,7 +2063,8 @@ "\"rangeSliderControl\"" ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -1930,7 +2074,8 @@ "label": "deferEmbeddableLoad", "description": [], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -1944,6 +2089,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -1963,6 +2109,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1983,6 +2130,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2003,6 +2151,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2040,6 +2189,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2057,6 +2207,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2072,6 +2223,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2087,6 +2239,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -2100,10 +2253,27 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], "returnComment": [] + }, + { + "parentPluginId": "controls", + "id": "def-public.RangeSliderEmbeddable.isChained", + "type": "Function", + "tags": [], + "label": "isChained", + "description": [], + "signature": [ + "() => boolean" + ], + "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable.tsx", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [] } ], "initialIsOpen": false @@ -2193,6 +2363,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -2202,7 +2373,8 @@ "label": "type", "description": [], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable_factory.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -2216,6 +2388,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2231,6 +2404,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2246,6 +2420,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2261,6 +2436,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2276,6 +2452,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2331,6 +2508,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -2350,6 +2528,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2387,6 +2566,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2444,6 +2624,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -2465,12 +2646,13 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { "parentPluginId": "controls", "id": "def-public.RangeSliderEmbeddableFactory.presaveTransformFunction.$2", - "type": "Object", + "type": "CompoundType", "tags": [], "label": "embeddable", "description": [], @@ -2502,6 +2684,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2521,6 +2704,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -2534,6 +2718,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2568,6 +2753,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2581,7 +2767,8 @@ "P" ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -2595,7 +2782,8 @@ "[]" ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2629,6 +2817,7 @@ ], "path": "src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable_factory.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2642,7 +2831,8 @@ "P" ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2679,6 +2869,7 @@ ], "path": "src/plugins/controls/public/controls_callout/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2692,7 +2883,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2708,6 +2900,7 @@ "description": [], "path": "src/plugins/controls/public/controls_callout/controls_callout.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -2721,6 +2914,7 @@ ], "path": "src/plugins/controls/public/controls_callout/controls_callout.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2736,6 +2930,7 @@ "description": [], "path": "src/plugins/controls/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -2749,7 +2944,8 @@ "[] | undefined" ], "path": "src/plugins/controls/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -2762,7 +2958,22 @@ "string | undefined" ], "path": "src/plugins/controls/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "controls", + "id": "def-public.CommonControlOutput.timeslice", + "type": "Object", + "tags": [], + "label": "timeslice", + "description": [], + "signature": [ + "[number, number] | undefined" + ], + "path": "src/plugins/controls/public/types.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2786,6 +2997,7 @@ ], "path": "src/plugins/controls/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -2798,7 +3010,8 @@ "Partial | undefined" ], "path": "src/plugins/controls/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -2812,6 +3025,7 @@ ], "path": "src/plugins/controls/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -2825,6 +3039,7 @@ ], "path": "src/plugins/controls/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2861,6 +3076,7 @@ ], "path": "src/plugins/controls/common/control_group/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -2873,7 +3089,8 @@ "\"NONE\" | \"HIERARCHICAL\"" ], "path": "src/plugins/controls/common/control_group/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -2893,7 +3110,8 @@ " | undefined" ], "path": "src/plugins/controls/common/control_group/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -2906,7 +3124,8 @@ "boolean | undefined" ], "path": "src/plugins/controls/common/control_group/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -2919,7 +3138,8 @@ "\"twoLine\" | \"oneLine\"" ], "path": "src/plugins/controls/common/control_group/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -2938,7 +3158,8 @@ } ], "path": "src/plugins/controls/common/control_group/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2964,6 +3185,7 @@ ], "path": "src/plugins/controls/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -2985,6 +3207,7 @@ ], "path": "src/plugins/controls/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -3005,6 +3228,7 @@ ], "path": "src/plugins/controls/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3038,6 +3262,7 @@ ], "path": "src/plugins/controls/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -3051,12 +3276,13 @@ ], "path": "src/plugins/controls/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { "parentPluginId": "controls", "id": "def-public.IEditableControlFactory.presaveTransformFunction.$2", - "type": "Object", + "type": "CompoundType", "tags": [], "label": "embeddable", "description": [], @@ -3080,6 +3306,7 @@ ], "path": "src/plugins/controls/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3099,6 +3326,7 @@ ], "path": "src/plugins/controls/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -3112,6 +3340,7 @@ ], "path": "src/plugins/controls/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3140,6 +3369,7 @@ ], "path": "src/plugins/controls/common/options_list/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -3152,7 +3382,8 @@ "string[] | undefined" ], "path": "src/plugins/controls/common/options_list/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -3165,7 +3396,8 @@ "boolean | undefined" ], "path": "src/plugins/controls/common/options_list/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -3178,7 +3410,8 @@ "boolean | undefined" ], "path": "src/plugins/controls/common/options_list/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3192,6 +3425,7 @@ "description": [], "path": "src/plugins/controls/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -3204,7 +3438,8 @@ "boolean | undefined" ], "path": "src/plugins/controls/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -3217,7 +3452,8 @@ "boolean | undefined" ], "path": "src/plugins/controls/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -3230,7 +3466,8 @@ "boolean | undefined" ], "path": "src/plugins/controls/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -3243,7 +3480,8 @@ "boolean | undefined" ], "path": "src/plugins/controls/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3268,6 +3506,7 @@ ], "path": "src/plugins/controls/common/range_slider/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -3280,7 +3519,8 @@ "[string, string]" ], "path": "src/plugins/controls/common/range_slider/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3300,6 +3540,7 @@ ], "path": "src/plugins/controls/common/control_group/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3317,10 +3558,11 @@ "section": "def-public.IEmbeddable", "text": "IEmbeddable" }, - "" + " & { isChained?: (() => boolean) | undefined; renderPrepend?: (() => React.ReactNode) | undefined; }" ], "path": "src/plugins/controls/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3372,6 +3614,7 @@ ], "path": "src/plugins/controls/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3401,6 +3644,7 @@ ], "path": "src/plugins/controls/public/control_group/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3424,7 +3668,7 @@ "Filter", "[] | undefined; timeRange?: ", "TimeRange", - " | undefined; controlStyle?: ", + " | undefined; timeslice?: [number, number] | undefined; controlStyle?: ", "ControlStyle", " | undefined; ignoreParentSettings?: ", "ParentIgnoreSettings", @@ -3432,6 +3676,7 @@ ], "path": "src/plugins/controls/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3460,6 +3705,7 @@ ], "path": "src/plugins/controls/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3474,6 +3720,7 @@ ], "path": "src/plugins/controls/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3488,6 +3735,7 @@ ], "path": "src/plugins/controls/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3502,6 +3750,7 @@ ], "path": "src/plugins/controls/common/options_list/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3516,6 +3765,22 @@ ], "path": "src/plugins/controls/common/range_slider/types.ts", "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "controls", + "id": "def-public.TIME_SLIDER_CONTROL", + "type": "string", + "tags": [], + "label": "TIME_SLIDER_CONTROL", + "description": [], + "signature": [ + "\"timeSlider\"" + ], + "path": "src/plugins/controls/common/time_slider/types.ts", + "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3543,6 +3808,7 @@ ], "path": "src/plugins/controls/server/control_group/control_group_telemetry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -3556,6 +3822,7 @@ ], "path": "src/plugins/controls/server/control_group/control_group_telemetry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3598,6 +3865,7 @@ ], "path": "src/plugins/controls/common/control_group/control_group_persistence.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -3619,6 +3887,7 @@ ], "path": "src/plugins/controls/common/control_group/control_group_persistence.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3645,6 +3914,7 @@ ], "path": "src/plugins/controls/common/control_group/control_group_persistence.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -3677,6 +3947,7 @@ ], "path": "src/plugins/controls/common/control_group/control_group_persistence.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -3697,6 +3968,7 @@ ], "path": "src/plugins/controls/common/control_group/control_group_persistence.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -3718,6 +3990,7 @@ ], "path": "src/plugins/controls/common/control_group/control_group_persistence.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3752,6 +4025,7 @@ ], "path": "src/plugins/controls/common/control_group/control_group_persistence.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -3771,6 +4045,7 @@ ], "path": "src/plugins/controls/common/control_group/control_group_persistence.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3798,6 +4073,7 @@ ], "path": "src/plugins/controls/common/control_group/control_group_persistence.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -3819,6 +4095,7 @@ ], "path": "src/plugins/controls/common/control_group/control_group_persistence.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3847,6 +4124,7 @@ ], "path": "src/plugins/controls/common/control_group/control_group_persistence.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -3860,6 +4138,7 @@ ], "path": "src/plugins/controls/common/control_group/control_group_persistence.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3896,6 +4175,7 @@ ], "path": "src/plugins/controls/common/control_group/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -3908,7 +4188,8 @@ "\"NONE\" | \"HIERARCHICAL\"" ], "path": "src/plugins/controls/common/control_group/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -3928,7 +4209,8 @@ " | undefined" ], "path": "src/plugins/controls/common/control_group/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -3941,7 +4223,8 @@ "boolean | undefined" ], "path": "src/plugins/controls/common/control_group/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -3954,7 +4237,8 @@ "\"twoLine\" | \"oneLine\"" ], "path": "src/plugins/controls/common/control_group/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -3973,7 +4257,8 @@ } ], "path": "src/plugins/controls/common/control_group/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3987,6 +4272,7 @@ "description": [], "path": "src/plugins/controls/common/control_group/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -3996,7 +4282,8 @@ "label": "total", "description": [], "path": "src/plugins/controls/common/control_group/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -4009,7 +4296,8 @@ "{ [key: string]: number; }" ], "path": "src/plugins/controls/common/control_group/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -4022,7 +4310,8 @@ "{ [key: string]: number; }" ], "path": "src/plugins/controls/common/control_group/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -4035,7 +4324,8 @@ "{ [key: string]: number; }" ], "path": "src/plugins/controls/common/control_group/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -4048,7 +4338,8 @@ "{ [key: string]: { total: number; details: { [key: string]: number; }; }; }" ], "path": "src/plugins/controls/common/control_group/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4080,6 +4371,7 @@ ], "path": "src/plugins/controls/common/control_group/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -4089,7 +4381,8 @@ "label": "order", "description": [], "path": "src/plugins/controls/common/control_group/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -4102,7 +4395,8 @@ "\"small\" | \"medium\" | \"large\"" ], "path": "src/plugins/controls/common/control_group/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -4112,7 +4406,8 @@ "label": "grow", "description": [], "path": "src/plugins/controls/common/control_group/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4126,6 +4421,7 @@ "description": [], "path": "src/plugins/controls/common/control_group/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -4148,7 +4444,8 @@ ">" ], "path": "src/plugins/controls/common/control_group/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4173,6 +4470,7 @@ ], "path": "src/plugins/controls/common/options_list/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -4185,7 +4483,8 @@ "string[] | undefined" ], "path": "src/plugins/controls/common/options_list/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -4198,7 +4497,8 @@ "boolean | undefined" ], "path": "src/plugins/controls/common/options_list/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "controls", @@ -4211,7 +4511,8 @@ "boolean | undefined" ], "path": "src/plugins/controls/common/options_list/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4236,6 +4537,7 @@ ], "path": "src/plugins/controls/common/range_slider/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "controls", @@ -4248,7 +4550,8 @@ "[string, string]" ], "path": "src/plugins/controls/common/range_slider/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4268,6 +4571,7 @@ ], "path": "src/plugins/controls/common/control_group/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4282,6 +4586,7 @@ ], "path": "src/plugins/controls/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4296,6 +4601,7 @@ ], "path": "src/plugins/controls/common/control_group/control_group_constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4310,6 +4616,7 @@ ], "path": "src/plugins/controls/common/control_group/control_group_constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4324,6 +4631,7 @@ ], "path": "src/plugins/controls/common/options_list/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4354,6 +4662,7 @@ ], "path": "src/plugins/controls/common/control_group/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4368,6 +4677,7 @@ ], "path": "src/plugins/controls/common/range_slider/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4390,6 +4700,7 @@ ], "path": "src/plugins/controls/common/control_group/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4428,6 +4739,22 @@ ], "path": "src/plugins/controls/common/control_group/types.ts", "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "controls", + "id": "def-common.TIME_SLIDER_CONTROL", + "type": "string", + "tags": [], + "label": "TIME_SLIDER_CONTROL", + "description": [], + "signature": [ + "\"timeSlider\"" + ], + "path": "src/plugins/controls/common/time_slider/types.ts", + "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/controls.mdx b/api_docs/controls.mdx index ba26efb1724ff..d29e799e72fd0 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'controls'] --- import controlsObj from './controls.devdocs.json'; @@ -21,7 +21,7 @@ Contact [Kibana Presentation](https://github.com/orgs/elastic/teams/kibana-prese | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 204 | 0 | 196 | 7 | +| 212 | 0 | 204 | 7 | ## Client diff --git a/api_docs/core.devdocs.json b/api_docs/core.devdocs.json index a2e9624061590..35d2b408052f5 100644 --- a/api_docs/core.devdocs.json +++ b/api_docs/core.devdocs.json @@ -18,6 +18,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -31,6 +32,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41,6 +43,7 @@ "description": [], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -53,7 +56,8 @@ "IUiSettingsClient" ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -78,6 +82,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -98,6 +103,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -113,6 +119,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -136,6 +143,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -152,6 +160,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -176,6 +185,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -191,6 +201,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -208,6 +219,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -234,6 +246,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -249,6 +262,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -266,6 +280,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -292,6 +307,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -307,6 +323,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -324,6 +341,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -350,6 +368,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -365,6 +384,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -382,6 +402,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -406,6 +427,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -421,6 +443,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -437,6 +460,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -464,12 +488,15 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", "id": "def-public.AnalyticsClient.reportEvent", "type": "Function", - "tags": [], + "tags": [ + "track-adoption" + ], "label": "reportEvent", "description": [ "\nReports a telemetry event." @@ -479,6 +506,129 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": true, + "references": [ + { + "plugin": "security", + "path": "x-pack/plugins/security/server/analytics/analytics_service.ts" + }, + { + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts" + }, + { + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts" + }, + { + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts" + }, + { + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts" + }, + { + "plugin": "@kbn/ebt-tools", + "path": "packages/kbn-ebt-tools/src/performance_metric_events/helpers.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/track_clicks.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/server/analytics/analytics_service.test.ts" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/server/analytics/analytics_service.test.ts" + }, + { + "plugin": "@kbn/core-analytics-server-mocks", + "path": "packages/core/analytics/core-analytics-server-mocks/src/analytics_service.mock.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-mocks", + "path": "packages/core/analytics/core-analytics-browser-mocks/src/analytics_service.mock.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-mocks", + "path": "packages/core/analytics/core-analytics-browser-mocks/src/analytics_service.mock.ts" + }, + { + "plugin": "@kbn/core-analytics-server-mocks", + "path": "packages/core/analytics/core-analytics-server-mocks/src/analytics_service.mock.ts" + }, + { + "plugin": "@kbn/core-analytics-server-mocks", + "path": "packages/core/analytics/core-analytics-server-mocks/src/analytics_service.mock.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.test.mocks.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/track_clicks.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/track_clicks.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/track_clicks.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/track_clicks.test.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.test.mocks.ts" + } + ], "children": [ { "parentPluginId": "core", @@ -494,6 +644,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -510,6 +661,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -531,6 +683,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -547,6 +700,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -572,6 +726,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -588,6 +743,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -604,6 +760,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -621,6 +778,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -642,6 +800,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -657,6 +816,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -666,10 +826,12 @@ "parentPluginId": "core", "id": "def-public.AnalyticsClient.registerContextProvider", "type": "Function", - "tags": [], + "tags": [ + "track-adoption" + ], "label": "registerContextProvider", "description": [ - "\nRegisters the context provider to enrich the any reported events." + "\nRegisters the context provider to enrich any reported events." ], "signature": [ "(contextProviderOpts: ", @@ -678,6 +840,189 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": true, + "references": [ + { + "plugin": "licensing", + "path": "x-pack/plugins/licensing/common/register_analytics_context_provider.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/common/register_cloud_deployment_id_analytics_context.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.tsx" + }, + { + "plugin": "telemetry", + "path": "src/plugins/telemetry/public/plugin.ts" + }, + { + "plugin": "telemetry", + "path": "src/plugins/telemetry/server/plugin.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-elasticsearch-server-internal", + "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/register_analytics_context_provider.ts" + }, + { + "plugin": "@kbn/core-environment-server-internal", + "path": "packages/core/environment/core-environment-server-internal/src/environment_service.ts" + }, + { + "plugin": "@kbn/core-execution-context-browser-internal", + "path": "packages/core/execution-context/core-execution-context-browser-internal/src/execution_context_service.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-mocks", + "path": "packages/core/analytics/core-analytics-browser-mocks/src/analytics_service.mock.ts" + }, + { + "plugin": "@kbn/core-execution-context-browser-internal", + "path": "packages/core/execution-context/core-execution-context-browser-internal/src/execution_context_service.test.ts" + }, + { + "plugin": "@kbn/core-execution-context-browser-internal", + "path": "packages/core/execution-context/core-execution-context-browser-internal/src/execution_context_service.test.ts" + }, + { + "plugin": "@kbn/core-analytics-server-mocks", + "path": "packages/core/analytics/core-analytics-server-mocks/src/analytics_service.mock.ts" + }, + { + "plugin": "@kbn/core-analytics-server-mocks", + "path": "packages/core/analytics/core-analytics-server-mocks/src/analytics_service.mock.ts" + }, + { + "plugin": "@kbn/core-elasticsearch-server-internal", + "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/register_analytics_context_provider.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.test.mocks.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.test.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.test.mocks.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.test.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.test.ts" + } + ], "children": [ { "parentPluginId": "core", @@ -694,6 +1039,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -713,6 +1059,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -728,6 +1075,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -749,7 +1097,8 @@ ">" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -765,6 +1114,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -785,6 +1135,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -796,7 +1147,8 @@ "\nThe unique identifier of the application.\n\nCan only be composed of alphanumeric characters, `-`, `:` and `_`" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -808,7 +1160,8 @@ "\nThe title of the application." ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -824,7 +1177,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -840,7 +1194,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -856,7 +1211,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -871,7 +1227,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -886,7 +1243,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -904,7 +1262,8 @@ "> | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -921,7 +1280,8 @@ "> | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -936,7 +1296,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -958,6 +1319,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -972,7 +1334,8 @@ "" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -989,7 +1352,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1004,7 +1368,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1019,7 +1384,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1035,7 +1401,8 @@ "[] | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1054,6 +1421,7 @@ ], "path": "node_modules/@types/kbn__core-application-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -1065,7 +1433,8 @@ "\nUnique identifier for the categories" ], "path": "node_modules/@types/kbn__core-application-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1077,7 +1446,8 @@ "\nLabel used for category name.\nAlso used as aria-label if one isn't set." ], "path": "node_modules/@types/kbn__core-application-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1092,7 +1462,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-application-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1107,7 +1478,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-application-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1122,7 +1494,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-application-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1141,6 +1514,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -1154,7 +1528,8 @@ ".confirm" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1164,7 +1539,8 @@ "label": "text", "description": [], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1177,7 +1553,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1190,7 +1567,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1204,7 +1582,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1218,6 +1597,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1238,6 +1618,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -1251,7 +1632,8 @@ ".default" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1268,6 +1650,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -1285,6 +1668,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -1301,6 +1685,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1324,6 +1709,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -1340,6 +1726,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1360,6 +1747,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -1374,7 +1762,8 @@ "{ readonly [x: string]: Readonly<{ [x: string]: boolean | Readonly<{ [x: string]: boolean; }>; }>; readonly navLinks: Readonly<{ [x: string]: boolean; }>; readonly management: Readonly<{ [x: string]: Readonly<{ [x: string]: boolean; }>; }>; readonly catalogue: Readonly<{ [x: string]: boolean; }>; }" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1392,7 +1781,8 @@ ">>" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1410,6 +1800,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -1423,6 +1814,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1440,6 +1832,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1461,6 +1854,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -1476,6 +1870,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1493,6 +1888,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1512,6 +1908,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -1525,6 +1922,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1536,6 +1934,7 @@ "description": [], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -1548,7 +1947,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1561,7 +1961,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1574,7 +1975,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1595,7 +1997,8 @@ "" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1613,6 +2016,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -1627,7 +2031,8 @@ "HTMLElement" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1643,7 +2048,8 @@ "" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1659,6 +2065,7 @@ "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [ { "plugin": "management", @@ -1705,6 +2112,7 @@ "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [ { "plugin": "visualizations", @@ -1796,6 +2204,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1817,6 +2226,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -1831,6 +2241,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1852,7 +2263,8 @@ ">" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1871,6 +2283,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -1885,7 +2298,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1900,7 +2314,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1915,7 +2330,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1930,7 +2346,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1949,6 +2366,7 @@ ], "path": "node_modules/@types/kbn__core-capabilities-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -1963,7 +2381,8 @@ "{ [x: string]: boolean; }" ], "path": "node_modules/@types/kbn__core-capabilities-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1978,7 +2397,8 @@ "{ [sectionId: string]: Record; }" ], "path": "node_modules/@types/kbn__core-capabilities-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -1993,7 +2413,8 @@ "{ [x: string]: boolean; }" ], "path": "node_modules/@types/kbn__core-capabilities-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2008,7 +2429,8 @@ "[key: string]: Record>" ], "path": "node_modules/@types/kbn__core-capabilities-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2025,6 +2447,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -2034,7 +2457,8 @@ "label": "text", "description": [], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2044,7 +2468,8 @@ "label": "tooltip", "description": [], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2058,7 +2483,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2077,6 +2503,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -2092,6 +2519,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -2107,6 +2535,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2126,6 +2555,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2144,6 +2574,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -2155,7 +2586,8 @@ "\nProvide your plugin's name to create a header for separation" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2171,7 +2603,8 @@ "[] | undefined" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2189,6 +2622,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -2202,6 +2636,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2216,6 +2651,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2238,6 +2674,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -2252,7 +2689,8 @@ "\"custom\"" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2264,7 +2702,8 @@ "\nURL of the link" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2279,7 +2718,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2298,6 +2738,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -2312,7 +2753,8 @@ "\"discuss\"" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2324,7 +2766,8 @@ "\nURL to discuss page.\ni.e. `https://discuss.elastic.co/c/${appName}`" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2343,6 +2786,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -2357,7 +2801,8 @@ "\"documentation\"" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2369,7 +2814,8 @@ "\nURL to documentation page.\ni.e. `${ELASTIC_WEBSITE_URL}guide/en/kibana/${DOC_LINK_VERSION}/${appName}.html`," ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2388,6 +2834,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -2402,7 +2849,8 @@ "\"github\"" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2417,7 +2865,8 @@ "string[]" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2432,7 +2881,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2449,6 +2899,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -2462,6 +2913,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2480,6 +2932,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -2492,7 +2945,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2507,6 +2961,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2520,7 +2975,8 @@ "T" ], "path": "node_modules/@types/kbn__core-mount-utils-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2541,6 +2997,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -2558,6 +3015,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -2571,6 +3029,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2592,6 +3051,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -2605,6 +3065,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2626,6 +3087,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -2639,6 +3101,43 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "core", + "id": "def-public.ChromeNavControls.registerExtension", + "type": "Function", + "tags": [], + "label": "registerExtension", + "description": [ + "Register an extension to be presented to the left of the top-right side of the chrome header." + ], + "signature": [ + "(navControl: ", + "ChromeNavControl", + ") => void" + ], + "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "core", + "id": "def-public.ChromeNavControls.registerExtension.$1", + "type": "Object", + "tags": [], + "label": "navControl", + "description": [], + "signature": [ + "ChromeNavControl" + ], + "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", + "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2659,6 +3158,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -2670,7 +3170,8 @@ "\nA unique identifier for looking up links." ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2682,7 +3183,8 @@ "\nThe title of the application." ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2698,7 +3200,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2710,7 +3213,8 @@ "\nThe base route used to open the root of an application." ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2722,7 +3226,8 @@ "\nThe route used to open the default path and the deep links of an application." ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2737,7 +3242,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2752,7 +3258,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2767,7 +3274,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2782,7 +3290,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2794,7 +3303,8 @@ "\nSettled state between `url`, `baseUrl`, and `active`" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2809,7 +3319,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -2824,7 +3335,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2843,6 +3355,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -2862,6 +3375,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2881,6 +3395,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -2894,6 +3409,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2915,6 +3431,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2932,6 +3449,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -2945,6 +3463,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2964,6 +3483,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2983,6 +3503,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -3003,6 +3524,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -3018,6 +3540,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -3033,6 +3556,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3049,6 +3573,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3065,6 +3590,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3086,6 +3612,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3107,6 +3634,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -3125,6 +3653,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -3134,7 +3663,8 @@ "label": "link", "description": [], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -3144,7 +3674,8 @@ "label": "label", "description": [], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -3154,7 +3685,8 @@ "label": "id", "description": [], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3173,6 +3705,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -3187,7 +3720,8 @@ "ChromeNavLinks" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -3202,7 +3736,8 @@ "ChromeNavControls" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -3217,7 +3752,8 @@ "ChromeRecentlyAccessed" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -3232,7 +3768,8 @@ "ChromeDocTitle" ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -3250,6 +3787,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3267,6 +3805,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -3280,6 +3819,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3303,6 +3843,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3322,6 +3863,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -3336,6 +3878,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3359,6 +3902,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3378,6 +3922,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -3392,6 +3937,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3415,6 +3961,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3434,6 +3981,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -3448,6 +3996,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3471,6 +4020,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3490,6 +4040,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -3505,6 +4056,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3528,6 +4080,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3547,6 +4100,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -3561,6 +4115,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3580,6 +4135,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -3595,6 +4151,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3616,6 +4173,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3635,6 +4193,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -3649,6 +4208,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3670,6 +4230,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -3688,6 +4249,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -3702,6 +4264,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3715,7 +4278,8 @@ "T" ], "path": "node_modules/@types/kbn__core-mount-utils-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -3737,6 +4301,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -3748,7 +4313,8 @@ "\nThe name of the provider." ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -3764,7 +4330,8 @@ "" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -3781,7 +4348,8 @@ "; }" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3807,6 +4375,7 @@ ], "path": "src/core/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -3837,7 +4406,8 @@ ") => void; removeContextProvider: (contextProviderName: string) => void; }" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -3852,7 +4422,8 @@ "ApplicationSetup" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -3867,7 +4438,8 @@ "FatalErrorsSetup" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -3882,7 +4454,8 @@ "HttpSetup" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -3897,7 +4470,8 @@ "NotificationsSetup" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -3912,7 +4486,8 @@ "IUiSettingsClient" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -3927,7 +4502,8 @@ "ExecutionContextSetup" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -3942,7 +4518,8 @@ "InjectedMetadataSetup" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -3957,7 +4534,8 @@ "ThemeServiceSetup" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -3981,6 +4559,7 @@ ], "path": "src/core/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -3998,6 +4577,7 @@ ], "path": "src/core/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -4018,7 +4598,8 @@ ">; }" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4033,7 +4614,8 @@ "ApplicationStart" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4048,7 +4630,8 @@ "ChromeStart" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4063,7 +4646,8 @@ "DocLinksStart" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4078,7 +4662,8 @@ "ExecutionContextSetup" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4093,7 +4678,8 @@ "HttpSetup" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4108,7 +4694,8 @@ "SavedObjectsStart" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4123,7 +4710,8 @@ "I18nStart" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4138,7 +4726,8 @@ "NotificationsStart" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4153,7 +4742,8 @@ "OverlayStart" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4168,7 +4758,8 @@ "IUiSettingsClient" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4183,7 +4774,8 @@ "FatalErrorsSetup" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4198,7 +4790,8 @@ "DeprecationsServiceStart" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4213,7 +4806,8 @@ "ThemeServiceStart" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4228,7 +4822,8 @@ "InjectedMetadataStart" ], "path": "src/core/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4247,6 +4842,7 @@ ], "path": "node_modules/@types/kbn__core-theme-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -4258,7 +4854,8 @@ "is dark mode enabled or not" ], "path": "node_modules/@types/kbn__core-theme-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4277,6 +4874,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -4294,6 +4892,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4313,6 +4912,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -4326,6 +4926,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4347,6 +4948,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -4360,6 +4962,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4383,6 +4986,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -4396,6 +5000,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4416,6 +5021,7 @@ ], "path": "node_modules/@types/kbn__core-doc-links-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -4425,7 +5031,8 @@ "label": "DOC_LINK_VERSION", "description": [], "path": "node_modules/@types/kbn__core-doc-links-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4435,7 +5042,8 @@ "label": "ELASTIC_WEBSITE_URL", "description": [], "path": "node_modules/@types/kbn__core-doc-links-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4448,7 +5056,8 @@ "DocLinks" ], "path": "node_modules/@types/kbn__core-doc-links-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4465,6 +5074,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -4477,7 +5087,8 @@ "\"production\" | \"development\"" ], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4487,7 +5098,8 @@ "label": "dev", "description": [], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4497,7 +5109,8 @@ "label": "prod", "description": [], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4518,6 +5131,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -4529,7 +5143,8 @@ "\nThe title of the toast and the dialog when expanding the message." ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4544,7 +5159,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4564,6 +5180,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -4575,7 +5192,8 @@ "\nThe time the event was generated in ISO format." ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4587,7 +5205,8 @@ "\nThe event type." ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4602,7 +5221,8 @@ "Properties" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4617,7 +5237,8 @@ "EventContext" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4636,6 +5257,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -4650,7 +5272,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4665,7 +5288,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4680,7 +5304,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4695,7 +5320,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4710,7 +5336,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4725,7 +5352,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4740,7 +5368,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4755,7 +5384,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4770,7 +5400,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4785,7 +5416,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4800,7 +5432,8 @@ "[key: string]: unknown" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4820,6 +5453,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -4831,7 +5465,8 @@ "\nThe event type's unique name." ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4848,7 +5483,8 @@ "; }" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4867,6 +5503,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -4884,7 +5521,8 @@ ">" ], "path": "node_modules/@types/kbn__core-execution-context-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -4902,6 +5540,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -4915,6 +5554,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4935,6 +5575,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4952,6 +5593,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4970,6 +5612,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4990,6 +5633,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -5004,6 +5648,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -5026,6 +5671,7 @@ ], "path": "node_modules/@types/kbn__core-fatal-errors-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -5035,7 +5681,8 @@ "label": "message", "description": [], "path": "node_modules/@types/kbn__core-fatal-errors-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5048,7 +5695,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-fatal-errors-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5067,6 +5715,7 @@ ], "path": "node_modules/@types/kbn__core-fatal-errors-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -5082,6 +5731,7 @@ ], "path": "node_modules/@types/kbn__core-fatal-errors-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -5097,6 +5747,7 @@ ], "path": "node_modules/@types/kbn__core-fatal-errors-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5113,6 +5764,7 @@ ], "path": "node_modules/@types/kbn__core-fatal-errors-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -5136,6 +5788,7 @@ ], "path": "node_modules/@types/kbn__core-fatal-errors-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -5158,6 +5811,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -5173,7 +5827,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5188,7 +5843,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5204,7 +5860,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5219,7 +5876,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5234,7 +5892,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5248,7 +5907,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5269,6 +5929,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -5278,7 +5939,8 @@ "label": "path", "description": [], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5295,6 +5957,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -5309,7 +5972,8 @@ "[key: string]: string | number | boolean | string[] | number[] | boolean[] | null | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5328,6 +5992,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -5340,7 +6005,8 @@ "any" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5353,7 +6019,8 @@ "any" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5366,7 +6033,8 @@ "any" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5379,7 +6047,8 @@ "any" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5398,6 +6067,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -5410,7 +6080,8 @@ "[name: string]: any" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5429,6 +6100,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -5452,6 +6124,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -5467,6 +6140,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5483,6 +6157,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5510,6 +6185,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -5525,6 +6201,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5541,6 +6218,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5568,6 +6246,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -5584,6 +6263,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5600,6 +6280,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5627,6 +6308,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -5642,6 +6324,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5658,6 +6341,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5678,6 +6362,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -5696,7 +6381,8 @@ " | undefined; readonly body?: BodyInit | null | undefined; readonly cache?: RequestCache | undefined; readonly credentials?: RequestCredentials | undefined; readonly integrity?: string | undefined; readonly keepalive?: boolean | undefined; readonly method?: string | undefined; readonly mode?: RequestMode | undefined; readonly redirect?: RequestRedirect | undefined; readonly referrer?: string | undefined; readonly referrerPolicy?: ReferrerPolicy | undefined; readonly signal?: AbortSignal | null | undefined; readonly window?: null | undefined; }" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5709,7 +6395,8 @@ "Error" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5729,6 +6416,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -5741,7 +6429,8 @@ "{ readonly cache: RequestCache; readonly credentials: RequestCredentials; readonly destination: RequestDestination; readonly headers: Headers; readonly integrity: string; readonly keepalive: boolean; readonly method: string; readonly mode: RequestMode; readonly redirect: RequestRedirect; readonly referrer: string; readonly referrerPolicy: ReferrerPolicy; readonly signal: AbortSignal; readonly url: string; readonly clone: () => Request; readonly body: ReadableStream | null; readonly bodyUsed: boolean; readonly arrayBuffer: () => Promise; readonly blob: () => Promise; readonly formData: () => Promise; readonly json: () => Promise; readonly text: () => Promise; }" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5756,7 +6445,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5775,6 +6465,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -5789,7 +6480,8 @@ "BodyInit | null | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5804,7 +6496,8 @@ "RequestCache | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5819,7 +6512,8 @@ "RequestCredentials | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5835,7 +6529,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5850,7 +6545,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5865,7 +6561,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5880,7 +6577,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5895,7 +6593,8 @@ "RequestMode | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5910,7 +6609,8 @@ "RequestRedirect | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5925,7 +6625,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5940,7 +6641,8 @@ "ReferrerPolicy | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5955,7 +6657,8 @@ "AbortSignal | null | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -5970,7 +6673,8 @@ "null | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5988,6 +6692,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6008,7 +6713,8 @@ " | undefined; readonly body?: BodyInit | null | undefined; readonly cache?: RequestCache | undefined; readonly credentials?: RequestCredentials | undefined; readonly integrity?: string | undefined; readonly keepalive?: boolean | undefined; readonly method?: string | undefined; readonly mode?: RequestMode | undefined; readonly redirect?: RequestRedirect | undefined; readonly referrer?: string | undefined; readonly referrerPolicy?: ReferrerPolicy | undefined; readonly signal?: AbortSignal | null | undefined; readonly window?: null | undefined; }" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6023,7 +6729,8 @@ "{ readonly cache: RequestCache; readonly credentials: RequestCredentials; readonly destination: RequestDestination; readonly headers: Headers; readonly integrity: string; readonly keepalive: boolean; readonly method: string; readonly mode: RequestMode; readonly redirect: RequestRedirect; readonly referrer: string; readonly referrerPolicy: ReferrerPolicy; readonly signal: AbortSignal; readonly url: string; readonly clone: () => Request; readonly body: ReadableStream | null; readonly bodyUsed: boolean; readonly arrayBuffer: () => Promise; readonly blob: () => Promise; readonly formData: () => Promise; readonly json: () => Promise; readonly text: () => Promise; }" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6038,7 +6745,8 @@ "Readonly | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6053,7 +6761,8 @@ "TResponseBody | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6070,6 +6779,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6084,7 +6794,8 @@ "IBasePath" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6099,7 +6810,8 @@ "IAnonymousPaths" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6112,7 +6824,8 @@ "IExternalUrl" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6130,6 +6843,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6145,6 +6859,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6165,7 +6880,8 @@ "HttpHandler" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6180,7 +6896,8 @@ "HttpHandler" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6195,7 +6912,8 @@ "HttpHandler" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6210,7 +6928,8 @@ "HttpHandler" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6225,7 +6944,8 @@ "HttpHandler" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6240,7 +6960,8 @@ "HttpHandler" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6255,7 +6976,8 @@ "HttpHandler" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6270,7 +6992,8 @@ "HttpHandler" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6288,6 +7011,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6304,6 +7028,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6325,6 +7050,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -6345,6 +7071,7 @@ ], "path": "node_modules/@types/kbn__core-i18n-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6360,6 +7087,7 @@ ], "path": "node_modules/@types/kbn__core-i18n-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6370,6 +7098,7 @@ "description": [], "path": "node_modules/@types/kbn__core-i18n-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6382,7 +7111,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "node_modules/@types/kbn__core-i18n-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -6406,6 +7136,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6421,6 +7152,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6434,6 +7166,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6453,6 +7186,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6466,6 +7200,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6488,6 +7223,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6503,6 +7239,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6520,6 +7257,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6533,6 +7271,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6552,6 +7291,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6565,6 +7305,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6580,7 +7321,8 @@ "\nReturns the server's root basePath as configured, without any namespace prefix.\n\nSee {@link BasePath.get} for getting the basePath value for a specific request" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6595,7 +7337,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6614,6 +7357,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6629,6 +7373,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6642,6 +7387,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6661,6 +7407,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6674,6 +7421,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6695,6 +7443,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6704,7 +7453,8 @@ "label": "name", "description": [], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6717,7 +7467,8 @@ "Request" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6730,7 +7481,8 @@ "Response | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6747,6 +7499,7 @@ "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": true, "removeBy": "8.8.0\n\nNote to maintainers: when looking at usages, mind that typical use could be inside a `catch` block,\nso TS and code-reference navigation might not highlight them.", + "trackAdoption": false, "references": [ { "plugin": "ml", @@ -6781,6 +7534,7 @@ "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": true, "removeBy": "8.8.0\n\nNote to maintainers: when looking at usages, mind that typical use could be inside a `catch` block,\nso TS and code-reference navigation might not highlight them.", + "trackAdoption": false, "references": [ { "plugin": "@kbn/core-http-browser-internal", @@ -6803,7 +7557,8 @@ "TResponseBody | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6822,6 +7577,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6833,7 +7589,8 @@ "Whether or not this chain has been halted." ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6849,6 +7606,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -6870,6 +7628,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6884,7 +7643,8 @@ "Readonly | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -6899,7 +7659,8 @@ "TResponseBody | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6918,6 +7679,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6935,6 +7697,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6951,6 +7714,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6970,6 +7734,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -6985,6 +7750,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7006,6 +7772,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7021,6 +7788,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7042,7 +7810,8 @@ "> | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -7058,6 +7827,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -7078,6 +7848,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7095,6 +7866,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -7113,6 +7885,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7126,6 +7899,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7145,6 +7919,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7159,6 +7934,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7179,6 +7955,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7192,6 +7969,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7206,6 +7984,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7226,6 +8005,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7239,6 +8019,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7253,6 +8034,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7273,6 +8055,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7286,6 +8069,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7300,6 +8084,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7320,6 +8105,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7333,6 +8119,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7347,6 +8134,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7367,6 +8155,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7380,6 +8169,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7394,6 +8184,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7416,6 +8207,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7431,6 +8223,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7444,6 +8237,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7458,6 +8252,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -7479,6 +8274,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7492,6 +8288,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7506,6 +8303,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -7529,6 +8327,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -7546,6 +8345,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7559,6 +8359,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7573,6 +8374,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7592,6 +8394,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7605,6 +8408,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7624,6 +8428,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7637,6 +8442,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7656,6 +8462,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7669,6 +8476,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7688,6 +8496,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7701,6 +8510,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7720,6 +8530,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7733,6 +8544,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7754,6 +8566,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -7773,6 +8586,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -7793,6 +8607,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7807,7 +8622,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -7822,7 +8638,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -7837,7 +8654,8 @@ "unknown" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -7852,7 +8670,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -7867,7 +8686,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -7882,7 +8702,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7901,6 +8722,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7915,7 +8737,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -7930,7 +8753,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -7945,7 +8769,8 @@ "unknown" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7962,6 +8787,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -7976,7 +8802,8 @@ "IToasts" ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7993,6 +8820,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -8007,7 +8835,8 @@ "IToasts" ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8026,6 +8855,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -8040,7 +8870,8 @@ "OptInConfigPerType" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8057,7 +8888,8 @@ " | undefined> | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8074,6 +8906,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -8091,6 +8924,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -8107,6 +8941,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8123,6 +8958,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -8144,6 +8980,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -8159,6 +8996,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8182,6 +9020,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -8197,6 +9036,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -8214,6 +9054,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8230,6 +9071,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -8249,6 +9091,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -8267,6 +9110,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -8279,7 +9123,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8292,7 +9137,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8305,7 +9151,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8318,7 +9165,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8331,7 +9179,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8344,7 +9193,8 @@ "\"m\" | \"s\" | \"l\" | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8357,7 +9207,8 @@ "string | number | boolean | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8370,7 +9221,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8383,7 +9235,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8397,7 +9250,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8415,6 +9269,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -8428,6 +9283,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8450,6 +9306,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -8472,6 +9329,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -8488,6 +9346,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8505,6 +9364,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -8525,6 +9385,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -8537,7 +9398,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8550,7 +9412,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8563,7 +9426,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8576,7 +9440,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8589,7 +9454,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8602,7 +9468,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8615,7 +9482,8 @@ "\"cancel\" | \"confirm\" | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8629,7 +9497,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8644,7 +9513,8 @@ "string | number | boolean | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8661,6 +9531,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -8673,7 +9544,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8686,7 +9558,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8699,7 +9572,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8712,7 +9586,8 @@ "string | number | boolean | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8731,6 +9606,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -8753,6 +9629,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -8769,6 +9646,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8786,6 +9664,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -8809,6 +9688,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -8826,6 +9706,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8843,6 +9724,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -8865,6 +9747,7 @@ ], "path": "node_modules/@types/kbn__core-mount-utils-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -8879,7 +9762,8 @@ "Promise" ], "path": "node_modules/@types/kbn__core-mount-utils-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8895,6 +9779,7 @@ ], "path": "node_modules/@types/kbn__core-mount-utils-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -8913,6 +9798,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -8927,7 +9813,8 @@ "OverlayBannersStart" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -8948,6 +9835,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -8963,6 +9851,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -8976,7 +9865,8 @@ "T" ], "path": "node_modules/@types/kbn__core-mount-utils-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -8992,7 +9882,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -9015,6 +9906,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -9030,6 +9922,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -9043,7 +9936,8 @@ "T" ], "path": "node_modules/@types/kbn__core-mount-utils-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -9059,7 +9953,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -9081,6 +9976,7 @@ ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -9096,7 +9992,8 @@ "" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9110,7 +10007,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-overlays-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -9129,6 +10027,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -9138,7 +10037,8 @@ "label": "version", "description": [], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9148,7 +10048,8 @@ "label": "branch", "description": [], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9158,7 +10059,8 @@ "label": "buildNum", "description": [], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9168,7 +10070,8 @@ "label": "buildSha", "description": [], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9178,7 +10081,8 @@ "label": "dist", "description": [], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9204,6 +10108,7 @@ ], "path": "src/core/public/plugins/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -9225,6 +10130,7 @@ ], "path": "src/core/public/plugins/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -9245,6 +10151,7 @@ ], "path": "src/core/public/plugins/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9259,6 +10166,7 @@ ], "path": "src/core/public/plugins/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9284,6 +10192,7 @@ ], "path": "src/core/public/plugins/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -9303,6 +10212,7 @@ ], "path": "src/core/public/plugins/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9317,6 +10227,7 @@ ], "path": "src/core/public/plugins/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9334,6 +10245,7 @@ ], "path": "src/core/public/plugins/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -9361,6 +10273,7 @@ ], "path": "src/core/public/plugins/plugin_context.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -9375,7 +10288,8 @@ "symbol" ], "path": "src/core/public/plugins/plugin_context.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9392,7 +10306,8 @@ ">; }" ], "path": "src/core/public/plugins/plugin_context.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9405,7 +10320,8 @@ "{ get: () => T; }" ], "path": "src/core/public/plugins/plugin_context.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9425,6 +10341,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -9440,7 +10357,8 @@ "" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9455,7 +10373,8 @@ "\"exactMatch\" | \"aliasMatch\" | \"conflict\"" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9470,7 +10389,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9485,7 +10405,8 @@ "\"savedObjectConversion\" | \"savedObjectImport\" | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9502,6 +10423,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -9511,7 +10433,8 @@ "label": "message", "description": [], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9521,7 +10444,8 @@ "label": "statusCode", "description": [], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9534,7 +10458,8 @@ "Record | undefined" ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9552,6 +10477,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -9563,7 +10489,8 @@ "The ID of this Saved Object, guaranteed to be unique for all objects of the same `type`" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9575,7 +10502,8 @@ " The type of Saved Object. Each plugin can define it's own custom Saved Object types." ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9590,7 +10518,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9605,7 +10534,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9619,7 +10549,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9634,7 +10565,8 @@ "T" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9650,7 +10582,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9666,7 +10599,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9681,7 +10615,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9696,7 +10631,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9711,7 +10647,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9730,6 +10667,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -9743,7 +10681,8 @@ "SavedObjectAttribute" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9760,6 +10699,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -9769,7 +10709,8 @@ "label": "error", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9779,7 +10720,8 @@ "label": "message", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9789,7 +10731,8 @@ "label": "statusCode", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9802,7 +10745,8 @@ "Record | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9821,6 +10765,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -9830,7 +10775,8 @@ "label": "name", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9840,7 +10786,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9850,7 +10797,8 @@ "label": "id", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9868,6 +10816,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -9881,7 +10830,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9900,6 +10850,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -9909,7 +10860,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -9922,7 +10874,8 @@ "T" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9939,6 +10892,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -9953,7 +10907,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9971,6 +10926,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -9984,7 +10940,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10002,6 +10959,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -10011,7 +10969,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -10021,7 +10980,8 @@ "label": "id", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -10034,7 +10994,8 @@ "T" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -10047,7 +11008,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -10061,7 +11023,8 @@ "[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10078,6 +11041,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -10090,7 +11054,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10109,6 +11074,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -10128,6 +11094,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -10141,6 +11108,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10155,6 +11123,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10170,6 +11139,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -10195,6 +11165,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -10209,6 +11180,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10224,6 +11196,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -10247,6 +11220,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -10260,6 +11234,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10274,6 +11249,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10289,6 +11265,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -10320,6 +11297,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -10333,6 +11311,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10356,6 +11335,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -10369,6 +11349,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10383,6 +11364,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10408,6 +11390,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -10424,6 +11407,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10449,6 +11433,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -10462,6 +11447,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10476,6 +11462,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10503,6 +11490,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -10519,6 +11507,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10547,6 +11536,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -10560,6 +11550,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10574,6 +11565,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10588,6 +11580,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10603,6 +11596,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -10626,6 +11620,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -10642,6 +11637,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10664,6 +11660,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -10678,7 +11675,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -10693,7 +11691,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -10709,7 +11708,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -10724,7 +11724,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -10738,7 +11739,8 @@ "[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10755,6 +11757,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -10769,7 +11772,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10786,6 +11790,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -10795,7 +11800,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -10805,7 +11811,8 @@ "label": "id", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10827,6 +11834,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -10839,7 +11847,8 @@ "A | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -10849,7 +11858,8 @@ "label": "total", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -10859,7 +11869,8 @@ "label": "perPage", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -10869,7 +11880,8 @@ "label": "page", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10888,6 +11900,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -10900,7 +11913,8 @@ "\"action_required\"" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -10912,7 +11926,8 @@ "The translated message to display to the user." ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -10924,7 +11939,8 @@ "The path (without the basePath) that the user should be redirect to address this warning." ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -10939,7 +11955,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10958,6 +11975,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -10970,7 +11988,8 @@ "\"ambiguous_conflict\"" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -10983,7 +12002,8 @@ "{ id: string; title?: string | undefined; updatedAt?: string | undefined; }[]" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11002,6 +12022,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11014,7 +12035,8 @@ "\"conflict\"" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11027,7 +12049,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11046,6 +12069,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11055,7 +12079,8 @@ "label": "id", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11065,7 +12090,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11078,7 +12104,8 @@ "{ title?: string | undefined; icon?: string | undefined; }" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11093,7 +12120,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11114,7 +12142,8 @@ "SavedObjectsImportUnknownError" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11133,6 +12162,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11145,7 +12175,8 @@ "\"missing_references\"" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11158,7 +12189,8 @@ "{ type: string; id: string; }[]" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11177,6 +12209,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11186,7 +12219,8 @@ "label": "success", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11196,7 +12230,8 @@ "label": "successCount", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11210,7 +12245,8 @@ "[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11224,7 +12260,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11238,7 +12275,8 @@ "[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11257,6 +12295,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11266,7 +12305,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11276,7 +12316,8 @@ "label": "id", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11286,7 +12327,8 @@ "label": "overwrite", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11301,7 +12343,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11314,7 +12357,8 @@ "{ type: string; from: string; to: string; }[]" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11329,7 +12373,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11344,7 +12389,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11363,6 +12409,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11375,7 +12422,8 @@ "\"simple\"" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11387,7 +12435,8 @@ "The translated message to display to the user" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11406,6 +12455,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11415,7 +12465,8 @@ "label": "id", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11425,7 +12476,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11440,7 +12492,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11456,6 +12509,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "spaces", @@ -11478,7 +12532,8 @@ "{ title?: string | undefined; icon?: string | undefined; }" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11493,7 +12548,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11512,6 +12568,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11524,7 +12581,8 @@ "\"unknown\"" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11534,7 +12592,8 @@ "label": "message", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11544,7 +12603,8 @@ "label": "statusCode", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11563,6 +12623,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11575,7 +12636,8 @@ "\"unsupported_type\"" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11594,6 +12656,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11606,7 +12669,8 @@ "[pluginName: string]: string" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11623,6 +12687,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11637,7 +12702,8 @@ "SavedObjectsClientContract" ], "path": "node_modules/@types/kbn__core-saved-objects-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11655,6 +12721,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11667,7 +12734,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11680,7 +12748,8 @@ "Attributes | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11694,7 +12763,8 @@ "[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11713,6 +12783,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11724,7 +12795,8 @@ "The id of the saved object" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11736,7 +12808,8 @@ "The type of the saved object" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11758,6 +12831,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11775,6 +12849,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11790,6 +12865,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -11811,6 +12887,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11825,6 +12902,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -11836,6 +12914,7 @@ "description": [], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11848,7 +12927,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -11873,6 +12953,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11884,7 +12965,8 @@ "\nThe shipper's unique name" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11900,6 +12982,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11915,6 +12998,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -11931,6 +13015,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -11954,6 +13039,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -11966,7 +13052,8 @@ "T" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11979,7 +13066,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11989,7 +13077,8 @@ "label": "id", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -11999,7 +13088,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12013,7 +13103,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12026,7 +13117,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12040,7 +13132,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12054,7 +13147,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12067,7 +13161,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12082,7 +13177,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12096,6 +13192,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -12109,6 +13206,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12126,6 +13224,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -12139,6 +13238,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -12153,6 +13253,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12170,6 +13271,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -12183,6 +13285,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12202,6 +13305,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12217,6 +13321,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -12237,6 +13342,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -12251,7 +13357,8 @@ "\"failed\" | \"enqueued\" | \"sent_to_shipper\" | \"succeeded\" | \"dropped\"" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12263,7 +13370,8 @@ "\nWho emitted the event? It can be \"client\" or the name of the shipper." ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12275,7 +13383,8 @@ "\nThe event type the success/failure/drop event refers to." ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12287,7 +13396,8 @@ "\nCode to provide additional information about the success or failure. Examples are 200/400/504/ValidationError/UnknownError" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12299,7 +13409,8 @@ "\nThe number of events that this counter refers to." ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -12316,6 +13427,7 @@ ], "path": "node_modules/@types/kbn__core-theme-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -12331,7 +13443,8 @@ ">" ], "path": "node_modules/@types/kbn__core-theme-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -12348,6 +13461,7 @@ ], "path": "node_modules/@types/kbn__core-theme-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -12363,7 +13477,8 @@ ">" ], "path": "node_modules/@types/kbn__core-theme-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -12382,6 +13497,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -12396,7 +13512,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -12416,6 +13533,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -12430,7 +13548,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12445,7 +13564,8 @@ "T | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12460,7 +13580,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12475,7 +13596,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12490,7 +13612,8 @@ "string[] | number[] | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12505,7 +13628,8 @@ "Record | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12520,7 +13644,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12535,7 +13660,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12550,7 +13676,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12566,7 +13693,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12582,7 +13710,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12597,7 +13726,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12611,7 +13741,8 @@ "" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12629,6 +13760,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "advancedSettings", @@ -12663,6 +13795,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -12679,7 +13812,8 @@ "" ], "path": "node_modules/@types/kbn__core-ui-settings-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -12699,6 +13833,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -12711,7 +13846,8 @@ "T | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -12724,7 +13860,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -12745,6 +13882,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12761,6 +13899,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12777,6 +13916,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -12811,6 +13951,7 @@ ], "path": "node_modules/@types/kbn__core-analytics-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12833,6 +13974,7 @@ ], "path": "node_modules/@types/kbn__core-analytics-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12849,6 +13991,7 @@ ], "path": "node_modules/@types/kbn__core-application-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12873,6 +14016,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12891,6 +14035,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12913,6 +14058,7 @@ "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [ { "plugin": "securitySolution", @@ -13000,7 +14146,8 @@ "AppLeaveActionFactory" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -13013,7 +14160,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -13038,6 +14186,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [ "An unmounting function that will be called to unmount the application. See {@link AppUnmount }." ], @@ -13056,7 +14205,8 @@ "" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -13075,6 +14225,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -13099,6 +14250,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13119,6 +14271,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -13133,7 +14286,8 @@ "" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -13152,6 +14306,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13168,6 +14323,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13188,6 +14344,7 @@ ], "path": "node_modules/@types/kbn__core-chrome-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13203,6 +14360,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13219,6 +14377,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13235,6 +14394,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13251,6 +14411,7 @@ ], "path": "node_modules/@types/kbn__core-fatal-errors-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13267,6 +14428,7 @@ ], "path": "node_modules/@types/kbn__core-http-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13283,6 +14445,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13300,6 +14463,7 @@ ], "path": "node_modules/@types/kbn__core-mount-utils-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [ "a {@link UnmountCallback } that unmount the element on call." ], @@ -13317,7 +14481,8 @@ "T" ], "path": "node_modules/@types/kbn__core-mount-utils-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -13352,6 +14517,7 @@ ], "path": "src/core/public/plugins/plugin.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -13372,7 +14538,8 @@ "" ], "path": "src/core/public/plugins/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -13389,6 +14556,7 @@ ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13411,6 +14579,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13435,6 +14604,7 @@ ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13455,6 +14625,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13471,6 +14642,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13490,6 +14662,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13508,6 +14681,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13528,6 +14702,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13546,6 +14721,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13562,6 +14738,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13586,6 +14763,7 @@ ], "path": "src/core/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -13604,6 +14782,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13624,6 +14803,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13641,6 +14821,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13663,6 +14844,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13679,6 +14861,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13695,6 +14878,7 @@ ], "path": "node_modules/@types/kbn__core-notifications-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13711,6 +14895,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13727,6 +14912,7 @@ ], "path": "node_modules/@types/kbn__core-mount-utils-browser/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -13745,6 +14931,7 @@ ], "path": "src/core/public/core_app/errors/url_overflow.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -13763,6 +14950,7 @@ ], "path": "node_modules/@types/kbn__core-application-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] @@ -13785,6 +14973,7 @@ ], "path": "node_modules/@types/kbn__core-http-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -13797,7 +14986,8 @@ "any" ], "path": "node_modules/@types/kbn__core-http-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -13810,7 +15000,8 @@ "CspConfig" ], "path": "node_modules/@types/kbn__core-http-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -13820,7 +15011,8 @@ "label": "strict", "description": [], "path": "node_modules/@types/kbn__core-http-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -13830,7 +15022,8 @@ "label": "warnLegacyBrowsers", "description": [], "path": "node_modules/@types/kbn__core-http-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -13840,7 +15033,8 @@ "label": "disableEmbedding", "description": [], "path": "node_modules/@types/kbn__core-http-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -13850,7 +15044,8 @@ "label": "header", "description": [], "path": "node_modules/@types/kbn__core-http-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -13872,6 +15067,7 @@ ], "path": "node_modules/@types/kbn__core-metrics-collectors-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -13887,6 +15083,7 @@ ], "path": "node_modules/@types/kbn__core-metrics-collectors-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -13905,6 +15102,7 @@ ], "path": "node_modules/@types/kbn__core-metrics-collectors-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -13922,6 +15120,7 @@ ], "path": "node_modules/@types/kbn__core-metrics-collectors-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -13939,6 +15138,7 @@ ], "path": "node_modules/@types/kbn__core-metrics-collectors-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -13961,6 +15161,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -13974,6 +15175,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -13987,6 +15189,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14001,6 +15204,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -14021,6 +15225,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14035,6 +15240,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14048,6 +15254,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14066,6 +15273,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14079,6 +15287,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14093,6 +15302,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -14111,6 +15321,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14124,6 +15335,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -14142,6 +15354,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14155,6 +15368,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14174,6 +15388,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14188,6 +15403,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14206,6 +15422,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14219,6 +15436,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -14238,6 +15456,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14252,6 +15471,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14270,6 +15490,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14283,6 +15504,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14297,6 +15519,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -14316,6 +15539,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14330,6 +15554,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14348,6 +15573,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14361,6 +15587,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14375,6 +15602,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -14394,6 +15622,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14408,6 +15637,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14426,6 +15656,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14439,6 +15670,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14453,6 +15685,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -14472,6 +15705,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14486,6 +15720,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14504,6 +15739,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14517,6 +15753,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -14531,6 +15768,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -14549,6 +15787,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14562,6 +15801,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14580,6 +15820,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14593,6 +15834,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14607,6 +15849,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14626,6 +15869,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14640,6 +15884,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14658,6 +15903,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14671,6 +15917,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14685,6 +15932,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -14703,6 +15951,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14716,6 +15965,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14730,6 +15980,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14744,6 +15995,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -14763,6 +16015,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14777,6 +16030,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14795,6 +16049,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14808,6 +16063,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14822,6 +16078,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -14840,6 +16097,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14853,6 +16111,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14867,6 +16126,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14886,6 +16146,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14900,6 +16161,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14918,6 +16180,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14931,6 +16194,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14945,6 +16209,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -14964,6 +16229,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -14978,6 +16244,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14996,6 +16263,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15009,6 +16277,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15023,6 +16292,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -15042,6 +16312,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15056,6 +16327,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15074,6 +16346,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15087,6 +16360,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15101,6 +16375,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -15120,6 +16395,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15134,6 +16410,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15152,6 +16429,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15165,6 +16443,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -15179,6 +16458,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -15200,6 +16480,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15209,7 +16490,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -15222,7 +16504,8 @@ "Record | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -15236,6 +16519,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15249,6 +16533,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15263,6 +16548,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15277,6 +16563,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -15295,6 +16582,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15308,6 +16596,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15328,6 +16617,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15342,6 +16632,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15364,6 +16655,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15378,6 +16670,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15392,6 +16685,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15412,6 +16706,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15425,6 +16720,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15446,6 +16742,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15455,7 +16752,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -15468,7 +16766,8 @@ "Record | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -15483,6 +16782,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15496,6 +16796,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15514,6 +16815,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15527,6 +16829,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15545,6 +16848,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15558,6 +16862,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15576,6 +16881,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15589,6 +16895,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15609,6 +16916,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15623,6 +16931,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-import-export-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15645,6 +16954,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15664,6 +16974,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15677,6 +16988,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15691,6 +17003,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15706,6 +17019,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -15731,6 +17045,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15745,6 +17060,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15760,6 +17076,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -15785,6 +17102,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15799,6 +17117,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -15814,6 +17133,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -15835,6 +17155,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15848,6 +17169,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15862,6 +17184,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15877,6 +17200,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -15898,6 +17222,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15911,6 +17236,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15926,6 +17252,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -15949,6 +17276,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -15962,6 +17290,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15987,6 +17316,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -16001,6 +17331,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -16016,6 +17347,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -16041,6 +17373,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -16055,6 +17388,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16070,6 +17404,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -16093,6 +17428,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -16106,6 +17442,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16120,6 +17457,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16135,6 +17473,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -16158,6 +17497,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -16171,6 +17511,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16185,6 +17526,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16200,6 +17542,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -16223,6 +17566,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -16236,6 +17580,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16250,6 +17595,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16264,6 +17610,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16279,6 +17626,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -16304,6 +17652,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -16318,6 +17667,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16333,6 +17683,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -16358,6 +17709,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -16372,6 +17724,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16386,6 +17739,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16400,6 +17754,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16415,6 +17770,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -16440,6 +17796,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -16454,6 +17811,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16469,6 +17827,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -16492,6 +17851,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -16505,6 +17865,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16519,6 +17880,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16534,6 +17896,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -16559,6 +17922,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -16572,6 +17936,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16586,6 +17951,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16602,6 +17968,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16617,6 +17984,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -16640,6 +18008,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -16653,6 +18022,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16668,6 +18038,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -16691,6 +18062,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -16704,6 +18076,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16719,6 +18092,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -16744,6 +18118,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -16757,6 +18132,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16772,6 +18148,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -16792,6 +18169,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -16807,6 +18185,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -16822,7 +18201,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -16840,6 +18220,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -16852,7 +18233,8 @@ "The namespace string, which must be non-empty." ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -16874,6 +18256,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -16887,7 +18270,8 @@ "SavedObjectsFindOptions" ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -16905,6 +18289,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -16924,6 +18309,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -16939,6 +18325,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -16958,6 +18345,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -16973,6 +18361,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -16989,6 +18378,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -17005,6 +18395,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17036,6 +18427,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -17049,7 +18441,8 @@ "SavedObjectMigrationMap" ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -17062,7 +18455,8 @@ "SavedObjectMigrationMap" ], "path": "node_modules/@types/kbn__core-saved-objects-utils-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17085,6 +18479,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -17098,7 +18493,8 @@ "PollEsNodesVersionOptions" ], "path": "node_modules/@types/kbn__core-elasticsearch-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17119,12 +18515,15 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", "id": "def-server.AnalyticsClient.reportEvent", "type": "Function", - "tags": [], + "tags": [ + "track-adoption" + ], "label": "reportEvent", "description": [ "\nReports a telemetry event." @@ -17134,6 +18533,129 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": true, + "references": [ + { + "plugin": "security", + "path": "x-pack/plugins/security/server/analytics/analytics_service.ts" + }, + { + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts" + }, + { + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts" + }, + { + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts" + }, + { + "plugin": "osquery", + "path": "x-pack/plugins/osquery/server/lib/telemetry/sender.ts" + }, + { + "plugin": "@kbn/ebt-tools", + "path": "packages/kbn-ebt-tools/src/performance_metric_events/helpers.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/track_clicks.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/server/analytics/analytics_service.test.ts" + }, + { + "plugin": "security", + "path": "x-pack/plugins/security/server/analytics/analytics_service.test.ts" + }, + { + "plugin": "@kbn/core-analytics-server-mocks", + "path": "packages/core/analytics/core-analytics-server-mocks/src/analytics_service.mock.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-mocks", + "path": "packages/core/analytics/core-analytics-browser-mocks/src/analytics_service.mock.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-mocks", + "path": "packages/core/analytics/core-analytics-browser-mocks/src/analytics_service.mock.ts" + }, + { + "plugin": "@kbn/core-analytics-server-mocks", + "path": "packages/core/analytics/core-analytics-server-mocks/src/analytics_service.mock.ts" + }, + { + "plugin": "@kbn/core-analytics-server-mocks", + "path": "packages/core/analytics/core-analytics-server-mocks/src/analytics_service.mock.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.test.mocks.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/track_clicks.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/track_clicks.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/track_clicks.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/track_clicks.test.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.test.mocks.ts" + } + ], "children": [ { "parentPluginId": "core", @@ -17149,6 +18671,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -17165,6 +18688,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17186,6 +18710,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -17202,6 +18727,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17227,6 +18753,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -17243,6 +18770,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -17259,6 +18787,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -17276,6 +18805,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -17297,6 +18827,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -17312,6 +18843,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17321,10 +18853,12 @@ "parentPluginId": "core", "id": "def-server.AnalyticsClient.registerContextProvider", "type": "Function", - "tags": [], + "tags": [ + "track-adoption" + ], "label": "registerContextProvider", "description": [ - "\nRegisters the context provider to enrich the any reported events." + "\nRegisters the context provider to enrich any reported events." ], "signature": [ "(contextProviderOpts: ", @@ -17333,6 +18867,189 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": true, + "references": [ + { + "plugin": "licensing", + "path": "x-pack/plugins/licensing/common/register_analytics_context_provider.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/common/register_cloud_deployment_id_analytics_context.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.tsx" + }, + { + "plugin": "telemetry", + "path": "src/plugins/telemetry/public/plugin.ts" + }, + { + "plugin": "telemetry", + "path": "src/plugins/telemetry/server/plugin.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts" + }, + { + "plugin": "@kbn/core-elasticsearch-server-internal", + "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/register_analytics_context_provider.ts" + }, + { + "plugin": "@kbn/core-environment-server-internal", + "path": "packages/core/environment/core-environment-server-internal/src/environment_service.ts" + }, + { + "plugin": "@kbn/core-execution-context-browser-internal", + "path": "packages/core/execution-context/core-execution-context-browser-internal/src/execution_context_service.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "cloud", + "path": "x-pack/plugins/cloud/public/plugin.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-mocks", + "path": "packages/core/analytics/core-analytics-browser-mocks/src/analytics_service.mock.ts" + }, + { + "plugin": "@kbn/core-execution-context-browser-internal", + "path": "packages/core/execution-context/core-execution-context-browser-internal/src/execution_context_service.test.ts" + }, + { + "plugin": "@kbn/core-execution-context-browser-internal", + "path": "packages/core/execution-context/core-execution-context-browser-internal/src/execution_context_service.test.ts" + }, + { + "plugin": "@kbn/core-analytics-server-mocks", + "path": "packages/core/analytics/core-analytics-server-mocks/src/analytics_service.mock.ts" + }, + { + "plugin": "@kbn/core-analytics-server-mocks", + "path": "packages/core/analytics/core-analytics-server-mocks/src/analytics_service.mock.ts" + }, + { + "plugin": "@kbn/core-elasticsearch-server-internal", + "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/register_analytics_context_provider.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.test.mocks.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.test.ts" + }, + { + "plugin": "@kbn/core-analytics-browser-internal", + "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.test.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.test.mocks.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.test.ts" + }, + { + "plugin": "@kbn/core-analytics-server-internal", + "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.test.ts" + } + ], "children": [ { "parentPluginId": "core", @@ -17349,6 +19066,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17368,6 +19086,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -17383,6 +19102,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17404,7 +19124,8 @@ ">" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -17420,6 +19141,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -17440,6 +19162,7 @@ ], "path": "node_modules/@types/kbn__core-application-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -17451,7 +19174,8 @@ "\nUnique identifier for the categories" ], "path": "node_modules/@types/kbn__core-application-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -17463,7 +19187,8 @@ "\nLabel used for category name.\nAlso used as aria-label if one isn't set." ], "path": "node_modules/@types/kbn__core-application-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -17478,7 +19203,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-application-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -17493,7 +19219,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-application-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -17508,7 +19235,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-application-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17537,6 +19265,7 @@ "path": "src/core/server/plugins/types.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [], "children": [ { @@ -17559,6 +19288,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -17579,6 +19309,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -17593,6 +19324,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17618,6 +19350,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -17637,6 +19370,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -17651,6 +19385,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17668,6 +19403,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -17688,6 +19424,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -17703,7 +19440,8 @@ "ResponseHeaders" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17722,6 +19460,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -17735,7 +19474,8 @@ ".authenticated" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17752,6 +19492,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -17765,7 +19506,8 @@ ".notHandled" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17784,6 +19526,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -17798,7 +19541,8 @@ "Record | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -17814,7 +19558,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -17830,7 +19575,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17849,6 +19595,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -17862,7 +19609,8 @@ ".redirected" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17879,6 +19627,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -17897,6 +19646,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -17911,6 +19661,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -17931,6 +19682,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -17951,6 +19703,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -17965,6 +19718,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17987,6 +19741,7 @@ ], "path": "node_modules/@types/kbn__core-capabilities-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18001,7 +19756,8 @@ "{ [x: string]: boolean; }" ], "path": "node_modules/@types/kbn__core-capabilities-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -18016,7 +19772,8 @@ "{ [sectionId: string]: Record; }" ], "path": "node_modules/@types/kbn__core-capabilities-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -18031,7 +19788,8 @@ "{ [x: string]: boolean; }" ], "path": "node_modules/@types/kbn__core-capabilities-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -18046,7 +19804,8 @@ "[key: string]: Record>" ], "path": "node_modules/@types/kbn__core-capabilities-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18065,6 +19824,7 @@ ], "path": "node_modules/@types/kbn__core-capabilities-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18082,6 +19842,7 @@ ], "path": "node_modules/@types/kbn__core-capabilities-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18095,6 +19856,7 @@ ], "path": "node_modules/@types/kbn__core-capabilities-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18116,6 +19878,7 @@ ], "path": "node_modules/@types/kbn__core-capabilities-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18129,6 +19892,7 @@ ], "path": "node_modules/@types/kbn__core-capabilities-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18151,6 +19915,7 @@ ], "path": "node_modules/@types/kbn__core-capabilities-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18172,6 +19937,7 @@ ], "path": "node_modules/@types/kbn__core-capabilities-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18186,6 +19952,7 @@ ], "path": "node_modules/@types/kbn__core-capabilities-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -18201,6 +19968,7 @@ ], "path": "node_modules/@types/kbn__core-capabilities-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -18223,6 +19991,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18234,7 +20003,8 @@ "The current Kibana version, e.g `7.16.1`, `8.0.0`" ], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -18246,7 +20016,8 @@ "The current Kibana branch, e.g `7.x`, `7.16`, `master`" ], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -18261,7 +20032,8 @@ "DocLinks" ], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18280,6 +20052,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18298,6 +20071,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18311,6 +20085,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -18325,6 +20100,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -18339,6 +20115,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18361,6 +20138,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18374,6 +20152,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -18388,6 +20167,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -18402,6 +20182,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18424,6 +20205,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18437,6 +20219,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -18451,6 +20234,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -18465,6 +20249,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18487,6 +20272,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18500,6 +20286,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -18514,6 +20301,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -18528,6 +20316,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18550,6 +20339,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18563,6 +20353,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -18577,6 +20368,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18599,6 +20391,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18612,6 +20405,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -18626,6 +20420,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18649,6 +20444,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18660,7 +20456,8 @@ "\nThe name of the provider." ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -18676,7 +20473,8 @@ "" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -18693,7 +20491,8 @@ "; }" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18712,6 +20511,7 @@ ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18724,7 +20524,8 @@ "{ sniffOnStart: boolean; sniffIntervalMs?: number | undefined; sniffOnConnectionFault: boolean; numberOfHostsConfigured: number; requestHeadersWhitelistConfigured: boolean; customHeadersConfigured: boolean; shardTimeoutMs: number; requestTimeoutMs: number; pingTimeoutMs: number; logQueries: boolean; ssl: { verificationMode: \"none\" | \"full\" | \"certificate\"; certificateAuthoritiesConfigured: boolean; certificateConfigured: boolean; keyConfigured: boolean; keystoreConfigured: boolean; truststoreConfigured: boolean; alwaysPresentCertificate: boolean; }; apiVersion: string; healthCheckDelayMs: number; principal: \"unknown\" | \"elastic_user\" | \"kibana_user\" | \"kibana_system_user\" | \"other_user\" | \"kibana_service_account\"; }" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -18737,7 +20538,8 @@ "{ basePathConfigured: boolean; maxPayloadInBytes: number; rewriteBasePath: boolean; keepaliveTimeout: number; socketTimeout: number; compression: { enabled: boolean; referrerWhitelistConfigured: boolean; }; xsrf: { disableProtection: boolean; allowlistConfigured: boolean; }; requestId: { allowFromAnyIp: boolean; ipAllowlistConfigured: boolean; }; ssl: { certificateAuthoritiesConfigured: boolean; certificateConfigured: boolean; cipherSuites: string[]; keyConfigured: boolean; keystoreConfigured: boolean; truststoreConfigured: boolean; redirectHttpFromPortConfigured: boolean; supportedProtocols: string[]; clientAuthentication: \"optional\" | \"none\" | \"required\"; }; securityResponseHeaders: { strictTransportSecurity: string; xContentTypeOptions: string; referrerPolicy: string; permissionsPolicyConfigured: boolean; disableEmbedding: boolean; }; }" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -18750,7 +20552,8 @@ "{ appendersTypesUsed: string[]; loggersConfiguredCount: number; }" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -18763,7 +20566,8 @@ "{ customIndex: boolean; maxImportPayloadBytes: number; maxImportExportSize: number; }" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -18776,7 +20580,8 @@ "{ set: string[]; unset: string[]; }" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18795,6 +20600,7 @@ ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18807,7 +20613,8 @@ "{ heapTotalBytes: number; heapUsedBytes: number; heapSizeLimit: number; }" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18824,6 +20631,7 @@ ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18835,7 +20643,8 @@ "The name of the counter" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -18850,7 +20659,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -18865,7 +20675,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18881,6 +20692,7 @@ ], "path": "src/core/server/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18911,7 +20723,8 @@ ") => void; removeContextProvider: (contextProviderName: string) => void; }" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -18926,7 +20739,8 @@ "ElasticsearchServicePreboot" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -18950,7 +20764,8 @@ ">" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -18965,7 +20780,8 @@ "PrebootServicePreboot" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18981,6 +20797,7 @@ ], "path": "src/core/server/core_route_handler_context.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -18993,7 +20810,8 @@ "SavedObjectsRequestHandlerContext" ], "path": "src/core/server/core_route_handler_context.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19006,7 +20824,8 @@ "ElasticsearchRequestHandlerContext" ], "path": "src/core/server/core_route_handler_context.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19025,7 +20844,8 @@ } ], "path": "src/core/server/core_route_handler_context.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19038,7 +20858,8 @@ "DeprecationsRequestHandlerContext" ], "path": "src/core/server/core_route_handler_context.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19057,6 +20878,7 @@ ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -19069,7 +20891,8 @@ "{ indices: { alias: string; docsCount: number; docsDeleted: number; storeSizeBytes: number; primaryStoreSizeBytes: number; savedObjectsDocsCount: number; }[]; legacyUrlAliases: { activeCount: number; inactiveCount: number; disabledCount: number; totalCount: number; }; }" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19095,6 +20918,7 @@ ], "path": "src/core/server/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -19125,7 +20949,8 @@ ") => void; removeContextProvider: (contextProviderName: string) => void; }" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19140,7 +20965,8 @@ "CapabilitiesSetup" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19155,7 +20981,8 @@ "DocLinksServiceSetup" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19170,7 +20997,8 @@ "ElasticsearchServiceSetup" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19185,7 +21013,8 @@ "ExecutionContextSetup" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19217,7 +21046,8 @@ "; }" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19232,7 +21062,8 @@ "I18nServiceSetup" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19247,7 +21078,8 @@ "LoggingServiceSetup" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19262,7 +21094,8 @@ "MetricsServiceSetup" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19277,7 +21110,8 @@ "SavedObjectsServiceSetup" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19298,7 +21132,8 @@ } ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19319,7 +21154,8 @@ } ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19334,7 +21170,8 @@ "DeprecationsServiceSetup" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19358,6 +21195,7 @@ ], "path": "src/core/server/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -19375,6 +21213,7 @@ ], "path": "src/core/server/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -19395,7 +21234,8 @@ ">; }" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19410,7 +21250,8 @@ "CapabilitiesStart" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19425,7 +21266,8 @@ "DocLinksServiceSetup" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19440,7 +21282,8 @@ "ElasticsearchServiceStart" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19455,7 +21298,8 @@ "ExecutionContextSetup" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19470,7 +21314,8 @@ "HttpServiceStart" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19485,7 +21330,8 @@ "MetricsServiceSetup" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19500,7 +21346,8 @@ "SavedObjectsServiceStart" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19521,7 +21368,8 @@ } ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19537,6 +21385,7 @@ ], "path": "src/core/server/status/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -19550,7 +21399,8 @@ "" ], "path": "src/core/server/status/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19564,7 +21414,8 @@ "" ], "path": "src/core/server/status/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19581,6 +21432,7 @@ ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false }, @@ -19600,6 +21452,7 @@ ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -19612,7 +21465,8 @@ "CoreConfigUsageData" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19625,7 +21479,8 @@ "CoreServicesUsageData" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19638,7 +21493,8 @@ "CoreEnvironmentUsageData" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19659,6 +21515,7 @@ ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -19676,6 +21533,7 @@ ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -19689,6 +21547,7 @@ ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19713,6 +21572,7 @@ ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -19728,6 +21588,7 @@ ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -19746,6 +21607,7 @@ ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -19758,7 +21620,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19771,7 +21634,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19784,7 +21648,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19797,7 +21662,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19810,7 +21676,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19823,7 +21690,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19836,7 +21704,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19849,7 +21718,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19862,7 +21732,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19875,7 +21746,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19888,7 +21760,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19901,7 +21774,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19914,7 +21788,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19927,7 +21802,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19940,7 +21816,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19953,7 +21830,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19966,7 +21844,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19979,7 +21858,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -19992,7 +21872,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20005,7 +21886,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20018,7 +21900,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20031,7 +21914,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20044,7 +21928,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20057,7 +21942,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20070,7 +21956,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20083,7 +21970,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20096,7 +21984,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20109,7 +21998,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20122,7 +22012,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20135,7 +22026,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20148,7 +22040,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20161,7 +22054,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20174,7 +22068,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20187,7 +22082,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20200,7 +22096,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20213,7 +22110,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20226,7 +22124,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20239,7 +22138,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20252,7 +22152,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20265,7 +22166,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20278,7 +22180,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20291,7 +22194,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20304,7 +22208,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20317,7 +22222,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20330,7 +22236,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20343,7 +22250,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20356,7 +22264,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20369,7 +22278,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20382,7 +22292,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20395,7 +22306,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20408,7 +22320,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20421,7 +22334,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20434,7 +22348,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20447,7 +22362,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20460,7 +22376,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20473,7 +22390,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20486,7 +22404,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20499,7 +22418,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20512,7 +22432,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20525,7 +22446,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20538,7 +22460,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20551,7 +22474,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20564,7 +22488,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20577,7 +22502,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20590,7 +22516,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20603,7 +22530,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20616,7 +22544,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20629,7 +22558,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20642,7 +22572,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20655,7 +22586,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20668,7 +22600,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20681,7 +22614,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20694,7 +22628,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20707,7 +22642,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20720,7 +22656,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20733,7 +22670,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20746,7 +22684,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20759,7 +22698,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20772,7 +22712,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20785,7 +22726,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20798,7 +22740,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20811,7 +22754,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20824,7 +22768,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20837,7 +22782,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20850,7 +22796,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20863,7 +22810,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20876,7 +22824,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20889,7 +22838,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20902,7 +22852,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20915,7 +22866,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20928,7 +22880,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20941,7 +22894,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20954,7 +22908,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20967,7 +22922,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20980,7 +22936,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -20993,7 +22950,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21006,7 +22964,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21019,7 +22978,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21032,7 +22992,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21045,7 +23006,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21058,7 +23020,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21071,7 +23034,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21084,7 +23048,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21097,7 +23062,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21110,7 +23076,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21123,7 +23090,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21136,7 +23104,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21149,7 +23118,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21162,7 +23132,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21175,7 +23146,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21188,7 +23160,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21201,7 +23174,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21214,7 +23188,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21227,7 +23202,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21240,7 +23216,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21253,7 +23230,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21266,7 +23244,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21279,7 +23258,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -21299,6 +23279,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -21313,7 +23294,8 @@ "T | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21329,7 +23311,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21344,7 +23327,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21354,7 +23338,8 @@ "label": "statusCode", "description": [], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -21373,6 +23358,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -21388,6 +23374,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -21408,6 +23395,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -21419,7 +23407,8 @@ "Deprecation message" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21431,7 +23420,8 @@ "Key to documentation links" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -21450,6 +23440,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -21462,7 +23453,8 @@ "DeprecationsClient" ], "path": "node_modules/@types/kbn__core-deprecations-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -21481,6 +23473,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -21496,6 +23489,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -21509,6 +23503,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21531,6 +23526,7 @@ ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -21542,7 +23538,8 @@ "\nIdentifier of the plugin." ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21557,7 +23554,8 @@ "string | string[]" ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21572,7 +23570,8 @@ "PluginType" ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21587,7 +23586,8 @@ "readonly string[]" ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21602,7 +23602,8 @@ "readonly string[]" ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21617,7 +23618,8 @@ "readonly string[]" ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21632,7 +23634,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -21649,6 +23652,7 @@ ], "path": "node_modules/@types/kbn__core-doc-links-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -21660,7 +23664,8 @@ "The branch/version the docLinks are pointing to" ], "path": "node_modules/@types/kbn__core-doc-links-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21672,7 +23677,8 @@ "The base url for the elastic website" ], "path": "node_modules/@types/kbn__core-doc-links-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21687,7 +23693,8 @@ "DocLinks" ], "path": "node_modules/@types/kbn__core-doc-links-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -21706,6 +23713,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -21718,7 +23726,8 @@ "{ [x: string]: string; }" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21731,7 +23740,8 @@ "string[]" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21741,7 +23751,8 @@ "label": "maxSockets", "description": [], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21751,7 +23762,8 @@ "label": "compression", "description": [], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21761,7 +23773,8 @@ "label": "sniffOnStart", "description": [], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21771,7 +23784,8 @@ "label": "sniffOnConnectionFault", "description": [], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21784,7 +23798,8 @@ "false | moment.Duration" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21797,7 +23812,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21810,7 +23826,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21823,7 +23840,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21836,7 +23854,8 @@ "string[]" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21849,7 +23868,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21862,7 +23882,8 @@ "number | moment.Duration | undefined" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21875,7 +23896,8 @@ "number | moment.Duration | undefined" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21888,7 +23910,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21902,7 +23925,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -21919,6 +23943,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -21931,7 +23956,8 @@ "\"none\" | \"full\" | \"certificate\" | undefined" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21944,7 +23970,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21957,7 +23984,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21970,7 +23998,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21983,7 +24012,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -21996,7 +24026,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22015,6 +24046,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -22029,7 +24061,8 @@ "string[]" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22041,7 +24074,8 @@ "\nIndicates whether Elasticsearch configuration includes credentials (`username`, `password` or `serviceAccountToken`)." ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22060,6 +24094,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -22072,7 +24107,8 @@ "IScopedClusterClient" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22089,6 +24125,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -22103,7 +24140,8 @@ "{ readonly hosts: string[]; readonly credentialsSpecified: boolean; }" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22122,6 +24160,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -22137,6 +24176,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -22155,6 +24195,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -22175,6 +24216,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -22192,6 +24234,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -22205,6 +24248,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -22228,6 +24272,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "console", @@ -22258,6 +24303,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -22272,7 +24318,8 @@ "IClusterClient" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22291,6 +24338,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -22306,6 +24354,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -22324,6 +24373,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -22344,6 +24394,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -22356,7 +24407,8 @@ "\"production\" | \"development\"" ], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22366,7 +24418,8 @@ "label": "dev", "description": [], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22376,7 +24429,8 @@ "label": "prod", "description": [], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22395,6 +24449,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -22410,7 +24465,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22426,7 +24482,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22446,6 +24503,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -22457,7 +24515,8 @@ "\nThe time the event was generated in ISO format." ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22469,7 +24528,8 @@ "\nThe event type." ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22484,7 +24544,8 @@ "Properties" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22499,7 +24560,8 @@ "EventContext" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22518,6 +24580,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -22532,7 +24595,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22547,7 +24611,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22562,7 +24627,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22577,7 +24643,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22592,7 +24659,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22607,7 +24675,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22622,7 +24691,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22637,7 +24707,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22652,7 +24723,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22667,7 +24739,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22682,7 +24755,8 @@ "[key: string]: unknown" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22702,6 +24776,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -22713,7 +24788,8 @@ "\nThe event type's unique name." ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22730,7 +24806,8 @@ "; }" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22747,6 +24824,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -22764,6 +24842,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -22778,6 +24857,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -22792,6 +24872,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -22810,6 +24891,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -22830,6 +24912,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -22844,7 +24927,8 @@ "{ 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; date?: string | string[] | undefined; etag?: string | string[] | undefined; expect?: string | string[] | undefined; expires?: string | string[] | undefined; forwarded?: string | string[] | undefined; from?: 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; location?: 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; range?: 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; warning?: string | string[] | undefined; \"www-authenticate\"?: string | string[] | undefined; } & { [header: string]: string | string[] | undefined; }" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22861,6 +24945,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -22873,7 +24958,8 @@ "IScopedClusterClient" ], "path": "node_modules/@types/kbn__core-deprecations-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -22886,7 +24972,8 @@ "SavedObjectsClientContract" ], "path": "node_modules/@types/kbn__core-deprecations-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22903,6 +24990,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -22922,6 +25010,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -22936,7 +25025,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -22956,6 +25046,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -22970,7 +25061,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -22988,6 +25080,7 @@ ], "path": "src/core/server/http_resources/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23029,6 +25122,7 @@ ], "path": "src/core/server/http_resources/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23043,6 +25137,7 @@ ], "path": "src/core/server/http_resources/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -23064,6 +25159,7 @@ ], "path": "src/core/server/http_resources/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23083,6 +25179,7 @@ ], "path": "src/core/server/http_resources/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23098,7 +25195,8 @@ " | undefined" ], "path": "src/core/server/http_resources/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -23114,6 +25212,7 @@ ], "path": "src/core/server/http_resources/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23139,6 +25238,7 @@ ], "path": "src/core/server/http_resources/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23159,6 +25259,7 @@ ], "path": "src/core/server/http_resources/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -23188,6 +25289,7 @@ ], "path": "src/core/server/http_resources/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23208,6 +25310,7 @@ ], "path": "src/core/server/http_resources/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -23231,6 +25334,7 @@ ], "path": "src/core/server/http_resources/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23244,6 +25348,7 @@ ], "path": "src/core/server/http_resources/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23267,6 +25372,7 @@ ], "path": "src/core/server/http_resources/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23280,6 +25386,7 @@ ], "path": "src/core/server/http_resources/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23302,6 +25409,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23318,7 +25426,8 @@ " | Buffer | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -23334,7 +25443,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -23349,7 +25459,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -23368,6 +25479,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23379,7 +25491,8 @@ "The name of the Kibana server" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -23391,7 +25504,8 @@ "The hostname of the server" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -23403,7 +25517,8 @@ "The port the server is listening on" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -23418,7 +25533,8 @@ "\"http\" | \"https\" | \"socket\"" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -23438,6 +25554,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23455,6 +25572,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23468,6 +25586,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -23484,6 +25603,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23502,7 +25622,8 @@ "IBasePath" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -23519,6 +25640,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -23540,6 +25662,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23559,6 +25682,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23575,6 +25699,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23596,6 +25721,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23611,6 +25737,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23632,6 +25759,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23647,6 +25775,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23668,6 +25797,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23683,6 +25813,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23704,6 +25835,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23719,6 +25851,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23740,6 +25873,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23755,6 +25889,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23773,7 +25908,8 @@ "IBasePath" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -23788,7 +25924,8 @@ "ICspConfig" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -23806,6 +25943,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -23826,6 +25964,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23839,6 +25978,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -23854,6 +25994,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23874,6 +26015,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -23892,6 +26034,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23906,7 +26049,8 @@ "IBasePath" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -23921,7 +26065,8 @@ "HttpAuth" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -23938,6 +26083,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -23956,6 +26102,7 @@ ], "path": "node_modules/@types/kbn__core-i18n-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -23971,6 +26118,7 @@ ], "path": "node_modules/@types/kbn__core-i18n-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -23988,6 +26136,7 @@ ], "path": "node_modules/@types/kbn__core-i18n-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -24008,6 +26157,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -24019,7 +26169,8 @@ "\nreturns the server's basePath.\n\nSee {@link IBasePath.get} for getting the basePath value for a specific request" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -24034,7 +26185,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -24052,6 +26204,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -24066,6 +26219,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -24087,6 +26241,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -24101,6 +26256,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -24115,6 +26271,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -24134,6 +26291,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -24147,6 +26305,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -24166,6 +26325,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -24179,6 +26339,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -24201,6 +26362,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -25403,7 +27565,8 @@ "; }" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -25422,6 +27585,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -25435,6 +27599,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -25457,6 +27622,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -25476,6 +27642,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -25491,6 +27658,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -25507,6 +27675,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -25524,6 +27693,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -25557,6 +27727,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -25572,6 +27743,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -25593,6 +27765,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -25617,6 +27790,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -25628,7 +27802,8 @@ "\nSpecify whether browsers that do not support CSP should be\nable to use Kibana. Use `true` to block and `false` to allow." ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -25640,7 +27815,8 @@ "\nSpecify whether users with legacy browsers should be warned\nabout their lack of Kibana security compliance." ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -25652,7 +27828,8 @@ "\nWhether or not embedding (using iframes) should be allowed by the CSP. If embedding is disabled, a restrictive 'frame-ancestors' rule will be added to the default CSP rules." ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -25664,7 +27841,8 @@ "\nThe CSP rules in a formatted directives string for use\nin a `Content-Security-Policy` header." ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -25685,6 +27863,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -25700,6 +27879,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -25721,6 +27901,7 @@ ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -25736,6 +27917,7 @@ ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -25753,6 +27935,7 @@ ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -25770,6 +27953,7 @@ ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -25788,6 +27972,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -25801,6 +27986,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -25818,6 +28004,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -25838,6 +28025,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -25853,7 +28041,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -25872,6 +28061,7 @@ ], "path": "node_modules/@types/kbn__core-http-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -25883,7 +28073,8 @@ "\nIndicates if this policy allows or denies access to the described destination." ], "path": "node_modules/@types/kbn__core-http-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -25898,7 +28089,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-http-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -25913,7 +28105,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-http-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -25933,6 +28126,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -25942,7 +28136,8 @@ "label": "status", "description": [], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -25955,7 +28150,8 @@ "T | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -25968,7 +28164,8 @@ "HttpResponseOptions" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -25987,6 +28184,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -26008,6 +28206,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -26021,6 +28220,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -26046,6 +28246,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -26059,6 +28260,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -26086,6 +28288,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -26101,6 +28304,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -26122,6 +28326,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -26139,6 +28344,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -26149,6 +28355,7 @@ "description": [], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -26161,7 +28368,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26174,7 +28382,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -26196,7 +28405,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26211,7 +28421,8 @@ "Error | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -26230,6 +28441,7 @@ ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -26239,7 +28451,8 @@ "label": "fromTimestamp", "description": [], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26249,7 +28462,8 @@ "label": "lastUpdatedAt", "description": [], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26259,7 +28473,8 @@ "label": "min", "description": [], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26269,7 +28484,8 @@ "label": "max", "description": [], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26279,7 +28495,8 @@ "label": "mean", "description": [], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26289,7 +28506,8 @@ "label": "exceeds", "description": [], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26299,7 +28517,8 @@ "label": "stddev", "description": [], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26312,7 +28531,8 @@ "{ 50: number; 75: number; 95: number; 99: number; }" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -26326,6 +28546,7 @@ "description": [], "path": "src/core/server/rendering/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -26340,7 +28561,8 @@ "boolean | undefined" ], "path": "src/core/server/rendering/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -26360,6 +28582,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -26371,7 +28594,8 @@ "\nResulted path" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26393,6 +28617,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -26409,7 +28634,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26433,6 +28659,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -26446,7 +28673,8 @@ "Context" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26460,7 +28688,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26473,7 +28702,8 @@ "ResponseFactory" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -26499,6 +28729,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -26515,7 +28746,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26539,6 +28771,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -26552,7 +28785,8 @@ "Context" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26566,7 +28800,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26579,7 +28814,8 @@ "ResponseFactory" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -26605,6 +28841,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -26621,7 +28858,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26645,6 +28883,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -26658,7 +28897,8 @@ "Context" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26672,7 +28912,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26685,7 +28926,8 @@ "ResponseFactory" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -26711,6 +28953,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -26727,7 +28970,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26751,6 +28995,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -26764,7 +29009,8 @@ "Context" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26778,7 +29024,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26791,7 +29038,8 @@ "ResponseFactory" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -26817,6 +29065,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -26833,7 +29082,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26857,6 +29107,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -26870,7 +29121,8 @@ "Context" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26884,7 +29136,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26897,7 +29150,8 @@ "ResponseFactory" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -26931,6 +29185,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -26953,6 +29208,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -26966,7 +29222,8 @@ "Context" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26980,7 +29237,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -26993,7 +29251,8 @@ "ResponseFactory" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -27016,6 +29275,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27037,6 +29297,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27050,6 +29311,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -27075,6 +29337,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27088,6 +29351,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -27110,6 +29374,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27131,6 +29396,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27144,6 +29410,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -27169,6 +29436,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27182,6 +29450,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -27203,6 +29472,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27220,6 +29490,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -27237,6 +29508,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -27257,6 +29529,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27282,6 +29555,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27295,6 +29569,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -27309,6 +29584,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -27324,6 +29600,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -27354,6 +29631,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27370,6 +29648,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -27385,6 +29664,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -27412,6 +29692,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27426,6 +29707,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -27441,6 +29723,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -27464,6 +29747,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27477,6 +29761,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -27491,6 +29776,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -27506,6 +29792,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -27527,6 +29814,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27540,6 +29828,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -27555,6 +29844,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -27593,6 +29883,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27606,6 +29897,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -27635,6 +29927,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27651,6 +29944,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -27666,6 +29960,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -27695,6 +29990,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27711,6 +30007,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -27726,6 +30023,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -27753,6 +30051,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27766,6 +30065,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -27780,6 +30080,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -27795,6 +30096,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -27822,6 +30124,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27835,6 +30138,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -27849,6 +30153,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -27864,6 +30169,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -27893,6 +30199,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27906,6 +30213,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -27920,6 +30228,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -27934,6 +30243,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -27949,6 +30259,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -27974,6 +30285,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -27990,6 +30302,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -28005,6 +30318,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -28030,6 +30344,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -28044,6 +30359,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -28058,6 +30374,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -28072,6 +30389,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -28087,6 +30405,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -28115,6 +30434,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -28131,6 +30451,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -28146,6 +30467,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -28171,6 +30493,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -28184,6 +30507,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -28198,6 +30522,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -28213,6 +30538,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -28238,6 +30564,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -28253,6 +30580,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -28269,6 +30597,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -28287,6 +30616,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -28304,6 +30634,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -28332,6 +30663,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -28345,6 +30677,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -28362,6 +30695,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -28387,6 +30721,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -28400,6 +30735,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -28417,6 +30753,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -28444,6 +30781,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -28457,6 +30795,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -28472,6 +30811,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -28494,6 +30834,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -28513,6 +30854,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -28528,6 +30870,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -28545,6 +30888,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -28570,6 +30914,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -28585,6 +30930,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -28602,6 +30948,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -28624,6 +30971,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -28640,6 +30988,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -28659,6 +31008,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -28674,6 +31024,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -28690,6 +31041,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -28706,6 +31058,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -28725,6 +31078,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -28740,6 +31094,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -28756,6 +31111,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -28772,6 +31128,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -28794,6 +31151,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -28811,6 +31169,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -28824,6 +31183,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -28845,6 +31205,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -28864,6 +31225,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -28883,6 +31245,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -28900,6 +31263,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -28913,6 +31277,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -28932,6 +31297,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -28945,6 +31311,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -28964,6 +31331,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -28977,6 +31345,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -28996,6 +31365,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -29009,6 +31379,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -29028,6 +31399,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -29041,6 +31413,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -29060,6 +31433,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -29073,6 +31447,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -29092,6 +31467,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -29105,6 +31481,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -29127,6 +31504,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -30329,7 +32707,8 @@ "; }" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -31532,7 +33911,8 @@ "; }" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -31551,6 +33931,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -31568,6 +33949,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -31584,6 +33966,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31603,6 +33986,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -31618,6 +34002,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31639,6 +34024,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -31654,6 +34040,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31675,7 +34062,8 @@ "> | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -31691,6 +34079,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -31708,6 +34097,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -31725,6 +34115,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -31742,6 +34133,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -31755,6 +34147,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31774,6 +34167,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -31793,6 +34187,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -31810,6 +34205,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -31823,6 +34219,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31842,6 +34239,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -31855,6 +34253,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -31869,6 +34268,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31888,6 +34288,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -31901,6 +34302,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31920,6 +34322,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -31933,6 +34336,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31952,6 +34356,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -31965,6 +34370,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31984,6 +34390,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -31997,6 +34404,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -32020,6 +34428,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -32031,7 +34440,8 @@ "\nA identifier to identify this request.\n" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -32043,7 +34453,8 @@ "\nA UUID to identify this request.\n" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -32058,7 +34469,8 @@ "URL" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -32079,7 +34491,8 @@ ">; }" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -32094,7 +34507,8 @@ "{ 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; date?: string | string[] | undefined; etag?: string | string[] | undefined; expect?: string | string[] | undefined; expires?: string | string[] | undefined; forwarded?: string | string[] | undefined; from?: 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; location?: 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; range?: 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; warning?: string | string[] | undefined; \"www-authenticate\"?: string | string[] | undefined; } & { [header: string]: string | string[] | undefined; }" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -32106,7 +34520,8 @@ "\nWhether or not the request is a \"system request\" rather than an application-level request.\nCan be set on the client using the `HttpFetchOptions#asSystemRequest` option." ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -32121,7 +34536,8 @@ "IKibanaSocket" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -32136,7 +34552,8 @@ "KibanaRequestEvents" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -32151,7 +34568,8 @@ "KibanaRequestAuth" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -32167,7 +34585,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -32182,7 +34601,8 @@ "Params" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -32197,7 +34617,8 @@ "Query" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -32212,7 +34633,8 @@ "Body" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -32231,6 +34653,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -32246,7 +34669,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -32262,7 +34686,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -32282,6 +34707,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -32291,7 +34717,8 @@ "label": "path", "description": [], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -32304,7 +34731,8 @@ "Method" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -32321,7 +34749,8 @@ ">" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -32340,6 +34769,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -32359,6 +34789,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -32374,6 +34805,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -32390,6 +34822,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -32413,6 +34846,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -32428,6 +34862,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -32444,6 +34879,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -32467,6 +34903,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -32482,6 +34919,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -32498,6 +34936,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -32521,6 +34960,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -32536,6 +34976,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -32552,6 +34993,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -32575,6 +35017,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -32590,6 +35033,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -32606,6 +35050,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -32629,6 +35074,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -32644,6 +35090,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -32660,6 +35107,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -32680,6 +35128,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -32693,6 +35142,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -32715,6 +35165,7 @@ ], "path": "node_modules/@types/kbn__core-logging-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -32727,7 +35178,8 @@ "string[]" ], "path": "node_modules/@types/kbn__core-logging-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -32737,7 +35189,8 @@ "label": "name", "description": [], "path": "node_modules/@types/kbn__core-logging-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -32750,7 +35203,8 @@ "\"error\" | \"all\" | \"info\" | \"debug\" | \"off\" | \"trace\" | \"warn\" | \"fatal\"" ], "path": "node_modules/@types/kbn__core-logging-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -32769,6 +35223,7 @@ ], "path": "node_modules/@types/kbn__core-logging-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -32785,7 +35240,8 @@ "> | undefined" ], "path": "node_modules/@types/kbn__core-logging-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -32799,7 +35255,8 @@ "[] | undefined" ], "path": "node_modules/@types/kbn__core-logging-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -32818,6 +35275,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -32834,6 +35292,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -32849,6 +35308,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -32871,6 +35331,7 @@ ], "path": "node_modules/@types/kbn__core-logging-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -32890,6 +35351,7 @@ ], "path": "node_modules/@types/kbn__core-logging-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -32906,6 +35368,7 @@ ], "path": "node_modules/@types/kbn__core-logging-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -32928,6 +35391,7 @@ ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -32939,7 +35403,8 @@ "Interval metrics are collected in milliseconds" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -32959,6 +35424,7 @@ ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -32979,6 +35445,7 @@ ], "path": "node_modules/@types/kbn__core-node-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -32993,7 +35460,8 @@ "NodeRoles" ], "path": "node_modules/@types/kbn__core-node-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -33012,6 +35480,7 @@ ], "path": "node_modules/@types/kbn__core-node-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -33023,7 +35492,8 @@ "\nThe backgroundTasks role includes operations which don't involve\nresponding to incoming http traffic from the UI." ], "path": "node_modules/@types/kbn__core-node-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33035,7 +35505,8 @@ "\nThe ui role covers any operations that need to occur in order\nto handle http traffic from the browser." ], "path": "node_modules/@types/kbn__core-node-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -33052,6 +35523,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -33061,7 +35533,8 @@ "label": "isCompatible", "description": [], "path": "node_modules/@types/kbn__core-elasticsearch-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33074,7 +35547,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-elasticsearch-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33088,7 +35562,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-elasticsearch-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33102,7 +35577,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-elasticsearch-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33112,7 +35588,8 @@ "label": "kibanaVersion", "description": [], "path": "node_modules/@types/kbn__core-elasticsearch-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33125,7 +35602,8 @@ "Error | undefined" ], "path": "node_modules/@types/kbn__core-elasticsearch-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -33142,6 +35620,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -33158,6 +35637,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -33176,6 +35656,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -33192,6 +35673,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -33212,6 +35694,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -33227,7 +35710,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -33246,6 +35730,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -33255,7 +35740,8 @@ "label": "statusCode", "description": [], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -33274,6 +35760,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -33289,7 +35776,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33301,7 +35789,8 @@ "the body to use in the response" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -33320,6 +35809,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -33338,6 +35828,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -33351,6 +35842,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -33373,6 +35865,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -33387,6 +35880,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -33407,6 +35901,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -33423,6 +35918,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -33441,6 +35937,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -33454,6 +35951,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -33476,6 +35974,7 @@ ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -33490,7 +35989,8 @@ "Date" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33509,6 +36009,7 @@ "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [ { "plugin": "monitoring", @@ -33526,6 +36027,18 @@ "plugin": "@kbn/core-metrics-server-internal", "path": "packages/core/metrics/core-metrics-server-internal/src/logging/get_ops_metrics_log.ts" }, + { + "plugin": "@kbn/core-usage-data-server-internal", + "path": "packages/core/usage-data/core-usage-data-server-internal/src/core_usage_data_service.ts" + }, + { + "plugin": "@kbn/core-usage-data-server-internal", + "path": "packages/core/usage-data/core-usage-data-server-internal/src/core_usage_data_service.ts" + }, + { + "plugin": "@kbn/core-usage-data-server-internal", + "path": "packages/core/usage-data/core-usage-data-server-internal/src/core_usage_data_service.ts" + }, { "plugin": "@kbn/core-metrics-server-internal", "path": "packages/core/metrics/core-metrics-server-internal/src/logging/get_ops_metrics_log.test.ts" @@ -33546,7 +36059,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33561,7 +36075,8 @@ "OpsOsMetrics" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33576,7 +36091,8 @@ "{ avg_in_millis: number; max_in_millis: number; }" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33591,7 +36107,8 @@ "{ disconnects: number; total: number; statusCodes: Record; }" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33603,7 +36120,8 @@ "number of current concurrent connections to the server" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -33622,6 +36140,7 @@ ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -33636,7 +36155,8 @@ "\"linux\" | \"aix\" | \"android\" | \"darwin\" | \"freebsd\" | \"haiku\" | \"openbsd\" | \"sunos\" | \"win32\" | \"cygwin\" | \"netbsd\"" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33648,7 +36168,8 @@ "The os platform release, prefixed by the platform name" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33663,7 +36184,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33678,7 +36200,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33693,7 +36216,8 @@ "{ '1m': number; '5m': number; '15m': number; }" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33708,7 +36232,8 @@ "{ total_in_bytes: number; free_in_bytes: number; used_in_bytes: number; }" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33720,7 +36245,8 @@ "the OS uptime" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33735,7 +36261,8 @@ "{ control_group: string; usage_nanos: number; } | undefined" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33750,7 +36277,8 @@ "{ control_group: string; cfs_period_micros: number; cfs_quota_micros: number; stat: { number_of_elapsed_periods: number; number_of_times_throttled: number; time_throttled_nanos: number; }; } | undefined" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -33769,6 +36297,7 @@ ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -33780,7 +36309,8 @@ "pid of the kibana process" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33795,7 +36325,8 @@ "{ heap: { total_in_bytes: number; used_in_bytes: number; size_limit: number; }; resident_set_size_in_bytes: number; }" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33807,7 +36338,8 @@ "mean event loop delay since last collection" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33822,7 +36354,8 @@ "IntervalHistogram" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33834,7 +36367,8 @@ "uptime of the kibana process" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -33853,6 +36387,7 @@ ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -33867,7 +36402,8 @@ "{ avg_in_millis: number; max_in_millis: number; }" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33882,7 +36418,8 @@ "{ disconnects: number; total: number; statusCodes: Record; }" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33894,7 +36431,8 @@ "number of current concurrent connections to the server" ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -33913,6 +36451,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -33927,7 +36466,8 @@ "OptInConfigPerType" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33944,7 +36484,8 @@ " | undefined> | undefined" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -33961,6 +36502,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -33970,7 +36512,8 @@ "label": "version", "description": [], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33980,7 +36523,8 @@ "label": "branch", "description": [], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -33990,7 +36534,8 @@ "label": "buildNum", "description": [], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34000,7 +36545,8 @@ "label": "buildSha", "description": [], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34010,7 +36556,8 @@ "label": "dist", "description": [], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -34036,6 +36583,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -34057,6 +36605,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -34077,6 +36626,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -34091,6 +36641,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -34116,6 +36667,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -34135,6 +36687,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -34149,6 +36702,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -34166,6 +36720,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -34193,6 +36748,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -34208,7 +36764,8 @@ " | undefined" ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34230,7 +36787,8 @@ " | undefined" ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34246,7 +36804,8 @@ "" ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34268,7 +36827,8 @@ " | undefined" ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -34294,6 +36854,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -34306,7 +36867,8 @@ "symbol" ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34323,7 +36885,8 @@ ">; instanceUuid: string; configs: readonly string[]; }" ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34338,7 +36901,8 @@ "NodeInfo" ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34353,7 +36917,8 @@ "LoggerFactory" ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34384,7 +36949,8 @@ "; get: () => T; }" ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -34400,6 +36966,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -34411,7 +36978,8 @@ "\nIdentifier of the plugin. Must be a string in camelCase. Part of a plugin public contract.\nOther plugins leverage it to access plugin API, navigate to the plugin, etc." ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34423,7 +36991,8 @@ "\nVersion of the plugin." ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34435,7 +37004,8 @@ "\nThe version of Kibana the plugin is compatible with, defaults to \"version\"." ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34450,7 +37020,8 @@ "PluginType" ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34465,7 +37036,8 @@ "string | string[]" ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34480,7 +37052,8 @@ "readonly string[]" ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34495,7 +37068,8 @@ "readonly string[]" ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34510,7 +37084,8 @@ "readonly string[]" ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34522,7 +37097,8 @@ "\nSpecifies whether plugin includes some client/browser specific functionality\nthat should be included into client bundle via `public/ui_plugin.js` file." ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34534,7 +37110,8 @@ "\nSpecifies whether plugin includes some server-side specific functionality." ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34552,6 +37129,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": true, + "trackAdoption": false, "references": [] }, { @@ -34567,7 +37145,8 @@ "readonly string[] | undefined" ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34580,7 +37159,8 @@ "{ readonly name: string; readonly githubTeam?: string | undefined; }" ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34595,7 +37175,8 @@ "string | undefined" ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -34610,7 +37191,8 @@ "boolean | undefined" ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -34627,6 +37209,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -35827,7 +38410,8 @@ "; }" ], "path": "node_modules/@types/kbn__core-elasticsearch-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -35840,7 +38424,8 @@ "Logger" ], "path": "node_modules/@types/kbn__core-elasticsearch-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -35850,7 +38435,8 @@ "label": "kibanaVersion", "description": [], "path": "node_modules/@types/kbn__core-elasticsearch-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -35860,7 +38446,8 @@ "label": "ignoreVersionMismatch", "description": [], "path": "node_modules/@types/kbn__core-elasticsearch-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -35870,7 +38457,8 @@ "label": "esVersionCheckInterval", "description": [], "path": "node_modules/@types/kbn__core-elasticsearch-server-internal/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -35896,6 +38484,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -35917,6 +38506,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -35936,6 +38526,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -35950,6 +38541,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -35967,6 +38559,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -35985,6 +38578,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -36004,6 +38598,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -36017,6 +38612,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -36047,6 +38643,7 @@ ], "path": "src/core/server/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -36067,7 +38664,8 @@ ">" ], "path": "src/core/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -36086,6 +38684,7 @@ ], "path": "node_modules/@types/kbn__core-capabilities-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -36097,7 +38696,8 @@ "\nIndicates if capability switchers are supposed to return a default set of capabilities." ], "path": "node_modules/@types/kbn__core-capabilities-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -36117,6 +38717,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -36128,7 +38729,8 @@ "\nThe endpoint _within_ the router path to register the route.\n" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36145,7 +38747,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36161,7 +38764,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -36181,6 +38785,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -36195,7 +38800,8 @@ "boolean | \"optional\" | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36210,7 +38816,8 @@ "(Method extends \"get\" ? never : boolean) | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36225,7 +38832,8 @@ "readonly string[] | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36242,7 +38850,8 @@ ") | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36257,7 +38866,8 @@ "{ payload?: (Method extends \"get\" | \"options\" ? undefined : number) | undefined; idleSocket?: number | undefined; } | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -36276,6 +38886,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -36292,7 +38903,8 @@ "[] | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36307,7 +38919,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36322,7 +38935,8 @@ "\"data\" | \"stream\" | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36337,7 +38951,8 @@ "boolean | \"gunzip\" | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -36356,6 +38971,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -36369,6 +38985,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -36382,6 +38999,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -36401,6 +39019,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -36414,6 +39033,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -36428,6 +39048,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -36451,6 +39072,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -36466,7 +39088,8 @@ "

| undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36482,7 +39105,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36498,7 +39122,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -36517,6 +39142,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -36531,7 +39157,8 @@ "{ params?: boolean | undefined; query?: boolean | undefined; body?: boolean | undefined; } | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -36549,6 +39176,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -36560,7 +39188,8 @@ "The ID of this Saved Object, guaranteed to be unique for all objects of the same `type`" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36572,7 +39201,8 @@ " The type of Saved Object. Each plugin can define it's own custom Saved Object types." ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36587,7 +39217,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36602,7 +39233,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36616,7 +39248,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36631,7 +39264,8 @@ "T" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36647,7 +39281,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36663,7 +39298,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36678,7 +39314,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36693,7 +39330,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36708,7 +39346,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -36727,6 +39366,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -36740,7 +39380,8 @@ "SavedObjectAttribute" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -36757,6 +39398,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -36772,7 +39414,8 @@ "" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36787,7 +39430,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36802,7 +39446,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36817,7 +39462,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36832,7 +39478,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -36851,6 +39498,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -36865,7 +39513,8 @@ "SavedObjectsMigrationLogger" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36877,7 +39526,8 @@ "\nThe migration version that this migration function is defined for" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36892,7 +39542,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36904,7 +39555,8 @@ "\nWhether this is a single-namespace type or not" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -36923,6 +39575,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -36937,7 +39590,8 @@ "" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -36956,6 +39610,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -36965,7 +39620,8 @@ "label": "name", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36975,7 +39631,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -36985,7 +39642,8 @@ "label": "id", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -37004,6 +39662,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -37015,7 +39674,8 @@ "The type of the referenced object" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37027,7 +39687,8 @@ "The ID of the referenced object" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37042,7 +39703,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37057,7 +39719,8 @@ "string[]" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37072,7 +39735,8 @@ "{ type: string; id: string; name: string; }[]" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37087,7 +39751,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37102,7 +39767,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37117,7 +39783,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -37136,6 +39803,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -37150,7 +39818,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -37170,6 +39839,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -37182,7 +39852,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37192,7 +39863,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37205,7 +39877,8 @@ "T" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37218,7 +39891,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37232,7 +39906,8 @@ "[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37248,7 +39923,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37263,7 +39939,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37278,7 +39955,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37293,7 +39971,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -37312,6 +39991,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -37321,7 +40001,8 @@ "label": "id", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37331,7 +40012,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37346,7 +40028,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37361,7 +40044,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -37380,6 +40064,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -37389,7 +40074,8 @@ "label": "id", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37399,7 +40085,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -37419,6 +40106,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -37432,7 +40120,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -37452,6 +40141,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -37465,7 +40155,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -37487,6 +40178,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -37498,7 +40190,8 @@ "The ID of this Saved Object, guaranteed to be unique for all objects of the same `type`" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37510,7 +40203,8 @@ " The type of this Saved Object. Each plugin can define it's own custom Saved Object types." ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37525,7 +40219,8 @@ "{ [P in keyof T]?: T[P] | undefined; }" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37540,7 +40235,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -37561,6 +40257,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -37576,7 +40273,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -37596,6 +40294,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -37609,7 +40308,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -37628,6 +40328,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -37637,7 +40338,8 @@ "label": "id", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -37647,7 +40349,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -37666,6 +40369,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -37680,7 +40384,8 @@ "; }[]" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -37699,6 +40404,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -37718,6 +40424,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -37731,6 +40438,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -37745,6 +40453,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -37760,6 +40469,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -37785,6 +40495,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -37799,6 +40510,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -37814,6 +40526,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -37839,6 +40552,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -37853,6 +40567,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -37868,6 +40583,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -37889,6 +40605,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -37902,6 +40619,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -37916,6 +40634,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -37931,6 +40650,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -37954,6 +40674,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -37967,6 +40688,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -37992,6 +40714,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -38008,6 +40731,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38023,6 +40747,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -38046,6 +40771,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -38061,6 +40787,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38077,6 +40804,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38092,6 +40820,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -38119,6 +40848,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -38135,6 +40865,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38150,6 +40881,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -38173,6 +40905,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -38188,6 +40921,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38204,6 +40938,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38219,6 +40954,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -38242,6 +40978,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -38255,6 +40992,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38269,6 +41007,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38283,6 +41022,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38298,6 +41038,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -38323,6 +41064,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -38337,6 +41079,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38352,6 +41095,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -38375,6 +41119,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -38388,6 +41133,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38402,6 +41148,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38417,6 +41164,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -38440,6 +41188,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -38453,6 +41202,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38468,6 +41218,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -38491,6 +41242,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -38504,6 +41256,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38519,6 +41272,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -38544,6 +41298,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -38557,6 +41312,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38572,6 +41328,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -38597,6 +41354,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -38611,6 +41369,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38626,6 +41385,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -38651,6 +41411,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -38665,6 +41426,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38679,6 +41441,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38693,6 +41456,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38708,6 +41472,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -38730,6 +41495,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -38742,7 +41508,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -38755,7 +41522,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -38774,6 +41542,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -38786,7 +41555,8 @@ "SavedObjectsClientContract" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -38799,7 +41569,8 @@ "ISavedObjectTypeRegistry" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -38813,7 +41584,8 @@ "" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -38830,6 +41602,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -38841,7 +41614,8 @@ "\nIf true, all search contexts associated with the PIT id are\nsuccessfully closed." ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -38853,7 +41627,8 @@ "\nThe number of search contexts that have been successfully closed." ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -38872,6 +41647,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -38881,7 +41657,8 @@ "label": "id", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -38891,7 +41668,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -38912,6 +41690,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -38926,7 +41705,8 @@ "\"collectMultiNamespaceReferences\" | \"updateObjectsSpaces\" | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -38945,6 +41725,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -38958,7 +41739,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -38979,6 +41761,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -38993,7 +41776,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39008,7 +41792,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39023,7 +41808,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39039,7 +41825,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39054,7 +41841,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39068,7 +41856,8 @@ "[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39084,7 +41873,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39099,7 +41889,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39114,7 +41905,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -39131,6 +41923,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -39155,7 +41948,8 @@ ">; }" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -39176,6 +41970,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -39190,7 +41985,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -39211,6 +42007,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -39226,7 +42023,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39241,7 +42039,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -39262,6 +42061,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -39277,7 +42077,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -39298,6 +42099,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -39312,7 +42114,8 @@ "string[]" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39328,7 +42131,8 @@ "[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39343,7 +42147,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -39360,6 +42165,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -39371,7 +42177,8 @@ "id of the excluded object" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39383,7 +42190,8 @@ "type of the excluded object" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39398,7 +42206,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -39417,6 +42226,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -39428,7 +42238,8 @@ "number of successfully exported objects" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39440,7 +42251,8 @@ "number of missing references" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39456,7 +42268,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39468,7 +42281,8 @@ "number of objects that were excluded from the export" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39484,7 +42298,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -39503,6 +42318,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -39518,7 +42334,8 @@ "" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -39537,6 +42354,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -39549,7 +42367,8 @@ "string | string[]" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39562,7 +42381,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39575,7 +42395,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39588,7 +42409,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39602,7 +42424,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39617,7 +42440,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39632,7 +42456,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39647,7 +42472,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39662,7 +42488,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39677,7 +42504,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39695,7 +42523,8 @@ "[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39710,7 +42539,8 @@ "\"AND\" | \"OR\" | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39725,7 +42555,8 @@ "\"AND\" | \"OR\" | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39738,7 +42569,8 @@ "any" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39757,7 +42589,8 @@ "> | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39770,7 +42603,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39785,7 +42619,8 @@ "Map | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39800,7 +42635,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39816,7 +42652,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -39833,6 +42670,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -39842,7 +42680,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39852,7 +42691,8 @@ "label": "id", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -39872,6 +42712,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -39884,7 +42725,8 @@ "A | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39898,7 +42740,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39908,7 +42751,8 @@ "label": "total", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39918,7 +42762,8 @@ "label": "per_page", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39928,7 +42773,8 @@ "label": "page", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39941,7 +42787,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -39963,6 +42810,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -39974,7 +42822,8 @@ "\nThe Elasticsearch `_score` of this result." ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -39989,7 +42838,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -40008,6 +42858,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -40020,7 +42871,8 @@ "\"action_required\"" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40032,7 +42884,8 @@ "The translated message to display to the user." ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40044,7 +42897,8 @@ "The path (without the basePath) that the user should be redirect to address this warning." ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40059,7 +42913,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -40078,6 +42933,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -40090,7 +42946,8 @@ "\"ambiguous_conflict\"" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40103,7 +42960,8 @@ "{ id: string; title?: string | undefined; updatedAt?: string | undefined; }[]" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -40122,6 +42980,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -40134,7 +42993,8 @@ "\"conflict\"" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40147,7 +43007,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -40166,6 +43027,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -40175,7 +43037,8 @@ "label": "id", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40185,7 +43048,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40198,7 +43062,8 @@ "{ title?: string | undefined; icon?: string | undefined; }" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40213,7 +43078,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40234,7 +43100,8 @@ "SavedObjectsImportUnknownError" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -40253,6 +43120,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -40268,7 +43136,8 @@ "[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -40287,6 +43156,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -40299,7 +43169,8 @@ "\"missing_references\"" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40312,7 +43183,8 @@ "{ type: string; id: string; }[]" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -40331,6 +43203,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -40345,7 +43218,8 @@ "Readable" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40357,7 +43231,8 @@ "If true, will override existing object if present. Note: this has no effect when used with the `createNewCopies` option." ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40372,7 +43247,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40384,7 +43260,8 @@ "If true, will create new copies of import objects, each with a random `id` and undefined `originId`." ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40399,7 +43276,8 @@ "boolean | \"wait_for\" | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -40418,6 +43296,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -40427,7 +43306,8 @@ "label": "success", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40437,7 +43317,8 @@ "label": "successCount", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40451,7 +43332,8 @@ "[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40465,7 +43347,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40479,7 +43362,8 @@ "[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -40498,6 +43382,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -40507,7 +43392,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40517,7 +43403,8 @@ "label": "id", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40527,7 +43414,8 @@ "label": "overwrite", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40542,7 +43430,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40555,7 +43444,8 @@ "{ type: string; from: string; to: string; }[]" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40570,7 +43460,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40585,7 +43476,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -40604,6 +43496,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -40616,7 +43509,8 @@ "\"simple\"" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40628,7 +43522,8 @@ "The translated message to display to the user" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -40647,6 +43542,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -40656,7 +43552,8 @@ "label": "id", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40666,7 +43563,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40681,7 +43579,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40697,6 +43596,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "spaces", @@ -40719,7 +43619,8 @@ "{ title?: string | undefined; icon?: string | undefined; }" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40734,7 +43635,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -40753,6 +43655,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -40765,7 +43668,8 @@ "\"unknown\"" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40775,7 +43679,8 @@ "label": "message", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40785,7 +43690,8 @@ "label": "statusCode", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -40804,6 +43710,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -40816,7 +43723,8 @@ "\"unsupported_type\"" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -40833,6 +43741,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -40844,7 +43753,8 @@ "The field name to increment the counter by." ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40859,7 +43769,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -40878,6 +43789,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -40892,7 +43804,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40908,7 +43821,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40924,7 +43838,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -40939,7 +43854,8 @@ "Attributes | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -40958,6 +43874,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -40971,7 +43888,8 @@ "SavedObjectsFieldMapping" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -40988,6 +43906,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41001,6 +43920,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41014,6 +43934,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -41031,6 +43952,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41044,6 +43966,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -41064,6 +43987,7 @@ "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [ { "plugin": "maps", @@ -41099,6 +44023,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -41116,6 +44041,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41129,6 +44055,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -41150,6 +44077,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41163,6 +44091,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -41177,6 +44106,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -41199,6 +44129,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41211,7 +44142,8 @@ "[pluginName: string]: string" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -41228,6 +44160,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41242,7 +44175,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -41257,7 +44191,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -41272,7 +44207,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -41289,6 +44225,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41300,7 +44237,8 @@ "\nPIT ID returned from ES." ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -41317,6 +44255,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41326,7 +44265,8 @@ "label": "id", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -41339,7 +44279,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -41358,6 +44299,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41367,7 +44309,8 @@ "label": "_id", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -41380,7 +44323,8 @@ "SavedObjectsRawDocSource" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -41393,7 +44337,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -41406,7 +44351,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -41425,6 +44371,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41439,7 +44386,8 @@ "\"strict\" | \"lax\" | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -41456,6 +44404,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41465,7 +44414,8 @@ "label": "type", "description": [], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -41478,7 +44428,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -41491,7 +44442,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -41505,7 +44457,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -41518,7 +44471,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -41532,7 +44486,8 @@ "[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -41545,7 +44500,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -41558,7 +44514,8 @@ "[typeMapping: string]: any" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -41579,6 +44536,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41593,7 +44551,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -41614,6 +44573,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41625,7 +44585,8 @@ "The number of objects that have been updated by this operation" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -41644,6 +44605,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41662,6 +44624,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41676,6 +44639,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -41692,6 +44656,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -41712,6 +44677,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41727,6 +44693,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -41749,6 +44716,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41761,7 +44729,8 @@ "SavedObjectsClientContract" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -41774,7 +44743,8 @@ "ISavedObjectTypeRegistry" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -41791,6 +44761,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41805,6 +44776,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -41825,6 +44797,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41838,6 +44811,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -41858,6 +44832,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41871,6 +44846,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -41893,6 +44869,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41907,7 +44884,8 @@ "Readable" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -41923,7 +44901,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -41938,7 +44917,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -41950,7 +44930,8 @@ "If true, will create new copies of import objects, each with a random `id` and undefined `originId`." ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -41970,6 +44951,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -41985,7 +44967,8 @@ "" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42000,7 +44983,8 @@ "\"exactMatch\" | \"aliasMatch\" | \"conflict\"" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42015,7 +44999,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42030,7 +45015,8 @@ "\"savedObjectConversion\" | \"savedObjectImport\" | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -42049,6 +45035,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -42066,6 +45053,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -42079,6 +45067,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -42100,6 +45089,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -42113,6 +45103,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -42127,6 +45118,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -42141,6 +45133,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -42164,6 +45157,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -42178,6 +45172,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -42197,6 +45192,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -42217,6 +45213,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -42237,6 +45234,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -42251,6 +45249,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -42266,6 +45265,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -42288,6 +45288,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -42304,6 +45305,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -42320,6 +45322,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -42340,6 +45343,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -42355,6 +45359,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -42375,6 +45380,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -42395,6 +45401,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -42408,6 +45415,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -42430,6 +45438,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -42443,6 +45452,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -42463,6 +45473,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -42483,6 +45494,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -42495,7 +45507,8 @@ "{ [status: string]: number; skipped: number; migrated: number; }" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -42513,6 +45526,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -42524,7 +45538,8 @@ "\nThe name of the type, which is also used as the internal id." ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42536,7 +45551,8 @@ "\nIs the type hidden by default. If true, repositories will not have access to this type unless explicitly\ndeclared as an `extraType` when creating the repository.\n\nSee {@link SavedObjectsServiceStart.createInternalRepository | createInternalRepository}." ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42551,7 +45567,8 @@ "\"single\" | \"multiple\" | \"multiple-isolated\" | \"agnostic\"" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42566,7 +45583,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42581,7 +45599,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42597,7 +45616,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42612,7 +45632,8 @@ "SavedObjectsTypeMappingDefinition" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42630,7 +45651,8 @@ ") | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42648,7 +45670,8 @@ ") | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42663,7 +45686,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42679,7 +45703,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -42699,6 +45724,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -42713,7 +45739,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42728,7 +45755,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42743,7 +45771,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42758,7 +45787,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42773,7 +45803,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42791,6 +45822,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -42805,6 +45837,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -42826,6 +45859,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -42840,6 +45874,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -42861,6 +45896,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -42875,6 +45911,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -42896,7 +45933,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42912,7 +45950,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42928,7 +45967,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -42947,6 +45987,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -42961,7 +46002,8 @@ "false | \"strict\" | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -42976,7 +46018,8 @@ "SavedObjectsMappingProperties" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -42995,6 +46038,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43006,7 +46050,8 @@ "The type of the object to update" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43018,7 +46063,8 @@ "The ID of the object to update" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -43039,6 +46085,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43054,7 +46101,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -43073,6 +46121,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43086,7 +46135,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -43105,6 +46155,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43116,7 +46167,8 @@ "The type of the referenced object" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43128,7 +46180,8 @@ "The ID of the referenced object" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43143,7 +46196,8 @@ "string[]" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43159,7 +46213,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -43180,6 +46235,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43194,7 +46250,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43210,7 +46267,8 @@ "[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43226,7 +46284,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43241,7 +46300,8 @@ "Attributes | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43256,7 +46316,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -43278,6 +46339,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43290,7 +46352,8 @@ "{ [P in keyof T]?: T[P] | undefined; }" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43304,7 +46367,8 @@ "[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -43323,6 +46387,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43336,7 +46401,8 @@ "SavedObjectsValidationSpec" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -43356,6 +46422,7 @@ ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43370,7 +46437,8 @@ "Readonly<{ toString: () => \"available\"; valueOf: () => 0; toJSON: () => \"available\"; }> | Readonly<{ toString: () => \"degraded\"; valueOf: () => 1; toJSON: () => \"degraded\"; }> | Readonly<{ toString: () => \"unavailable\"; valueOf: () => 2; toJSON: () => \"unavailable\"; }> | Readonly<{ toString: () => \"critical\"; valueOf: () => 3; toJSON: () => \"critical\"; }>" ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43382,7 +46450,8 @@ "\nA high-level summary of the service status." ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43397,7 +46466,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43412,7 +46482,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43427,7 +46498,8 @@ "Meta | undefined" ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -43446,6 +46518,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43457,7 +46530,8 @@ "\nWhether the cookie is valid or not." ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43472,7 +46546,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -43492,6 +46567,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43507,6 +46583,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -43524,6 +46601,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43539,6 +46617,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -43558,6 +46637,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -43579,6 +46659,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43590,7 +46671,8 @@ "\nName of the session cookie." ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43602,7 +46684,8 @@ "\nA key used to encrypt a cookie's value. Should be at least 32 characters long." ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43619,6 +46702,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43632,6 +46716,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -43647,7 +46732,8 @@ "\nFlag indicating whether the cookie should be sent only via a secure connection." ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43662,7 +46748,8 @@ "\"None\" | \"Strict\" | \"Lax\" | undefined" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -43682,6 +46769,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43699,6 +46787,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43713,6 +46802,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -43736,6 +46826,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43747,7 +46838,8 @@ "\nThe shipper's unique name" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43763,6 +46855,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43778,6 +46871,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -43794,6 +46888,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -43813,6 +46908,7 @@ ], "path": "src/core/server/status/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43836,7 +46932,8 @@ ">" ], "path": "src/core/server/status/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43854,7 +46951,8 @@ ">" ], "path": "src/core/server/status/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43874,6 +46972,7 @@ ], "path": "src/core/server/status/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43890,6 +46989,7 @@ ], "path": "src/core/server/status/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -43911,7 +47011,8 @@ ">>" ], "path": "src/core/server/status/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43929,7 +47030,8 @@ ">" ], "path": "src/core/server/status/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43945,6 +47047,7 @@ ], "path": "src/core/server/status/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -43965,6 +47068,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -43979,7 +47083,8 @@ "\"failed\" | \"enqueued\" | \"sent_to_shipper\" | \"succeeded\" | \"dropped\"" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -43991,7 +47096,8 @@ "\nWho emitted the event? It can be \"client\" or the name of the shipper." ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44003,7 +47109,8 @@ "\nThe event type the success/failure/drop event refers to." ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44015,7 +47122,8 @@ "\nCode to provide additional information about the success or failure. Examples are 200/400/504/ValidationError/UnknownError" ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44027,7 +47135,8 @@ "\nThe number of events that this counter refers to." ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -44047,6 +47156,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -44061,7 +47171,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44076,7 +47187,8 @@ "T | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44091,7 +47203,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44106,7 +47219,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44121,7 +47235,8 @@ "string[] | number[] | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44136,7 +47251,8 @@ "Record | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44151,7 +47267,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44166,7 +47283,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44181,7 +47299,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44197,7 +47316,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44213,7 +47333,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44228,7 +47349,8 @@ "number | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44242,7 +47364,8 @@ "" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44260,6 +47383,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "advancedSettings", @@ -44293,6 +47417,7 @@ ], "path": "src/core/server/ui_settings/ui_settings_route_handler_context.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -44311,7 +47436,8 @@ } ], "path": "src/core/server/ui_settings/ui_settings_route_handler_context.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -44325,6 +47451,7 @@ "description": [], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -44342,6 +47469,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -44357,6 +47485,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -44374,6 +47503,7 @@ "description": [], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -44398,6 +47528,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -44411,6 +47542,7 @@ ], "path": "src/core/server/ui_settings/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -44431,6 +47563,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -44443,7 +47576,8 @@ "\"notHandled\"" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -44460,6 +47594,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -44473,7 +47608,8 @@ " & { statusCode: 401; }" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44487,7 +47623,8 @@ "" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -44504,6 +47641,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -44516,7 +47654,8 @@ "{ [x: string]: string | string[]; }" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -44535,6 +47674,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -44547,7 +47687,8 @@ "\"retry\"" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -44566,6 +47707,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -44582,6 +47724,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -44602,6 +47745,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -44615,6 +47759,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -44638,6 +47783,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "core", @@ -44650,7 +47796,8 @@ "T | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44663,7 +47810,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -44682,6 +47830,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -44698,6 +47847,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -44712,6 +47862,7 @@ ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -44732,6 +47883,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -44745,7 +47897,8 @@ "DeprecatedConfigDetails" ], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -44780,6 +47933,7 @@ ], "path": "node_modules/@types/kbn__core-analytics-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -44812,6 +47966,7 @@ ], "path": "node_modules/@types/kbn__core-analytics-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -44834,6 +47989,7 @@ ], "path": "node_modules/@types/kbn__core-analytics-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -44850,6 +48006,7 @@ ], "path": "node_modules/@types/kbn__core-application-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -44870,6 +48027,7 @@ ], "path": "node_modules/@types/kbn__core-logging-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -44900,6 +48058,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -44914,7 +48073,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44929,7 +48089,8 @@ "KibanaErrorResponseFactory" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -44942,7 +48103,8 @@ "AuthToolkit" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -44959,6 +48121,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -44977,6 +48140,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -44995,6 +48159,7 @@ ], "path": "node_modules/@types/kbn__core-capabilities-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -45021,6 +48186,7 @@ ], "path": "node_modules/@types/kbn__core-capabilities-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -45035,7 +48201,8 @@ "" ], "path": "node_modules/@types/kbn__core-capabilities-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -45048,7 +48215,8 @@ "Capabilities" ], "path": "node_modules/@types/kbn__core-capabilities-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -45058,7 +48226,8 @@ "label": "useDefaultCapabilities", "description": [], "path": "node_modules/@types/kbn__core-capabilities-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -45082,6 +48251,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -45097,7 +48267,8 @@ "{ readonly [x: string]: any; }" ], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -45107,7 +48278,8 @@ "label": "fromPath", "description": [], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -45123,6 +48295,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -45136,7 +48309,8 @@ "DeprecatedConfigDetails" ], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -45151,7 +48325,8 @@ "ConfigDeprecationContext" ], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -45174,6 +48349,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -45187,7 +48363,8 @@ "ConfigDeprecationFactory" ], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -45204,6 +48381,7 @@ ], "path": "node_modules/@types/kbn__config/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -45220,6 +48398,7 @@ ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -45236,6 +48415,7 @@ ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -45249,7 +48429,8 @@ "CoreIncrementCounterParams" ], "path": "node_modules/@types/kbn__core-usage-data-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -45275,6 +48456,7 @@ ], "path": "src/core/server/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -45291,6 +48473,7 @@ ], "path": "node_modules/@types/kbn__core-deprecations-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -45307,6 +48490,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -45321,6 +48505,7 @@ ], "path": "node_modules/@types/kbn__core-doc-links-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -45412,6 +48597,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -45426,6 +48612,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -45440,6 +48627,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -45454,6 +48642,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -45468,6 +48657,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -46672,6 +49862,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -46688,6 +49879,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -46702,6 +49894,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -46726,6 +49919,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -46748,6 +49942,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [ "authentication headers {@link AuthHeaders } for - an incoming request." ], @@ -46766,7 +49961,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -46789,6 +49985,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -46805,7 +50002,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -46826,6 +50024,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -46842,6 +50041,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -46855,7 +50055,8 @@ "T" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -46868,7 +50069,8 @@ "any[]" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -46887,6 +50089,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -46903,6 +50106,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -46947,6 +50151,7 @@ ], "path": "src/core/server/http_resources/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -46962,7 +50167,8 @@ "Context" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -46978,7 +50184,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -46993,7 +50200,8 @@ "ResponseFactory" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -47012,6 +50220,7 @@ ], "path": "src/core/server/http_resources/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -47030,6 +50239,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -47052,6 +50262,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [ "The context value associated with this key. May also return a Promise which will be resolved before\nattaching to the context object." ], @@ -47069,7 +50280,8 @@ "{ [P in Exclude]: Context[P]; }" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -47088,7 +50300,8 @@ "]" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -47109,6 +50322,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -47125,7 +50339,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -47144,6 +50359,7 @@ ], "path": "node_modules/@types/kbn__core-execution-context-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -47164,6 +50380,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -47191,6 +50408,7 @@ ], "path": "node_modules/@types/kbn__core-http-router-server-internal/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -47220,6 +50438,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -47236,6 +50455,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -47254,6 +50474,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -47336,6 +50557,7 @@ ], "path": "node_modules/@types/kbn__logging/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -47360,6 +50582,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -47376,6 +50599,7 @@ ], "path": "node_modules/@types/kbn__core-metrics-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -47392,6 +50616,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -47422,6 +50647,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -47436,7 +50662,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -47451,7 +50678,8 @@ "KibanaErrorResponseFactory" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -47464,7 +50692,8 @@ "OnPostAuthToolkit" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -47497,6 +50726,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -47511,7 +50741,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -47526,7 +50757,8 @@ "KibanaErrorResponseFactory" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -47539,7 +50771,8 @@ "OnPreAuthToolkit" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -47568,6 +50801,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -47582,7 +50816,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -47595,7 +50830,8 @@ "OnPreResponseInfo" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -47608,7 +50844,8 @@ "OnPreResponseToolkit" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -47641,6 +50878,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -47655,7 +50893,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -47670,7 +50909,8 @@ "KibanaErrorResponseFactory" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -47683,7 +50923,8 @@ "OnPreRoutingToolkit" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -47703,6 +50944,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -47751,6 +50993,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -47771,7 +51014,8 @@ "" ], "path": "src/core/server/plugins/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -47790,6 +51034,7 @@ ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -47804,6 +51049,7 @@ ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -47821,6 +51067,7 @@ ], "path": "src/core/server/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -47843,6 +51090,7 @@ ], "path": "src/core/server/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -47856,7 +51104,8 @@ "Context" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -47870,7 +51119,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -47883,7 +51133,8 @@ "ResponseFactory" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -47903,6 +51154,7 @@ ], "path": "src/core/server/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -47923,6 +51175,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -47940,6 +51193,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -47962,6 +51216,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -47977,7 +51232,8 @@ "Context" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -47993,7 +51249,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -48008,7 +51265,8 @@ "ResponseFactory" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -48041,6 +51299,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -48061,6 +51320,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -48074,7 +51334,8 @@ "Context" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -48088,7 +51349,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -48101,7 +51363,8 @@ "ResponseFactory" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -48124,6 +51387,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48140,6 +51404,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48156,6 +51421,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48172,6 +51438,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48190,6 +51457,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48212,6 +51480,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -48226,7 +51495,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -48248,6 +51518,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -48261,7 +51532,8 @@ "Context" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -48275,7 +51547,8 @@ "" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -48288,7 +51561,8 @@ "ResponseFactory" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -48313,6 +51587,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -48326,7 +51601,8 @@ "any" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -48339,7 +51615,8 @@ "RouteValidationResultFactory" ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -48363,6 +51640,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48381,6 +51659,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48397,6 +51676,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48416,6 +51696,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48434,6 +51715,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48456,6 +51738,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -48472,7 +51755,8 @@ "[] | undefined; }" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -48485,7 +51769,8 @@ "SavedObjectMigrationContext" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -48507,6 +51792,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48526,6 +51812,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -48541,7 +51828,8 @@ "; includedHiddenTypes?: string[] | undefined; }" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -48563,6 +51851,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -48576,7 +51865,8 @@ "SavedObjectsRepositoryFactory" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -48598,6 +51888,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -48611,7 +51902,8 @@ "SavedObjectsClientWrapperOptions" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -48628,6 +51920,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48650,6 +51943,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-api-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48674,6 +51968,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -48687,7 +51982,8 @@ "SavedObjectsExportTransformContext" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -48701,7 +51997,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -48723,6 +52020,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48745,6 +52043,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -48759,7 +52058,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -48780,6 +52080,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48796,6 +52097,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48813,6 +52115,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48837,6 +52140,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -48852,7 +52156,8 @@ ", \"search\">; }" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -48874,6 +52179,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48893,6 +52199,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48909,6 +52216,7 @@ ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48929,6 +52237,7 @@ ], "path": "src/core/server/plugins/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48953,6 +52262,7 @@ ], "path": "src/core/server/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -48971,6 +52281,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48987,6 +52298,7 @@ ], "path": "node_modules/@types/kbn__core-ui-settings-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -49011,6 +52323,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -49024,7 +52337,8 @@ "UnauthorizedErrorHandlerOptions" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "core", @@ -49037,7 +52351,8 @@ "UnauthorizedErrorHandlerToolkit" ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -49056,6 +52371,7 @@ ], "path": "node_modules/@types/kbn__core-elasticsearch-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -49074,6 +52390,7 @@ ], "path": "node_modules/@types/kbn__core-application-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -49090,6 +52407,7 @@ ], "path": "node_modules/@types/kbn__core-base-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -49106,6 +52424,7 @@ ], "path": "node_modules/@types/kbn__core-http-server/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/core.mdx b/api_docs/core.mdx index eb65d083535d0..541ca6affdbc5 100644 --- a/api_docs/core.mdx +++ b/api_docs/core.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/core title: "core" image: https://source.unsplash.com/400x175/?github description: API docs for the core plugin -date: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'core'] --- import coreObj from './core.devdocs.json'; @@ -21,7 +21,7 @@ Contact [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) for que | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 2655 | 1 | 61 | 2 | +| 2657 | 1 | 61 | 2 | ## Client diff --git a/api_docs/custom_integrations.devdocs.json b/api_docs/custom_integrations.devdocs.json index a56430796e324..b808444c5bd7a 100644 --- a/api_docs/custom_integrations.devdocs.json +++ b/api_docs/custom_integrations.devdocs.json @@ -33,6 +33,7 @@ ], "path": "src/plugins/custom_integrations/public/services/find.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "customIntegrations", @@ -53,6 +54,7 @@ ], "path": "src/plugins/custom_integrations/public/services/find.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -67,6 +69,7 @@ ], "path": "src/plugins/custom_integrations/public/services/find.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -89,6 +92,7 @@ ], "path": "src/plugins/custom_integrations/public/components/index.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -102,7 +106,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -121,6 +126,7 @@ ], "path": "src/plugins/custom_integrations/public/components/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "customIntegrations", @@ -136,6 +142,7 @@ ], "path": "src/plugins/custom_integrations/public/components/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -152,6 +159,7 @@ ], "path": "src/plugins/custom_integrations/public/components/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -172,6 +180,7 @@ "description": [], "path": "src/plugins/custom_integrations/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "customIntegrations", @@ -193,6 +202,7 @@ ], "path": "src/plugins/custom_integrations/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -216,6 +226,7 @@ ], "path": "src/plugins/custom_integrations/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -232,6 +243,7 @@ "description": [], "path": "src/plugins/custom_integrations/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "customIntegrations", @@ -245,6 +257,7 @@ ], "path": "src/plugins/custom_integrations/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -258,7 +271,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -271,7 +285,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -295,6 +310,7 @@ ], "path": "src/plugins/custom_integrations/common/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "customIntegrations", @@ -304,7 +320,8 @@ "label": "id", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -314,7 +331,8 @@ "label": "title", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -324,7 +342,8 @@ "label": "description", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -337,7 +356,8 @@ "\"ui_link\"" ], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -347,7 +367,8 @@ "label": "uiInternalPath", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -360,7 +381,8 @@ "string | undefined" ], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -370,7 +392,8 @@ "label": "isBeta", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -390,7 +413,8 @@ "[]" ], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -403,7 +427,8 @@ "(\"custom\" | \"enterprise_search\" | \"sample_data\" | \"aws\" | \"azure\" | \"cloud\" | \"config_management\" | \"containers\" | \"crm\" | \"datastore\" | \"elastic_stack\" | \"google_cloud\" | \"kubernetes\" | \"languages\" | \"message_queue\" | \"microsoft_365\" | \"monitoring\" | \"network\" | \"notification\" | \"os_system\" | \"productivity\" | \"security\" | \"support\" | \"threat_intel\" | \"ticketing\" | \"version_control\" | \"web\" | \"communications\" | \"file_storage\" | \"language_client\" | \"upload_file\" | \"website_search\" | \"geo\")[]" ], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -416,7 +441,8 @@ "\"beats\" | \"enterprise_search\" | \"language_clients\" | \"other\" | \"sample_data\" | \"tests\" | \"tutorial\" | \"placeholders\"" ], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -429,7 +455,8 @@ "string | undefined" ], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -451,6 +478,7 @@ ], "path": "src/plugins/custom_integrations/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -464,6 +492,7 @@ "description": [], "path": "src/plugins/custom_integrations/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "customIntegrations", @@ -485,6 +514,7 @@ ], "path": "src/plugins/custom_integrations/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "customIntegrations", @@ -506,6 +536,7 @@ ], "path": "src/plugins/custom_integrations/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -531,6 +562,7 @@ ], "path": "src/plugins/custom_integrations/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -547,6 +579,7 @@ "description": [], "path": "src/plugins/custom_integrations/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true @@ -567,6 +600,7 @@ ], "path": "src/plugins/custom_integrations/common/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "customIntegrations", @@ -576,7 +610,8 @@ "label": "id", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -586,7 +621,8 @@ "label": "title", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -596,7 +632,8 @@ "label": "description", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -609,7 +646,8 @@ "\"ui_link\"" ], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -619,7 +657,8 @@ "label": "uiInternalPath", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -632,7 +671,8 @@ "string | undefined" ], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -642,7 +682,8 @@ "label": "isBeta", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -662,7 +703,8 @@ "[]" ], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -675,7 +717,8 @@ "(\"custom\" | \"enterprise_search\" | \"sample_data\" | \"aws\" | \"azure\" | \"cloud\" | \"config_management\" | \"containers\" | \"crm\" | \"datastore\" | \"elastic_stack\" | \"google_cloud\" | \"kubernetes\" | \"languages\" | \"message_queue\" | \"microsoft_365\" | \"monitoring\" | \"network\" | \"notification\" | \"os_system\" | \"productivity\" | \"security\" | \"support\" | \"threat_intel\" | \"ticketing\" | \"version_control\" | \"web\" | \"communications\" | \"file_storage\" | \"language_client\" | \"upload_file\" | \"website_search\" | \"geo\")[]" ], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -688,7 +731,8 @@ "\"beats\" | \"enterprise_search\" | \"language_clients\" | \"other\" | \"sample_data\" | \"tests\" | \"tutorial\" | \"placeholders\"" ], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -701,7 +745,8 @@ "string | undefined" ], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -717,6 +762,7 @@ ], "path": "src/plugins/custom_integrations/common/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "customIntegrations", @@ -726,7 +772,8 @@ "label": "src", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -739,7 +786,8 @@ "\"eui\" | \"svg\"" ], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -755,6 +803,7 @@ ], "path": "src/plugins/custom_integrations/common/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "customIntegrations", @@ -764,7 +813,8 @@ "label": "count", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -777,7 +827,8 @@ "\"custom\" | \"enterprise_search\" | \"sample_data\" | \"aws\" | \"azure\" | \"cloud\" | \"config_management\" | \"containers\" | \"crm\" | \"datastore\" | \"elastic_stack\" | \"google_cloud\" | \"kubernetes\" | \"languages\" | \"message_queue\" | \"microsoft_365\" | \"monitoring\" | \"network\" | \"notification\" | \"os_system\" | \"productivity\" | \"security\" | \"support\" | \"threat_intel\" | \"ticketing\" | \"version_control\" | \"web\" | \"communications\" | \"file_storage\" | \"language_client\" | \"upload_file\" | \"website_search\" | \"geo\"" ], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -799,6 +850,7 @@ ], "path": "src/plugins/custom_integrations/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -815,6 +867,7 @@ ], "path": "src/plugins/custom_integrations/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -829,6 +882,7 @@ ], "path": "src/plugins/custom_integrations/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -843,6 +897,7 @@ ], "path": "src/plugins/custom_integrations/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -854,6 +909,7 @@ "description": [], "path": "src/plugins/custom_integrations/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -865,6 +921,7 @@ "description": [], "path": "src/plugins/custom_integrations/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -881,6 +938,7 @@ ], "path": "src/plugins/custom_integrations/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -897,6 +955,7 @@ ], "path": "src/plugins/custom_integrations/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -912,6 +971,7 @@ ], "path": "src/plugins/custom_integrations/common/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "customIntegrations", @@ -921,7 +981,8 @@ "label": "aws", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -931,7 +992,8 @@ "label": "azure", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -941,7 +1003,8 @@ "label": "cloud", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -951,7 +1014,8 @@ "label": "config_management", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -961,7 +1025,8 @@ "label": "containers", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -971,7 +1036,8 @@ "label": "crm", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -981,7 +1047,8 @@ "label": "custom", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -991,7 +1058,8 @@ "label": "datastore", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1001,7 +1069,8 @@ "label": "elastic_stack", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1011,7 +1080,8 @@ "label": "google_cloud", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1021,7 +1091,8 @@ "label": "kubernetes", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1031,7 +1102,8 @@ "label": "languages", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1041,7 +1113,8 @@ "label": "message_queue", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1051,7 +1124,8 @@ "label": "microsoft_365", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1061,7 +1135,8 @@ "label": "monitoring", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1071,7 +1146,8 @@ "label": "network", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1081,7 +1157,8 @@ "label": "notification", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1091,7 +1168,8 @@ "label": "os_system", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1101,7 +1179,8 @@ "label": "productivity", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1111,7 +1190,8 @@ "label": "security", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1121,7 +1201,8 @@ "label": "sample_data", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1131,7 +1212,8 @@ "label": "support", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1141,7 +1223,8 @@ "label": "threat_intel", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1151,7 +1234,8 @@ "label": "ticketing", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1161,7 +1245,8 @@ "label": "version_control", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1171,7 +1256,8 @@ "label": "web", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1183,7 +1269,8 @@ "// Kibana added" ], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1193,7 +1280,8 @@ "label": "enterprise_search", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1203,7 +1291,8 @@ "label": "file_storage", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1213,7 +1302,8 @@ "label": "language_client", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1223,7 +1313,8 @@ "label": "upload_file", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1233,7 +1324,8 @@ "label": "website_search", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1243,7 +1335,8 @@ "label": "geo", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1259,6 +1352,7 @@ ], "path": "src/plugins/custom_integrations/common/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "customIntegrations", @@ -1268,7 +1362,8 @@ "label": "beats", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1278,7 +1373,8 @@ "label": "enterprise_search", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1288,7 +1384,8 @@ "label": "language_clients", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1298,7 +1395,8 @@ "label": "other", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1308,7 +1406,8 @@ "label": "sample_data", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1318,7 +1417,8 @@ "label": "tests", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1328,7 +1428,8 @@ "label": "tutorial", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "customIntegrations", @@ -1338,7 +1439,8 @@ "label": "placeholders", "description": [], "path": "src/plugins/custom_integrations/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/custom_integrations.mdx b/api_docs/custom_integrations.mdx index 6a37d9fbfd101..d2c87cab417d3 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'customIntegrations'] --- import customIntegrationsObj from './custom_integrations.devdocs.json'; diff --git a/api_docs/dashboard.devdocs.json b/api_docs/dashboard.devdocs.json index 32fc71a5d5c4c..7af8bf23811e4 100644 --- a/api_docs/dashboard.devdocs.json +++ b/api_docs/dashboard.devdocs.json @@ -47,6 +47,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -59,7 +60,8 @@ "\"dashboard\"" ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -79,7 +81,8 @@ " | undefined" ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -103,6 +106,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "An array of dataviews" @@ -130,6 +134,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -152,6 +157,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -169,6 +175,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -184,6 +191,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -199,6 +207,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -218,6 +227,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -232,6 +242,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -269,6 +280,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -298,6 +310,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -343,6 +356,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -365,6 +379,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -379,6 +394,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -408,6 +424,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -429,6 +446,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -444,6 +462,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -458,6 +477,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -493,6 +513,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -515,6 +536,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -537,6 +559,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -551,6 +574,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -624,6 +648,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -637,6 +662,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -651,6 +677,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -665,6 +692,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -682,6 +710,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -695,6 +724,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -712,6 +742,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -728,6 +759,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -741,6 +773,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -802,6 +835,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -814,7 +848,8 @@ "true" ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container_factory.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -827,7 +862,8 @@ "\"dashboard\"" ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container_factory.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -858,6 +894,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container_factory.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -871,7 +908,8 @@ "P" ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -885,7 +923,8 @@ "[]" ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -919,6 +958,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container_factory.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -932,7 +972,8 @@ "P" ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -948,6 +989,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -963,6 +1005,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container_factory.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -983,6 +1026,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container_factory.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1000,6 +1044,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1015,6 +1060,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1038,6 +1084,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1101,6 +1148,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container_factory.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -1120,6 +1168,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container_factory.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1157,6 +1206,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_container_factory.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1179,6 +1229,7 @@ ], "path": "src/plugins/dashboard/public/locator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -1192,6 +1243,7 @@ ], "path": "src/plugins/dashboard/public/locator.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1210,6 +1262,7 @@ ], "path": "src/plugins/dashboard/public/dashboard_constants.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -1223,6 +1276,7 @@ ], "path": "src/plugins/dashboard/public/dashboard_constants.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1237,6 +1291,7 @@ ], "path": "src/plugins/dashboard/public/dashboard_constants.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1272,6 +1327,7 @@ ], "path": "src/plugins/dashboard/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -1285,7 +1341,8 @@ " | undefined" ], "path": "src/plugins/dashboard/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1305,7 +1362,8 @@ " | undefined" ], "path": "src/plugins/dashboard/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1325,7 +1383,8 @@ " | undefined" ], "path": "src/plugins/dashboard/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1338,7 +1397,8 @@ "boolean | undefined" ], "path": "src/plugins/dashboard/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1348,7 +1408,8 @@ "label": "isFullScreenMode", "description": [], "path": "src/plugins/dashboard/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1361,7 +1422,8 @@ "string | undefined" ], "path": "src/plugins/dashboard/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1374,7 +1436,22 @@ "{ from: string; to: string; mode?: \"absolute\" | \"relative\" | undefined; }" ], "path": "src/plugins/dashboard/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "dashboard", + "id": "def-public.DashboardContainerInput.timeslice", + "type": "Object", + "tags": [], + "label": "timeslice", + "description": [], + "signature": [ + "[number, number] | undefined" + ], + "path": "src/plugins/dashboard/public/types.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1384,7 +1461,8 @@ "label": "timeRestore", "description": [], "path": "src/plugins/dashboard/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1397,7 +1475,8 @@ "string | undefined" ], "path": "src/plugins/dashboard/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1407,7 +1486,8 @@ "label": "useMargins", "description": [], "path": "src/plugins/dashboard/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1420,7 +1500,8 @@ "boolean | undefined" ], "path": "src/plugins/dashboard/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1433,7 +1514,8 @@ "boolean | undefined" ], "path": "src/plugins/dashboard/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1452,7 +1534,8 @@ } ], "path": "src/plugins/dashboard/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1466,7 +1549,8 @@ "[]" ], "path": "src/plugins/dashboard/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1476,7 +1560,8 @@ "label": "title", "description": [], "path": "src/plugins/dashboard/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1489,7 +1574,8 @@ "{ query: string | { [key: string]: any; }; language: string; }" ], "path": "src/plugins/dashboard/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1512,7 +1598,8 @@ " & { [k: string]: unknown; }>; }" ], "path": "src/plugins/dashboard/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1526,7 +1613,8 @@ " | undefined" ], "path": "src/plugins/dashboard/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1540,6 +1628,7 @@ "description": [], "path": "src/plugins/dashboard/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -1549,7 +1638,8 @@ "label": "allowByValueEmbeddables", "description": [], "path": "src/plugins/dashboard/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1580,6 +1670,7 @@ ], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -1592,7 +1683,8 @@ "string | undefined" ], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1602,7 +1694,8 @@ "label": "timeRestore", "description": [], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1615,7 +1708,8 @@ "string | undefined" ], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1628,7 +1722,8 @@ "string | undefined" ], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1641,7 +1736,8 @@ "string | undefined" ], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1651,7 +1747,8 @@ "label": "panelsJSON", "description": [], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1664,7 +1761,8 @@ "string | undefined" ], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1677,7 +1775,8 @@ "string | undefined" ], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1687,7 +1786,8 @@ "label": "lastSavedTitle", "description": [], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1707,7 +1807,8 @@ " | undefined" ], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1942,7 +2043,8 @@ "; parseActiveIndexPatternFromQueryString: (queryString: string) => string[]; }" ], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -1957,6 +2059,7 @@ ], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1974,6 +2077,7 @@ ], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1989,6 +2093,7 @@ ], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -2002,6 +2107,7 @@ ], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2018,7 +2124,8 @@ "\"exactMatch\" | \"aliasMatch\" | \"conflict\" | undefined" ], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -2031,7 +2138,8 @@ "string | undefined" ], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -2044,7 +2152,8 @@ "\"savedObjectConversion\" | \"savedObjectImport\" | undefined" ], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -2065,7 +2174,8 @@ ", \"id\"> | undefined" ], "path": "src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2085,6 +2195,7 @@ ], "path": "src/plugins/dashboard/public/application/embeddable/dashboard_constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2114,6 +2225,7 @@ ], "path": "src/plugins/dashboard/public/locator.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2170,6 +2282,7 @@ ], "path": "src/plugins/dashboard/public/locator.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2194,6 +2307,7 @@ ], "path": "src/plugins/dashboard/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -2207,6 +2321,7 @@ "description": [], "path": "src/plugins/dashboard/public/dashboard_constants.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -2216,7 +2331,8 @@ "label": "LANDING_PAGE_PATH", "description": [], "path": "src/plugins/dashboard/public/dashboard_constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -2226,7 +2342,8 @@ "label": "CREATE_NEW_DASHBOARD_URL", "description": [], "path": "src/plugins/dashboard/public/dashboard_constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -2236,7 +2353,8 @@ "label": "VIEW_DASHBOARD_URL", "description": [], "path": "src/plugins/dashboard/public/dashboard_constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -2246,7 +2364,8 @@ "label": "PRINT_DASHBOARD_URL", "description": [], "path": "src/plugins/dashboard/public/dashboard_constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -2256,7 +2375,8 @@ "label": "ADD_EMBEDDABLE_ID", "description": [], "path": "src/plugins/dashboard/public/dashboard_constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -2266,7 +2386,8 @@ "label": "ADD_EMBEDDABLE_TYPE", "description": [], "path": "src/plugins/dashboard/public/dashboard_constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -2276,7 +2397,8 @@ "label": "DASHBOARDS_ID", "description": [], "path": "src/plugins/dashboard/public/dashboard_constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -2286,7 +2408,8 @@ "label": "DASHBOARD_ID", "description": [], "path": "src/plugins/dashboard/public/dashboard_constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -2296,7 +2419,8 @@ "label": "SEARCH_SESSION_ID", "description": [], "path": "src/plugins/dashboard/public/dashboard_constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -2306,7 +2430,8 @@ "label": "CHANGE_CHECK_DEBOUNCE", "description": [], "path": "src/plugins/dashboard/public/dashboard_constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -2316,7 +2441,8 @@ "label": "CHANGE_APPLY_DEBOUNCE", "description": [], "path": "src/plugins/dashboard/public/dashboard_constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2331,6 +2457,7 @@ "description": [], "path": "src/plugins/dashboard/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -2350,7 +2477,8 @@ " | undefined" ], "path": "src/plugins/dashboard/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -2365,6 +2493,7 @@ "description": [], "path": "src/plugins/dashboard/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -2379,6 +2508,7 @@ ], "path": "src/plugins/dashboard/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2394,6 +2524,7 @@ ], "path": "src/plugins/dashboard/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2415,7 +2546,8 @@ " | undefined" ], "path": "src/plugins/dashboard/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -2434,7 +2566,8 @@ } ], "path": "src/plugins/dashboard/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", @@ -2460,6 +2593,7 @@ ], "path": "src/plugins/dashboard/server/usage/find_by_value_embeddables.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -2475,6 +2609,7 @@ ], "path": "src/plugins/dashboard/server/usage/find_by_value_embeddables.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2489,6 +2624,7 @@ ], "path": "src/plugins/dashboard/server/usage/find_by_value_embeddables.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2509,6 +2645,7 @@ "description": [], "path": "src/plugins/dashboard/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -2522,6 +2659,7 @@ "description": [], "path": "src/plugins/dashboard/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true @@ -2592,6 +2730,7 @@ ], "path": "src/plugins/dashboard/common/migrate_to_730_panels.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -2645,6 +2784,7 @@ ], "path": "src/plugins/dashboard/common/migrate_to_730_panels.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2659,6 +2799,7 @@ ], "path": "src/plugins/dashboard/common/migrate_to_730_panels.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2673,6 +2814,7 @@ ], "path": "src/plugins/dashboard/common/migrate_to_730_panels.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2684,6 +2826,7 @@ "description": [], "path": "src/plugins/dashboard/common/migrate_to_730_panels.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -2697,7 +2840,8 @@ "SerializableRecord" ], "path": "src/plugins/dashboard/common/migrate_to_730_panels.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2733,6 +2877,7 @@ ], "path": "src/plugins/dashboard/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -2755,7 +2900,8 @@ " & { [k: string]: unknown; }>; }" ], "path": "src/plugins/dashboard/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboard", @@ -2775,7 +2921,8 @@ " | undefined" ], "path": "src/plugins/dashboard/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2795,6 +2942,7 @@ ], "path": "src/plugins/dashboard/common/bwc/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2809,6 +2957,7 @@ ], "path": "src/plugins/dashboard/common/bwc/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2823,6 +2972,7 @@ ], "path": "src/plugins/dashboard/common/bwc/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2837,6 +2987,7 @@ ], "path": "src/plugins/dashboard/common/embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2853,6 +3004,7 @@ ], "path": "src/plugins/dashboard/common/bwc/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2869,6 +3021,7 @@ ], "path": "src/plugins/dashboard/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2885,6 +3038,7 @@ ], "path": "src/plugins/dashboard/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2901,6 +3055,7 @@ ], "path": "src/plugins/dashboard/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2917,6 +3072,7 @@ ], "path": "src/plugins/dashboard/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2939,6 +3095,7 @@ ], "path": "src/plugins/dashboard/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2955,6 +3112,7 @@ ], "path": "src/plugins/dashboard/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -2968,6 +3126,7 @@ "description": [], "path": "src/plugins/dashboard/common/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboard", @@ -2977,7 +3136,8 @@ "label": "ENABLE_LABS_UI", "description": [], "path": "src/plugins/dashboard/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/dashboard.mdx b/api_docs/dashboard.mdx index 642275cd67aac..9cc5265026ffb 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dashboard'] --- import dashboardObj from './dashboard.devdocs.json'; @@ -21,7 +21,7 @@ Contact [Kibana Presentation](https://github.com/orgs/elastic/teams/kibana-prese | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 146 | 0 | 141 | 12 | +| 147 | 0 | 142 | 12 | ## Client diff --git a/api_docs/dashboard_enhanced.devdocs.json b/api_docs/dashboard_enhanced.devdocs.json index 33137ff371963..f7bbdf3221136 100644 --- a/api_docs/dashboard_enhanced.devdocs.json +++ b/api_docs/dashboard_enhanced.devdocs.json @@ -45,6 +45,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboardEnhanced", @@ -58,6 +59,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboardEnhanced", @@ -77,6 +79,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -90,7 +93,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboardEnhanced", @@ -104,6 +108,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -129,6 +134,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboardEnhanced", @@ -148,6 +154,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -162,6 +169,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -176,6 +184,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -192,7 +201,8 @@ "100" ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboardEnhanced", @@ -206,6 +216,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -220,7 +231,8 @@ "\"dashboardApp\"" ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboardEnhanced", @@ -266,6 +278,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -281,6 +294,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -311,6 +325,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboardEnhanced", @@ -330,6 +345,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -355,6 +371,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboardEnhanced", @@ -374,6 +391,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -388,6 +406,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -413,6 +432,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboardEnhanced", @@ -432,6 +452,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -446,6 +467,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -477,7 +499,8 @@ ">" ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -494,6 +517,7 @@ "description": [], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboardEnhanced", @@ -539,6 +563,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/abstract_dashboard_drilldown.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -554,6 +579,7 @@ "description": [], "path": "x-pack/plugins/dashboard_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboardEnhanced", @@ -572,7 +598,8 @@ } ], "path": "x-pack/plugins/dashboard_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboardEnhanced", @@ -591,7 +618,8 @@ } ], "path": "x-pack/plugins/dashboard_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboardEnhanced", @@ -632,7 +660,8 @@ ") => void; }" ], "path": "x-pack/plugins/dashboard_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -646,6 +675,7 @@ "description": [], "path": "x-pack/plugins/dashboard_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboardEnhanced", @@ -664,7 +694,8 @@ } ], "path": "x-pack/plugins/dashboard_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboardEnhanced", @@ -683,7 +714,8 @@ } ], "path": "x-pack/plugins/dashboard_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboardEnhanced", @@ -702,7 +734,8 @@ } ], "path": "x-pack/plugins/dashboard_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboardEnhanced", @@ -735,7 +768,8 @@ ">): void; }" ], "path": "x-pack/plugins/dashboard_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dashboardEnhanced", @@ -754,7 +788,8 @@ } ], "path": "x-pack/plugins/dashboard_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -774,6 +809,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/public/services/drilldowns/abstract_dashboard_drilldown/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -787,6 +823,7 @@ "description": [], "path": "x-pack/plugins/dashboard_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -800,6 +837,7 @@ "description": [], "path": "x-pack/plugins/dashboard_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true @@ -818,6 +856,7 @@ "description": [], "path": "x-pack/plugins/dashboard_enhanced/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboardEnhanced", @@ -836,7 +875,8 @@ } ], "path": "x-pack/plugins/dashboard_enhanced/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -850,6 +890,7 @@ "description": [], "path": "x-pack/plugins/dashboard_enhanced/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboardEnhanced", @@ -862,7 +903,8 @@ "void" ], "path": "x-pack/plugins/dashboard_enhanced/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -880,6 +922,7 @@ "description": [], "path": "x-pack/plugins/dashboard_enhanced/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -893,6 +936,7 @@ "description": [], "path": "x-pack/plugins/dashboard_enhanced/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true @@ -931,6 +975,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/dashboard_drilldown_persistable_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboardEnhanced", @@ -941,6 +986,7 @@ "description": [], "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/dashboard_drilldown_persistable_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboardEnhanced", @@ -950,7 +996,8 @@ "label": "drilldownId", "description": [], "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/dashboard_drilldown_persistable_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -987,6 +1034,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/dashboard_drilldown_persistable_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboardEnhanced", @@ -997,6 +1045,7 @@ "description": [], "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/dashboard_drilldown_persistable_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dashboardEnhanced", @@ -1006,7 +1055,8 @@ "label": "drilldownId", "description": [], "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/dashboard_drilldown_persistable_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1030,6 +1080,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1046,6 +1097,7 @@ ], "path": "x-pack/plugins/dashboard_enhanced/common/drilldowns/dashboard_drilldown/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/dashboard_enhanced.mdx b/api_docs/dashboard_enhanced.mdx index 5e26707389312..45a942a1b27f0 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dashboardEnhanced'] --- import dashboardEnhancedObj from './dashboard_enhanced.devdocs.json'; diff --git a/api_docs/data.devdocs.json b/api_docs/data.devdocs.json index 6bfc1b0a442f8..bd569dc580afc 100644 --- a/api_docs/data.devdocs.json +++ b/api_docs/data.devdocs.json @@ -11,6 +11,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -28,6 +29,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -43,6 +45,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -74,6 +77,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -94,6 +98,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -118,7 +123,8 @@ } ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -128,7 +134,8 @@ "label": "id", "description": [], "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -138,7 +145,8 @@ "label": "enabled", "description": [], "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -151,7 +159,8 @@ "any" ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -171,7 +180,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -184,7 +194,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -197,7 +208,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -211,6 +223,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -230,6 +243,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -250,6 +264,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -271,6 +286,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -286,6 +302,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -303,6 +320,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -316,6 +334,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -333,6 +352,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -348,6 +368,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -371,6 +392,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -391,6 +413,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -408,6 +431,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -423,6 +447,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -436,6 +461,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -450,6 +476,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -487,6 +514,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -506,6 +534,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -527,6 +556,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -556,6 +586,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -578,6 +609,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -599,6 +631,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "Returns a serialized representation of an AggConfig." @@ -621,6 +654,7 @@ "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": true, "removeBy": "8.1", + "trackAdoption": false, "references": [], "children": [], "returnComment": [] @@ -657,6 +691,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -680,6 +715,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "Returns an ExpressionAst representing the this agg type." @@ -713,6 +749,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -736,6 +773,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -759,6 +797,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -774,6 +813,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -787,6 +827,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -804,6 +845,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -819,6 +861,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -832,6 +875,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -846,6 +890,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -863,6 +908,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -878,6 +924,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -895,6 +942,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -910,6 +958,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -923,6 +972,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -947,6 +997,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -964,6 +1015,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -979,6 +1031,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -994,6 +1047,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1039,7 +1093,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -1083,7 +1138,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -1105,6 +1161,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1124,6 +1181,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1141,6 +1199,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1154,7 +1213,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -1167,7 +1227,8 @@ "string[] | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -1180,7 +1241,8 @@ "Date | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -1200,7 +1262,8 @@ "[]" ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -1210,7 +1273,8 @@ "label": "timeZone", "description": [], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -1224,6 +1288,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1243,6 +1308,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1264,6 +1330,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1284,6 +1351,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1304,6 +1372,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1317,7 +1386,8 @@ "label": "hierarchical", "description": [], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -1327,7 +1397,8 @@ "label": "partialRows", "description": [], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -1341,6 +1412,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1354,6 +1426,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1371,6 +1444,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1384,6 +1458,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1403,6 +1478,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1416,6 +1492,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1443,6 +1520,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "Current time range as resolved date." @@ -1475,6 +1553,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1485,6 +1564,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1497,7 +1577,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -1518,7 +1599,8 @@ "> | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1561,6 +1643,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1580,6 +1663,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1594,6 +1678,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1621,6 +1706,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1643,6 +1729,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1660,6 +1747,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1683,6 +1771,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1705,6 +1794,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1718,6 +1808,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1743,6 +1834,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1756,6 +1848,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1781,6 +1874,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1794,6 +1888,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1819,6 +1914,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1832,6 +1928,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1857,6 +1954,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1870,6 +1968,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1895,6 +1994,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1908,6 +2008,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1933,6 +2034,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1948,6 +2050,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1963,6 +2066,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1978,6 +2082,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1995,6 +2100,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2008,6 +2114,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2041,6 +2148,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2061,6 +2169,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2086,6 +2195,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2099,6 +2209,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2128,6 +2239,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2155,6 +2267,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2170,6 +2283,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2203,6 +2317,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2222,6 +2337,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2243,6 +2359,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2269,6 +2386,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The expression AST." @@ -2304,6 +2422,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/agg.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2319,6 +2438,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/agg.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2332,7 +2452,8 @@ "TAggConfig" ], "path": "src/plugins/data/common/search/aggs/param_types/agg.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2347,7 +2468,8 @@ " | undefined; schema?: string | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/param_types/agg.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2362,7 +2484,8 @@ "string[]" ], "path": "src/plugins/data/common/search/aggs/param_types/agg.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2376,6 +2499,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/agg.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2389,6 +2513,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/agg.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2444,6 +2569,7 @@ ], "path": "src/plugins/data/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2457,6 +2583,7 @@ ], "path": "src/plugins/data/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2477,6 +2604,7 @@ ], "path": "src/plugins/data/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2521,6 +2649,7 @@ ], "path": "src/plugins/data/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2551,6 +2680,7 @@ ], "path": "src/plugins/data/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2565,6 +2695,7 @@ ], "path": "src/plugins/data/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2599,6 +2730,7 @@ ], "path": "src/plugins/data/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2618,6 +2750,7 @@ ], "path": "src/plugins/data/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2632,6 +2765,7 @@ ], "path": "src/plugins/data/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2649,6 +2783,7 @@ ], "path": "src/plugins/data/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2676,6 +2811,7 @@ ], "path": "src/plugins/data_views/common/errors/duplicate_index_pattern.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2691,6 +2827,7 @@ ], "path": "src/plugins/data_views/common/errors/duplicate_index_pattern.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2706,6 +2843,7 @@ ], "path": "src/plugins/data_views/common/errors/duplicate_index_pattern.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2725,6 +2863,7 @@ ], "path": "src/plugins/data/public/now_provider/now_provider.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2738,6 +2877,7 @@ ], "path": "src/plugins/data/public/now_provider/now_provider.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2753,6 +2893,7 @@ ], "path": "src/plugins/data/public/now_provider/now_provider.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2768,6 +2909,7 @@ ], "path": "src/plugins/data/public/now_provider/now_provider.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2781,6 +2923,7 @@ ], "path": "src/plugins/data/public/now_provider/now_provider.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2798,6 +2941,7 @@ ], "path": "src/plugins/data/public/now_provider/now_provider.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2839,6 +2983,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2858,7 +3003,8 @@ "[]" ], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2872,6 +3018,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2885,6 +3032,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2902,6 +3050,7 @@ "description": [], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2915,7 +3064,8 @@ "[]" ], "path": "src/plugins/data/common/search/search_source/search_source.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2929,6 +3079,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2948,6 +3099,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2968,6 +3120,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2987,6 +3140,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3002,6 +3156,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3037,6 +3192,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3052,6 +3208,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3075,6 +3232,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3102,6 +3260,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3117,6 +3276,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3146,6 +3306,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3167,6 +3328,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3186,6 +3348,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3210,6 +3373,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3243,6 +3407,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3256,6 +3421,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3270,6 +3436,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3287,6 +3454,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3320,6 +3488,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3333,6 +3502,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3359,6 +3529,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "discover", @@ -3401,6 +3572,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3425,6 +3597,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3438,6 +3611,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3473,6 +3647,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3495,6 +3670,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -3517,6 +3693,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3544,6 +3721,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3583,6 +3761,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3602,6 +3781,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3635,6 +3815,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "stackAlerts", @@ -3720,6 +3901,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3755,6 +3937,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3784,6 +3967,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3803,6 +3987,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3820,6 +4005,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3844,6 +4030,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3857,6 +4044,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3878,6 +4066,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3902,6 +4091,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3915,6 +4105,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3932,6 +4123,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3945,6 +4137,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3978,6 +4171,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3991,6 +4185,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4005,6 +4200,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4041,6 +4237,7 @@ ], "path": "src/plugins/data/common/search/search_source/extract_references.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4060,6 +4257,7 @@ ], "path": "src/plugins/data/common/search/search_source/extract_references.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4093,6 +4291,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4113,6 +4312,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4127,6 +4327,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4155,6 +4356,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify_docs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4170,6 +4372,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify_docs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4193,6 +4396,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify_docs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -4209,6 +4413,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify_docs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4228,6 +4433,7 @@ ], "path": "src/plugins/data/common/es_query/get_es_query_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4241,6 +4447,7 @@ ], "path": "src/plugins/data/common/es_query/get_es_query_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4276,6 +4483,7 @@ ], "path": "src/plugins/data/common/search/search_source/fetch/get_search_params.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4289,6 +4497,7 @@ ], "path": "src/plugins/data/common/search/search_source/fetch/get_search_params.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4300,6 +4509,7 @@ "description": [], "path": "src/plugins/data/common/search/search_source/fetch/get_search_params.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4313,6 +4523,7 @@ ], "path": "src/plugins/data/common/search/search_source/fetch/get_search_params.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4323,7 +4534,8 @@ "label": "key", "description": [], "path": "src/plugins/data/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -4336,7 +4548,8 @@ "T | undefined" ], "path": "src/plugins/data/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -4374,6 +4587,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4394,6 +4608,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -4408,6 +4623,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4419,6 +4635,7 @@ "description": [], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4431,7 +4648,8 @@ "Date | undefined" ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -4444,7 +4662,8 @@ "string | undefined" ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -4481,6 +4700,7 @@ ], "path": "src/plugins/data/common/search/search_source/inject_references.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4501,6 +4721,7 @@ ], "path": "src/plugins/data/common/search/search_source/inject_references.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4516,6 +4737,7 @@ ], "path": "src/plugins/data/common/search/search_source/inject_references.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4542,6 +4764,7 @@ ], "path": "src/plugins/data/common/search/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4562,6 +4785,7 @@ ], "path": "src/plugins/data/common/search/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4590,6 +4814,7 @@ ], "path": "src/plugins/data/common/search/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4610,6 +4835,7 @@ ], "path": "src/plugins/data/common/search/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4638,6 +4864,7 @@ ], "path": "src/plugins/data/common/search/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4658,6 +4885,7 @@ ], "path": "src/plugins/data/common/search/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4679,6 +4907,7 @@ ], "path": "src/plugins/data/common/query/is_query.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4692,6 +4921,7 @@ ], "path": "src/plugins/data/common/query/is_query.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4717,6 +4947,7 @@ ], "path": "src/plugins/data/common/query/timefilter/is_time_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4730,6 +4961,7 @@ ], "path": "src/plugins/data/common/query/timefilter/is_time_range.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4755,6 +4987,7 @@ ], "path": "src/plugins/data/common/search/search_source/parse_json.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4768,6 +5001,7 @@ ], "path": "src/plugins/data/common/search/search_source/parse_json.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4805,6 +5039,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4824,6 +5059,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4838,6 +5074,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4854,6 +5091,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4873,6 +5111,7 @@ ], "path": "src/plugins/data/common/search/aggs/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4918,7 +5157,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -4964,7 +5204,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5010,7 +5251,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5056,7 +5298,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5102,7 +5345,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5148,7 +5392,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5194,7 +5439,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5240,7 +5486,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5286,7 +5533,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5332,7 +5580,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5378,7 +5627,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5424,7 +5674,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5470,7 +5721,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5516,7 +5768,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5562,7 +5815,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5608,7 +5862,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5654,7 +5909,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5700,7 +5956,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5746,7 +6003,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5792,7 +6050,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5838,7 +6097,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5884,7 +6144,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5930,7 +6191,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5976,7 +6238,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6022,7 +6285,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6068,7 +6332,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6114,7 +6379,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6160,7 +6426,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6206,7 +6473,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6252,7 +6520,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6298,7 +6567,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6344,7 +6614,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6390,7 +6661,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6436,7 +6708,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6482,7 +6755,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6528,7 +6802,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6574,7 +6849,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6620,7 +6896,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6666,7 +6943,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6680,6 +6958,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/agg_params.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -6689,7 +6968,8 @@ "label": "val", "description": [], "path": "src/plugins/data/common/search/aggs/agg_params.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6699,7 +6979,8 @@ "label": "display", "description": [], "path": "src/plugins/data/common/search/aggs/agg_params.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6721,6 +7002,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_params.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -6740,6 +7022,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_params.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6759,6 +7042,7 @@ ], "path": "src/plugins/data/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -6774,6 +7058,7 @@ ], "path": "src/plugins/data/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6787,7 +7072,8 @@ "ValueClickDataContext" ], "path": "src/plugins/data/public/actions/filters/create_filters_from_value_click.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -6805,6 +7091,7 @@ ], "path": "src/plugins/data/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6818,7 +7105,8 @@ "RangeSelectDataContext" ], "path": "src/plugins/data/public/actions/filters/create_filters_from_range_select.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -6836,6 +7124,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -6847,7 +7136,8 @@ "\nSaved object id (or generated id if in-memory only)" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6862,7 +7152,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6874,7 +7165,8 @@ "\nData view title" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6889,7 +7181,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6911,7 +7204,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6924,7 +7218,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6938,6 +7233,7 @@ "description": [], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -6947,7 +7243,8 @@ "label": "pattern", "description": [], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6960,7 +7257,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6973,7 +7271,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6986,7 +7285,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6999,7 +7299,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7012,7 +7313,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7026,7 +7328,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7058,6 +7361,7 @@ ], "path": "src/plugins/data/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7067,7 +7371,8 @@ "label": "appName", "description": [], "path": "src/plugins/data/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7080,7 +7385,8 @@ "IUiSettingsClient" ], "path": "src/plugins/data/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7093,7 +7399,8 @@ "SavedObjectsStart" ], "path": "src/plugins/data/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7106,7 +7413,8 @@ "NotificationsStart" ], "path": "src/plugins/data/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7119,7 +7427,8 @@ "ApplicationStart" ], "path": "src/plugins/data/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7132,7 +7441,8 @@ "HttpSetup" ], "path": "src/plugins/data/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7152,7 +7462,8 @@ "" ], "path": "src/plugins/data/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7171,7 +7482,8 @@ } ], "path": "src/plugins/data/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7191,7 +7503,8 @@ " | undefined" ], "path": "src/plugins/data/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7231,6 +7544,7 @@ ], "path": "src/plugins/data/common/search/strategies/es_search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7243,7 +7557,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/strategies/es_search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7267,6 +7582,7 @@ ], "path": "src/plugins/data/common/search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7281,7 +7597,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7294,7 +7611,8 @@ "Params | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7318,6 +7636,7 @@ ], "path": "src/plugins/data/common/search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7332,7 +7651,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7347,7 +7667,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7362,7 +7683,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7377,7 +7699,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7392,7 +7715,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7407,7 +7731,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7422,7 +7747,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7437,7 +7763,8 @@ "RawResponse" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7451,6 +7778,7 @@ "description": [], "path": "src/plugins/data/common/search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7465,7 +7793,8 @@ "AbortSignal | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7480,7 +7809,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7495,7 +7825,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7510,7 +7841,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7525,7 +7857,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7540,7 +7873,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7556,7 +7890,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7578,7 +7913,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7620,6 +7956,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7651,6 +7988,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7671,6 +8009,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -7697,6 +8036,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -7712,6 +8052,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7721,7 +8062,8 @@ "label": "value", "description": [], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7731,7 +8073,8 @@ "label": "text", "description": [], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7744,7 +8087,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7766,6 +8110,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7785,6 +8130,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7806,6 +8152,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7817,7 +8164,8 @@ "The ID of this Saved Object, guaranteed to be unique for all objects of the same `type`" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7829,7 +8177,8 @@ " The type of Saved Object. Each plugin can define it's own custom Saved Object types." ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7844,7 +8193,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7859,7 +8209,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7873,7 +8224,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7888,7 +8240,8 @@ "T" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7904,7 +8257,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7920,7 +8274,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7935,7 +8290,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7950,7 +8306,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7965,7 +8322,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7981,6 +8339,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7993,7 +8352,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8011,7 +8371,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8033,7 +8394,8 @@ "[] | undefined) | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8063,7 +8425,8 @@ "[] | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8076,7 +8439,8 @@ "any" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8089,7 +8453,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8102,7 +8467,8 @@ "number | boolean | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8125,7 +8491,8 @@ " | (() => object) | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8138,7 +8505,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8151,7 +8519,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8166,7 +8535,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8179,7 +8549,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8201,7 +8572,8 @@ "[] | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8220,6 +8592,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": true, + "trackAdoption": false, "references": [] }, { @@ -8242,7 +8615,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8262,7 +8636,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8275,7 +8650,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8288,7 +8664,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8308,7 +8685,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8324,6 +8702,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8338,6 +8717,7 @@ ], "path": "node_modules/@types/kbn__field-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8352,6 +8732,7 @@ ], "path": "node_modules/@types/kbn__field-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8363,6 +8744,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8374,6 +8756,7 @@ "description": [], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -8400,6 +8783,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8416,6 +8800,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8430,6 +8815,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_groups.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8459,6 +8845,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_params.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8473,6 +8860,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8487,6 +8875,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8575,6 +8964,7 @@ ], "path": "src/plugins/data/common/search/aggs/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8589,6 +8979,7 @@ ], "path": "src/plugins/data/public/triggers/apply_filter_trigger.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8609,6 +9000,7 @@ ], "path": "src/plugins/data_views/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8623,6 +9015,7 @@ ], "path": "src/plugins/data/common/search/strategies/es_search/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8662,6 +9055,7 @@ ], "path": "src/plugins/data/common/search/expressions/esaggs/esaggs_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8700,6 +9094,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8728,6 +9123,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_context_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8789,6 +9185,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8850,6 +9247,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_context.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8871,6 +9269,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_context_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8894,6 +9293,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8939,6 +9339,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8964,6 +9365,7 @@ ], "path": "src/plugins/data/common/search/strategies/es_search/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8984,6 +9386,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/field.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9013,6 +9416,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9052,6 +9456,7 @@ ], "path": "src/plugins/data_views/common/expressions/load_index_pattern.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9108,6 +9513,7 @@ ], "path": "src/plugins/data/common/search/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -9121,7 +9527,8 @@ "SearchStrategyRequest" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -9141,7 +9548,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9382,6 +9790,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9403,6 +9812,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_context_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9417,6 +9827,7 @@ ], "path": "src/plugins/data/public/now_provider/now_provider.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9431,6 +9842,7 @@ ], "path": "src/plugins/data/public/now_provider/now_provider.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9447,6 +9859,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/parse_es_interval.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9485,6 +9898,7 @@ ], "path": "src/plugins/data/common/query/query_state.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9499,6 +9913,7 @@ ], "path": "src/plugins/data/common/query/timefilter/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9567,6 +9982,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9591,6 +10007,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -9604,6 +10021,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/agg_groups.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -9613,7 +10031,8 @@ "label": "[AggGroupNames.Buckets]", "description": [], "path": "src/plugins/data/common/search/aggs/agg_groups.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -9623,7 +10042,8 @@ "label": "[AggGroupNames.Metrics]", "description": [], "path": "src/plugins/data/common/search/aggs/agg_groups.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -9633,7 +10053,8 @@ "label": "[AggGroupNames.None]", "description": [], "path": "src/plugins/data/common/search/aggs/agg_groups.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9650,6 +10071,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_groups.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9661,6 +10083,7 @@ "description": [], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -9682,6 +10105,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -9701,7 +10125,8 @@ } ], "path": "src/plugins/data/common/exports/export_csv.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -9714,7 +10139,8 @@ "CSVOptions" ], "path": "src/plugins/data/common/exports/export_csv.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -9726,7 +10152,8 @@ "label": "CSV_MIME_TYPE", "description": [], "path": "src/plugins/data/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -9740,6 +10167,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -9750,7 +10178,8 @@ "label": "val", "description": [], "path": "src/plugins/data/common/exports/formula_checks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -9782,6 +10211,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -9802,7 +10232,8 @@ "[]" ], "path": "src/plugins/data/common/exports/formula_checks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -9822,7 +10253,8 @@ "[]" ], "path": "src/plugins/data/common/exports/formula_checks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -9838,6 +10270,7 @@ "description": [], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -9847,7 +10280,8 @@ "label": "ILLEGAL_CHARACTERS_KEY", "description": [], "path": "src/plugins/data/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -9857,7 +10291,8 @@ "label": "CONTAINS_SPACES_KEY", "description": [], "path": "src/plugins/data/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -9870,7 +10305,8 @@ "string[]" ], "path": "src/plugins/data/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -9883,7 +10319,8 @@ "string[]" ], "path": "src/plugins/data/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -9905,6 +10342,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -9924,7 +10362,8 @@ } ], "path": "src/plugins/data_views/common/fields/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -9940,6 +10379,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -9955,7 +10395,8 @@ " | undefined; }" ], "path": "src/plugins/data_views/common/fields/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -9971,6 +10412,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -9986,7 +10428,8 @@ " | undefined; }" ], "path": "src/plugins/data_views/common/fields/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -10004,6 +10447,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10019,7 +10463,8 @@ " | undefined; }" ], "path": "src/plugins/data_views/common/fields/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -10037,6 +10482,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10052,7 +10498,8 @@ " | undefined; }" ], "path": "src/plugins/data_views/common/fields/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -10068,6 +10515,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10078,7 +10526,8 @@ "label": "indexPattern", "description": [], "path": "src/plugins/data_views/common/lib/validate_data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -10094,6 +10543,7 @@ "description": [], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -10104,6 +10554,7 @@ "description": [], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -10123,7 +10574,8 @@ } ], "path": "src/plugins/data/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -10137,6 +10589,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10147,7 +10600,8 @@ "label": "interval", "description": [], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/date_histogram_interval.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -10160,7 +10614,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/date_histogram_interval.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -10183,7 +10638,8 @@ "): boolean; } | { display: string; val: string; })[]" ], "path": "src/plugins/data/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -10203,7 +10659,8 @@ } ], "path": "src/plugins/data/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -10223,7 +10680,8 @@ } ], "path": "src/plugins/data/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -10243,7 +10701,8 @@ } ], "path": "src/plugins/data/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -10264,6 +10723,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10277,7 +10737,8 @@ "any" ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -10301,6 +10762,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10320,7 +10782,8 @@ } ], "path": "src/plugins/data/common/search/aggs/buckets/migrate_include_exclude_format.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -10344,6 +10807,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10363,7 +10827,8 @@ } ], "path": "src/plugins/data/common/search/aggs/buckets/migrate_include_exclude_format.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -10387,6 +10852,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10400,7 +10866,8 @@ "string[]" ], "path": "src/plugins/data/common/search/aggs/buckets/migrate_include_exclude_format.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -10416,6 +10883,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10426,7 +10894,8 @@ "label": "interval", "description": [], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/is_valid_es_interval.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -10442,6 +10911,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10452,7 +10922,8 @@ "label": "value", "description": [], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/is_valid_interval.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -10465,7 +10936,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/is_valid_interval.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -10477,7 +10949,8 @@ "label": "parentPipelineType", "description": [], "path": "src/plugins/data/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -10493,6 +10966,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10503,7 +10977,8 @@ "label": "interval", "description": [], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/parse_es_interval.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -10519,6 +10994,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10529,7 +11005,8 @@ "label": "interval", "description": [], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/parse_interval.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -10545,6 +11022,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10558,7 +11036,8 @@ "P" ], "path": "src/plugins/data/common/search/aggs/utils/prop_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -10570,7 +11049,8 @@ "label": "siblingPipelineType", "description": [], "path": "src/plugins/data/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -10583,7 +11063,8 @@ "string[]" ], "path": "src/plugins/data/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -10599,6 +11080,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10612,7 +11094,8 @@ "{ from: string; to: string; mode?: \"absolute\" | \"relative\" | undefined; }" ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/to_absolute_dates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -10627,7 +11110,8 @@ "({ bound: number; interval: moment.Duration; boundLabel: string; intervalLabel: string; } | { bound: moment.Duration; interval: moment.Duration; boundLabel: string; intervalLabel: string; })[]" ], "path": "src/plugins/data/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -10641,6 +11125,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10651,7 +11136,8 @@ "label": "maxBucketCount", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/lib/time_buckets/calc_auto_interval.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -10661,7 +11147,8 @@ "label": "duration", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/lib/time_buckets/calc_auto_interval.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -10698,6 +11185,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10714,7 +11202,8 @@ ">> | undefined" ], "path": "src/plugins/data/common/search/search_source/inspect/inspector_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -10734,7 +11223,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/search_source/inspect/inspector_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -10767,6 +11257,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10786,7 +11277,8 @@ } ], "path": "src/plugins/data/common/search/tabify/tabify.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -10799,7 +11291,8 @@ "{ [x: string]: any; }" ], "path": "src/plugins/data/common/search/tabify/tabify.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -10814,7 +11307,8 @@ "> | undefined" ], "path": "src/plugins/data/common/search/tabify/tabify.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -10840,6 +11334,7 @@ ], "path": "src/plugins/data/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10860,7 +11355,8 @@ "[]" ], "path": "src/plugins/data/common/search/tabify/get_columns.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -10870,7 +11366,8 @@ "label": "minimalColumns", "description": [], "path": "src/plugins/data/common/search/tabify/get_columns.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -10889,6 +11386,7 @@ ], "path": "src/plugins/data/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -10903,6 +11401,7 @@ ], "path": "src/plugins/data/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -10921,7 +11420,8 @@ } ], "path": "src/plugins/data/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -10940,7 +11440,8 @@ } ], "path": "src/plugins/data/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -10957,6 +11458,7 @@ ], "path": "src/plugins/data/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -10977,7 +11479,8 @@ } ], "path": "src/plugins/data/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -10998,7 +11501,8 @@ } ], "path": "src/plugins/data/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -11019,7 +11523,8 @@ } ], "path": "src/plugins/data/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -11043,6 +11548,7 @@ ], "path": "src/plugins/data/public/types.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "unifiedSearch", @@ -11133,7 +11639,8 @@ } ], "path": "src/plugins/data/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -11165,6 +11672,7 @@ ], "path": "src/plugins/data/public/types.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "dashboard", @@ -11227,7 +11735,8 @@ } ], "path": "src/plugins/data/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -11240,7 +11749,8 @@ "{ get: () => Date; }" ], "path": "src/plugins/data/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", @@ -11296,6 +11806,7 @@ ], "path": "src/plugins/data/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11309,6 +11820,7 @@ ], "path": "src/plugins/data/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11329,6 +11841,7 @@ ], "path": "src/plugins/data/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -11378,6 +11891,7 @@ ], "path": "src/plugins/data/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11408,6 +11922,7 @@ ], "path": "src/plugins/data/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -11422,6 +11937,7 @@ ], "path": "src/plugins/data/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -11485,6 +12001,7 @@ ], "path": "src/plugins/data/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11504,6 +12021,7 @@ ], "path": "src/plugins/data/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -11518,6 +12036,7 @@ ], "path": "src/plugins/data/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -11535,6 +12054,7 @@ ], "path": "src/plugins/data/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -11563,6 +12083,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11577,7 +12098,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -11589,7 +12111,8 @@ "\nTitle of data view" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -11614,7 +12137,8 @@ ">; }" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -11636,7 +12160,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -11666,7 +12191,8 @@ "; }" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -11681,7 +12207,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -11696,7 +12223,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -11712,6 +12240,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "dataViews", @@ -11739,7 +12268,8 @@ "{ [x: string]: unknown[]; }" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -11752,7 +12282,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -11769,7 +12300,8 @@ "string[]" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -11784,7 +12316,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -11806,7 +12339,8 @@ "[] | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -11821,7 +12355,8 @@ "string[]" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -11833,7 +12368,8 @@ "\nPrevents errors when index pattern exists before indices" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -11845,7 +12381,8 @@ "\nName of the data view. Human readable name used to differentiate data view." ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -11858,7 +12395,8 @@ "string[]" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -11874,6 +12412,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11889,6 +12428,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -11908,6 +12448,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -11925,6 +12466,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -11942,6 +12484,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -11967,6 +12510,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -11988,6 +12532,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12003,6 +12548,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12027,6 +12573,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12042,6 +12589,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12061,6 +12609,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12080,6 +12629,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "dataViewManagement", @@ -12109,6 +12659,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12138,6 +12689,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "visTypeTimeseries", @@ -12211,6 +12763,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "dataViews", @@ -12270,6 +12823,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12294,6 +12848,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12318,6 +12873,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12343,6 +12899,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12368,6 +12925,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12383,6 +12941,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12410,6 +12969,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12434,6 +12994,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12474,6 +13035,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12503,6 +13065,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12538,6 +13101,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12553,6 +13117,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -12575,6 +13140,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12594,6 +13160,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12609,6 +13176,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12636,6 +13204,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12651,6 +13220,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12678,6 +13248,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "map of runtime field definitions by field name" @@ -12705,6 +13276,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12720,6 +13292,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12749,6 +13322,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12772,6 +13346,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12791,6 +13366,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12806,6 +13382,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12826,6 +13403,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12851,6 +13429,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12866,6 +13445,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12901,6 +13481,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12916,6 +13497,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -12932,6 +13514,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -12955,6 +13538,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12974,6 +13558,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12989,6 +13574,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13005,6 +13591,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -13024,6 +13611,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13039,6 +13627,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13055,6 +13644,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -13084,6 +13674,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13099,6 +13690,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13124,6 +13716,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13143,6 +13736,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13158,6 +13752,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13177,6 +13772,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13192,6 +13788,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -13209,6 +13806,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13230,6 +13828,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13249,6 +13848,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13264,6 +13864,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13283,6 +13884,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13298,6 +13900,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13325,6 +13928,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13340,6 +13944,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13356,6 +13961,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13385,6 +13991,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13400,6 +14007,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13419,6 +14027,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -13436,6 +14045,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13449,6 +14059,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -13478,6 +14089,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -13503,6 +14115,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -13520,6 +14133,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -13537,6 +14151,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13552,6 +14167,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -13568,6 +14184,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13587,6 +14204,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -13620,6 +14238,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13641,6 +14260,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13694,6 +14314,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13721,6 +14342,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13744,6 +14366,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -13773,6 +14396,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13792,6 +14416,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13834,6 +14459,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13856,6 +14482,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13879,6 +14506,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -13917,6 +14545,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13939,6 +14568,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13968,6 +14598,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13981,6 +14612,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14016,6 +14648,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14035,6 +14668,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14051,6 +14685,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14088,6 +14723,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14109,6 +14745,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14125,6 +14762,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14141,6 +14779,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14176,6 +14815,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14197,6 +14837,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14213,6 +14854,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14248,6 +14890,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14267,6 +14910,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14281,6 +14925,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14295,6 +14940,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14314,6 +14960,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14329,6 +14976,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14356,6 +15004,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "default data view" @@ -14373,6 +15022,7 @@ "description": [], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14386,6 +15036,7 @@ ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14399,6 +15050,7 @@ ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14413,6 +15065,7 @@ ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14446,6 +15099,7 @@ ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14456,6 +15110,7 @@ "description": [], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14468,7 +15123,8 @@ "string | string[]" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -14481,7 +15137,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -14494,7 +15151,8 @@ "{ allow_no_indices: boolean; } | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -14507,7 +15165,8 @@ "string | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -14520,7 +15179,8 @@ "string | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -14534,7 +15194,8 @@ " | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -14557,6 +15218,7 @@ ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14572,6 +15234,7 @@ ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14605,6 +15268,7 @@ ], "path": "src/plugins/data_views/server/fetcher/lib/map_capabilities.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14620,6 +15284,7 @@ ], "path": "src/plugins/data_views/server/fetcher/lib/map_capabilities.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14639,6 +15304,7 @@ ], "path": "src/plugins/data/common/es_query/get_es_query_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14652,6 +15318,7 @@ ], "path": "src/plugins/data/common/es_query/get_es_query_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14674,6 +15341,7 @@ ], "path": "src/plugins/data/server/lib/get_request_aborted_signal.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14690,6 +15358,7 @@ ], "path": "src/plugins/data/server/lib/get_request_aborted_signal.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14724,6 +15393,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14744,6 +15414,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -14758,6 +15429,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14769,6 +15441,7 @@ "description": [], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14781,7 +15454,8 @@ "Date | undefined" ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -14794,7 +15468,8 @@ "string | undefined" ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -14814,6 +15489,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/parse_interval.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14827,6 +15503,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/parse_interval.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14846,6 +15523,7 @@ ], "path": "src/plugins/data_views/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14875,6 +15553,7 @@ ], "path": "src/plugins/data_views/server/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -14888,7 +15567,8 @@ "SavedObjectsClientContract" ], "path": "src/plugins/data_views/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16089,7 +16769,8 @@ "; }" ], "path": "src/plugins/data_views/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16103,7 +16784,8 @@ " | undefined" ], "path": "src/plugins/data_views/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16116,7 +16798,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -16132,6 +16815,7 @@ "description": [], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -16141,7 +16825,8 @@ "label": "aggregatable", "description": [], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16151,7 +16836,8 @@ "label": "name", "description": [], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16161,7 +16847,8 @@ "label": "readFromDocValues", "description": [], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16171,7 +16858,8 @@ "label": "searchable", "description": [], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16181,7 +16869,8 @@ "label": "type", "description": [], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16194,7 +16883,8 @@ "string[]" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16207,7 +16897,8 @@ "FieldSubType | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16220,7 +16911,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16233,7 +16925,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16246,7 +16939,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16259,7 +16953,8 @@ "\"gauge\" | \"histogram\" | \"summary\" | \"counter\" | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16272,7 +16967,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -16312,6 +17008,7 @@ ], "path": "src/plugins/data/common/search/strategies/es_search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -16324,7 +17021,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/strategies/es_search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -16338,6 +17036,7 @@ "description": [], "path": "src/plugins/data/common/search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -16352,7 +17051,8 @@ "AbortSignal | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16367,7 +17067,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16382,7 +17083,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16397,7 +17099,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16412,7 +17115,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16427,7 +17131,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16443,7 +17148,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16465,7 +17171,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -16484,6 +17191,7 @@ ], "path": "node_modules/@types/kbn__field-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -16498,6 +17206,7 @@ ], "path": "node_modules/@types/kbn__field-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -16509,6 +17218,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -16525,6 +17235,7 @@ ], "path": "src/plugins/data/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -16539,6 +17250,7 @@ ], "path": "src/plugins/data/common/search/strategies/es_search/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -16564,6 +17276,7 @@ ], "path": "src/plugins/data/common/search/strategies/es_search/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -16580,6 +17293,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/parse_es_interval.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -16593,6 +17307,7 @@ "description": [], "path": "src/plugins/data/server/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -16614,6 +17329,7 @@ ], "path": "src/plugins/data/server/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -16633,7 +17349,8 @@ } ], "path": "src/plugins/data/common/exports/export_csv.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16646,7 +17363,8 @@ "CSVOptions" ], "path": "src/plugins/data/common/exports/export_csv.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -16658,7 +17376,8 @@ "label": "CSV_MIME_TYPE", "description": [], "path": "src/plugins/data/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -16672,6 +17391,7 @@ "description": [], "path": "src/plugins/data/server/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -16682,6 +17402,7 @@ "description": [], "path": "src/plugins/data/server/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -16701,7 +17422,8 @@ } ], "path": "src/plugins/data/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16715,6 +17437,7 @@ ], "path": "src/plugins/data/server/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -16725,7 +17448,8 @@ "label": "interval", "description": [], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/date_histogram_interval.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16738,7 +17462,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/date_histogram_interval.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -16760,7 +17485,8 @@ } ], "path": "src/plugins/data/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16774,6 +17500,7 @@ ], "path": "src/plugins/data/server/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -16784,7 +17511,8 @@ "label": "interval", "description": [], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/parse_interval.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -16800,6 +17528,7 @@ ], "path": "src/plugins/data/server/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -16810,7 +17539,8 @@ "label": "maxBucketCount", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/lib/time_buckets/calc_auto_interval.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16820,7 +17550,8 @@ "label": "duration", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/lib/time_buckets/calc_auto_interval.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -16841,6 +17572,7 @@ ], "path": "src/plugins/data/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -16853,6 +17585,7 @@ "description": [], "path": "src/plugins/data/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -16865,7 +17598,8 @@ "ISearchSetup" ], "path": "src/plugins/data/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16878,7 +17612,8 @@ "QuerySetup" ], "path": "src/plugins/data/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16900,6 +17635,7 @@ ], "path": "src/plugins/data/server/plugin.ts", "deprecated": true, + "trackAdoption": false, "references": [] } ], @@ -16915,6 +17651,7 @@ "description": [], "path": "src/plugins/data/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -16944,7 +17681,8 @@ ">" ], "path": "src/plugins/data/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16966,6 +17704,7 @@ ], "path": "src/plugins/data/server/plugin.ts", "deprecated": true, + "trackAdoption": false, "references": [] }, { @@ -16985,7 +17724,8 @@ } ], "path": "src/plugins/data/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17000,7 +17740,8 @@ "DatatableUtilitiesService" ], "path": "src/plugins/data/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", @@ -17018,6 +17759,7 @@ "description": [], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17031,6 +17773,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17050,6 +17793,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -17070,6 +17814,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -17090,6 +17835,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17115,6 +17861,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17134,6 +17881,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17159,6 +17907,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17178,6 +17927,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17211,6 +17961,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17230,6 +17981,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17257,6 +18009,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17276,6 +18029,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -17290,6 +18044,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17323,6 +18078,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17342,6 +18098,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17375,6 +18132,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17394,6 +18152,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17427,6 +18186,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17446,6 +18206,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17471,6 +18232,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17490,6 +18252,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17517,6 +18280,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17536,6 +18300,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17561,6 +18326,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17580,6 +18346,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17606,6 +18373,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17625,6 +18393,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17650,6 +18419,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17669,6 +18439,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17702,6 +18473,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17721,6 +18493,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -17741,6 +18514,7 @@ ], "path": "src/plugins/data/common/datatable_utilities/datatable_utilities_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17771,6 +18545,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17785,7 +18560,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17797,7 +18573,8 @@ "\nTitle of data view" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17822,7 +18599,8 @@ ">; }" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17844,7 +18622,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17874,7 +18653,8 @@ "; }" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17889,7 +18669,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17904,7 +18685,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17920,6 +18702,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "dataViews", @@ -17947,7 +18730,8 @@ "{ [x: string]: unknown[]; }" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17960,7 +18744,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -17977,7 +18762,8 @@ "string[]" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17992,7 +18778,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18014,7 +18801,8 @@ "[] | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18029,7 +18817,8 @@ "string[]" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18041,7 +18830,8 @@ "\nPrevents errors when index pattern exists before indices" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18053,7 +18843,8 @@ "\nName of the data view. Human readable name used to differentiate data view." ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18066,7 +18857,8 @@ "string[]" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18082,6 +18874,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18097,6 +18890,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18116,6 +18910,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -18133,6 +18928,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -18150,6 +18946,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -18175,6 +18972,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -18196,6 +18994,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -18211,6 +19010,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -18235,6 +19035,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18250,6 +19051,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18269,6 +19071,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -18288,6 +19091,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "dataViewManagement", @@ -18317,6 +19121,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18346,6 +19151,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "visTypeTimeseries", @@ -18419,6 +19225,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "dataViews", @@ -18478,6 +19285,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -18502,6 +19310,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -18526,6 +19335,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -18551,6 +19361,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -18576,6 +19387,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18591,6 +19403,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18618,6 +19431,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -18642,6 +19456,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -18682,6 +19497,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18711,6 +19527,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18746,6 +19563,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18761,6 +19579,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -18783,6 +19602,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18802,6 +19622,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18817,6 +19638,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18844,6 +19666,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18859,6 +19682,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18886,6 +19710,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "map of runtime field definitions by field name" @@ -18913,6 +19738,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18928,6 +19754,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18957,6 +19784,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18980,6 +19808,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18999,6 +19828,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19014,6 +19844,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19034,6 +19865,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -19059,6 +19891,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19074,6 +19907,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19109,6 +19943,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19124,6 +19959,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -19140,6 +19976,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -19163,6 +20000,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19182,6 +20020,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19197,6 +20036,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -19213,6 +20053,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -19232,6 +20073,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19247,6 +20089,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -19263,6 +20106,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -19292,6 +20136,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19307,6 +20152,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -19332,6 +20178,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19351,6 +20198,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19366,6 +20214,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19396,6 +20245,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19427,7 +20277,8 @@ " | undefined; fixedInterval?: string[] | undefined; timeZone?: string[] | undefined; timeSeriesDimension?: boolean | undefined; timeSeriesMetric?: \"gauge\" | \"histogram\" | \"summary\" | \"counter\" | undefined; shortDotsEnable?: boolean | undefined; isMapped?: boolean | undefined; }" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19445,6 +20296,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19466,6 +20318,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19481,7 +20334,8 @@ "\nCount is used for field popularity in discover." ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19493,7 +20347,8 @@ "\nSet count, which is used for field popularity in discover." ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19515,7 +20370,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19537,7 +20393,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19552,7 +20409,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19567,7 +20425,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19582,7 +20441,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19597,7 +20457,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19612,7 +20473,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19627,7 +20489,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19642,7 +20505,8 @@ "Record | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19657,7 +20521,8 @@ "Record | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19669,7 +20534,8 @@ "\nGet field name" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19681,7 +20547,8 @@ "\nGets display name, calcualted based on name, custom label and shortDotsEnable." ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19693,7 +20560,8 @@ "\nGets field type" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19708,7 +20576,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19720,7 +20589,8 @@ "\nReturns true if scripted field" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19732,7 +20602,8 @@ "\nReturns true if field is searchable" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19744,7 +20615,8 @@ "\nReturns true if field is aggregatable" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19756,7 +20628,8 @@ "\nreturns true if field is a TSDB dimension field" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19771,7 +20644,8 @@ "\"gauge\" | \"histogram\" | \"summary\" | \"counter\" | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19786,7 +20660,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19801,7 +20676,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19816,7 +20692,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19828,7 +20705,8 @@ "\nReturns true if field is available via doc values" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19844,7 +20722,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19859,7 +20738,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19871,7 +20751,8 @@ "\nReturns true if runtime field defined on data view" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19883,7 +20764,8 @@ "\nReturns true if field is sortable" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19895,7 +20777,8 @@ "\nReturns true if field is filterable" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19907,7 +20790,8 @@ "\nReturns true if field is visualizable" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19923,6 +20807,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -19940,6 +20825,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -19959,6 +20845,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -19978,6 +20865,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -19995,6 +20883,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -20014,6 +20903,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -20046,6 +20936,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20067,6 +20958,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -20088,6 +20980,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -20115,6 +21008,7 @@ ], "path": "src/plugins/data_views/common/errors/data_view_saved_object_conflict.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20130,6 +21024,7 @@ ], "path": "src/plugins/data_views/common/errors/data_view_saved_object_conflict.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20145,6 +21040,7 @@ ], "path": "src/plugins/data_views/common/errors/data_view_saved_object_conflict.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -20164,6 +21060,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20179,6 +21076,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -20196,6 +21094,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20217,6 +21116,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -20236,6 +21136,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20251,6 +21152,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -20270,6 +21172,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20285,6 +21188,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -20312,6 +21216,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20327,6 +21232,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -20343,6 +21249,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -20372,6 +21279,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20387,6 +21295,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -20406,6 +21315,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -20423,6 +21333,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20436,6 +21347,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -20465,6 +21377,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -20490,6 +21403,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -20507,6 +21421,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -20524,6 +21439,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20539,6 +21455,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -20555,6 +21472,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -20574,6 +21492,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -20607,6 +21526,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20628,6 +21548,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -20681,6 +21602,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20708,6 +21630,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -20731,6 +21654,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -20760,6 +21684,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20779,6 +21704,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -20821,6 +21747,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20843,6 +21770,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -20866,6 +21794,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -20904,6 +21833,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20926,6 +21856,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -20955,6 +21886,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20968,6 +21900,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21003,6 +21936,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21022,6 +21956,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21038,6 +21973,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21075,6 +22011,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21096,6 +22033,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21112,6 +22050,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21128,6 +22067,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21163,6 +22103,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21184,6 +22125,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21200,6 +22142,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21235,6 +22178,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21254,6 +22198,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21268,6 +22213,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21282,6 +22228,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21301,6 +22248,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21316,6 +22264,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21343,6 +22292,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "default data view" @@ -21372,6 +22322,7 @@ ], "path": "src/plugins/data_views/common/errors/duplicate_index_pattern.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21387,6 +22338,7 @@ ], "path": "src/plugins/data_views/common/errors/duplicate_index_pattern.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21402,6 +22354,7 @@ ], "path": "src/plugins/data_views/common/errors/duplicate_index_pattern.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21422,6 +22375,7 @@ ], "path": "node_modules/@types/kbn__field-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21431,7 +22385,8 @@ "label": "name", "description": [], "path": "node_modules/@types/kbn__field-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21441,7 +22396,8 @@ "label": "sortable", "description": [], "path": "node_modules/@types/kbn__field-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21451,7 +22407,8 @@ "label": "filterable", "description": [], "path": "node_modules/@types/kbn__field-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21466,7 +22423,8 @@ "[]" ], "path": "node_modules/@types/kbn__field-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21480,6 +22438,7 @@ ], "path": "node_modules/@types/kbn__field-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21495,6 +22454,7 @@ ], "path": "node_modules/@types/kbn__field-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -21517,6 +22477,7 @@ ], "path": "src/plugins/data/common/exports/formula_checks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21530,6 +22491,7 @@ ], "path": "src/plugins/data/common/exports/formula_checks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21550,6 +22512,7 @@ ], "path": "src/plugins/data/common/exports/escape_value.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21563,6 +22526,7 @@ ], "path": "src/plugins/data/common/exports/escape_value.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21577,6 +22541,7 @@ ], "path": "src/plugins/data/common/exports/escape_value.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21603,6 +22568,7 @@ ], "path": "src/plugins/data/common/exports/export_csv.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21622,6 +22588,7 @@ ], "path": "src/plugins/data/common/exports/export_csv.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21636,6 +22603,7 @@ ], "path": "src/plugins/data/common/exports/export_csv.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21669,6 +22637,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21689,6 +22658,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21703,6 +22673,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21722,6 +22693,7 @@ ], "path": "src/plugins/data/common/es_query/get_es_query_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21735,6 +22707,7 @@ ], "path": "src/plugins/data/common/es_query/get_es_query_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21755,6 +22728,7 @@ ], "path": "src/plugins/data_views/common/fields/utils.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -21770,7 +22744,8 @@ " | undefined; }" ], "path": "src/plugins/data_views/common/fields/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -21789,6 +22764,7 @@ ], "path": "src/plugins/data_views/common/fields/utils.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -21804,7 +22780,8 @@ " | undefined; }" ], "path": "src/plugins/data_views/common/fields/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -21829,6 +22806,7 @@ ], "path": "src/plugins/data_views/common/expressions/load_index_pattern.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -21853,6 +22831,7 @@ ], "path": "src/plugins/data_views/common/fields/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21872,6 +22851,7 @@ ], "path": "src/plugins/data_views/common/fields/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21890,6 +22870,7 @@ ], "path": "src/plugins/data_views/common/fields/utils.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -21905,7 +22886,8 @@ " | undefined; }" ], "path": "src/plugins/data_views/common/fields/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -21922,6 +22904,7 @@ ], "path": "src/plugins/data_views/common/fields/utils.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -21937,7 +22920,8 @@ " | undefined; }" ], "path": "src/plugins/data_views/common/fields/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -21970,6 +22954,7 @@ ], "path": "src/plugins/data/common/exports/formula_checks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21990,6 +22975,7 @@ ], "path": "src/plugins/data/common/exports/formula_checks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -22011,6 +22997,7 @@ ], "path": "src/plugins/data/common/exports/formula_checks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -22030,6 +23017,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22041,7 +23029,8 @@ "\nFields as a serialized array of field specs" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22053,7 +23042,8 @@ "\nData view title" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22068,7 +23058,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22083,7 +23074,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22098,7 +23090,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22113,7 +23106,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22128,7 +23122,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22143,7 +23138,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22158,7 +23154,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22173,7 +23170,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22188,7 +23186,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22204,6 +23203,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22215,7 +23215,8 @@ "\nSaved object id (or generated id if in-memory only)" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22230,7 +23231,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22242,7 +23244,8 @@ "\nData view title" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22257,7 +23260,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22279,7 +23283,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22292,7 +23297,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22306,6 +23312,7 @@ "description": [], "path": "src/plugins/data/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22319,6 +23326,7 @@ ], "path": "src/plugins/data/common/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -22332,7 +23340,8 @@ "any" ], "path": "src/plugins/data/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -22348,6 +23357,7 @@ ], "path": "src/plugins/data/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22361,6 +23371,7 @@ ], "path": "src/plugins/data/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -22378,6 +23389,7 @@ "description": [], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22387,7 +23399,8 @@ "label": "pattern", "description": [], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22400,7 +23413,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22413,7 +23427,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22426,7 +23441,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22439,7 +23455,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22452,7 +23469,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22466,7 +23484,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22480,6 +23499,7 @@ "description": [], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22503,6 +23523,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22522,6 +23543,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -22539,6 +23561,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -22556,6 +23579,7 @@ ], "path": "src/plugins/data_views/common/expressions/load_index_pattern.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22570,7 +23594,8 @@ "\"index_pattern\"" ], "path": "src/plugins/data_views/common/expressions/load_index_pattern.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22635,7 +23660,8 @@ " | undefined; allowNoIndex?: boolean | undefined; namespaces?: string[] | undefined; name?: string | undefined; }" ], "path": "src/plugins/data_views/common/expressions/load_index_pattern.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22652,6 +23678,7 @@ ], "path": "node_modules/@types/kbn__field-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22661,7 +23688,8 @@ "label": "sortable", "description": [], "path": "node_modules/@types/kbn__field-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22671,7 +23699,8 @@ "label": "filterable", "description": [], "path": "node_modules/@types/kbn__field-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22681,7 +23710,8 @@ "label": "name", "description": [], "path": "node_modules/@types/kbn__field-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22695,7 +23725,8 @@ "[]" ], "path": "node_modules/@types/kbn__field-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22713,6 +23744,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22724,7 +23756,8 @@ "The ID of this Saved Object, guaranteed to be unique for all objects of the same `type`" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22736,7 +23769,8 @@ " The type of Saved Object. Each plugin can define it's own custom Saved Object types." ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22751,7 +23785,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22766,7 +23801,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22780,7 +23816,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22795,7 +23832,8 @@ "T" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22811,7 +23849,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22827,7 +23866,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22842,7 +23882,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22857,7 +23898,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22872,7 +23914,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22888,6 +23931,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22903,6 +23947,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22918,6 +23963,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -22937,6 +23983,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -22954,6 +24001,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22969,6 +24017,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -22985,6 +24034,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23004,6 +24054,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -23019,6 +24070,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23040,6 +24092,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23054,6 +24107,7 @@ ], "path": "node_modules/@types/kbn__field-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23068,6 +24122,7 @@ ], "path": "node_modules/@types/kbn__field-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -23084,6 +24139,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23098,6 +24154,7 @@ ], "path": "src/plugins/data/common/exports/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23112,6 +24169,7 @@ ], "path": "src/plugins/data/common/exports/export_csv.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23128,6 +24186,7 @@ ], "path": "src/plugins/data_views/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23150,6 +24209,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23378,6 +24438,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23444,6 +24505,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23458,6 +24520,7 @@ ], "path": "src/plugins/data/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23482,6 +24545,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23498,6 +24562,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23533,6 +24598,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23547,6 +24613,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23563,6 +24630,7 @@ ], "path": "src/plugins/data/common/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -23573,7 +24641,8 @@ "label": "key", "description": [], "path": "src/plugins/data/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23586,7 +24655,8 @@ "T | undefined" ], "path": "src/plugins/data/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -23628,6 +24698,7 @@ ], "path": "src/plugins/data_views/common/expressions/load_index_pattern.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23642,6 +24713,7 @@ ], "path": "src/plugins/data/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23658,6 +24730,7 @@ ], "path": "src/plugins/data_views/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23672,6 +24745,7 @@ ], "path": "node_modules/@types/kbn__es-query/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23686,6 +24760,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23710,6 +24785,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23724,6 +24800,7 @@ ], "path": "src/plugins/data/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -23739,6 +24816,7 @@ ], "path": "src/plugins/data_views/common/constants.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -23751,7 +24829,8 @@ "string[]" ], "path": "src/plugins/data_views/common/constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -23770,6 +24849,7 @@ ], "path": "src/plugins/data_views/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -23784,6 +24864,7 @@ ], "path": "src/plugins/data/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/data.mdx b/api_docs/data.mdx index 5fac8adb791c2..d3115cfccb73c 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data'] --- import dataObj from './data.devdocs.json'; diff --git a/api_docs/data_query.devdocs.json b/api_docs/data_query.devdocs.json index 54f188b735232..99b35ae9ab7dd 100644 --- a/api_docs/data_query.devdocs.json +++ b/api_docs/data_query.devdocs.json @@ -31,6 +31,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -44,6 +45,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -57,6 +59,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -76,6 +79,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -93,6 +97,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -110,6 +115,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -125,6 +131,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -142,6 +149,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -159,6 +167,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -178,6 +187,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -194,6 +204,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -208,6 +219,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -227,6 +239,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -241,6 +254,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -255,6 +269,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -276,6 +291,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -290,6 +306,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -311,6 +328,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -325,6 +343,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -344,6 +363,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -357,6 +377,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -374,6 +395,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -393,6 +415,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -407,6 +430,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -421,6 +445,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -435,6 +460,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -458,6 +484,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -472,7 +499,8 @@ "[]" ], "path": "src/plugins/data/common/query/filters/persistable_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -494,6 +522,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -508,7 +537,8 @@ "[]" ], "path": "src/plugins/data/common/query/filters/persistable_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -522,7 +552,8 @@ "[]" ], "path": "src/plugins/data/common/query/filters/persistable_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -540,6 +571,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -554,7 +586,8 @@ "[]" ], "path": "src/plugins/data/common/query/filters/persistable_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -567,7 +600,8 @@ "unknown" ], "path": "src/plugins/data/common/query/filters/persistable_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -590,6 +624,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/filter_manager.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -615,6 +650,7 @@ ], "path": "src/plugins/data/public/query/persisted_log/persisted_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -624,7 +660,8 @@ "label": "name", "description": [], "path": "src/plugins/data/public/query/persisted_log/persisted_log.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -637,7 +674,8 @@ "number | undefined" ], "path": "src/plugins/data/public/query/persisted_log/persisted_log.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -650,7 +688,8 @@ "boolean | undefined" ], "path": "src/plugins/data/public/query/persisted_log/persisted_log.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -664,6 +703,7 @@ ], "path": "src/plugins/data/public/query/persisted_log/persisted_log.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -677,7 +717,8 @@ "T" ], "path": "src/plugins/data/public/query/persisted_log/persisted_log.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -690,7 +731,8 @@ "T" ], "path": "src/plugins/data/public/query/persisted_log/persisted_log.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -712,7 +754,8 @@ "" ], "path": "src/plugins/data/public/query/persisted_log/persisted_log.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -725,7 +768,8 @@ "T[]" ], "path": "src/plugins/data/public/query/persisted_log/persisted_log.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -739,6 +783,7 @@ ], "path": "src/plugins/data/public/query/persisted_log/persisted_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -752,6 +797,7 @@ ], "path": "src/plugins/data/public/query/persisted_log/persisted_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -766,6 +812,7 @@ ], "path": "src/plugins/data/public/query/persisted_log/persisted_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -787,6 +834,7 @@ ], "path": "src/plugins/data/public/query/persisted_log/persisted_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -804,6 +852,7 @@ ], "path": "src/plugins/data/public/query/persisted_log/persisted_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -817,6 +866,7 @@ ], "path": "src/plugins/data/public/query/persisted_log/persisted_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -834,6 +884,7 @@ ], "path": "src/plugins/data/public/query/persisted_log/persisted_log.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -851,6 +902,7 @@ ], "path": "src/plugins/data/public/query/persisted_log/persisted_log.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -866,6 +918,7 @@ "description": [], "path": "src/plugins/data/public/query/timefilter/time_history.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -879,6 +932,7 @@ ], "path": "src/plugins/data/public/query/timefilter/time_history.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -899,6 +953,7 @@ ], "path": "src/plugins/data/public/query/timefilter/time_history.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -918,6 +973,7 @@ ], "path": "src/plugins/data/public/query/timefilter/time_history.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -931,6 +987,7 @@ ], "path": "src/plugins/data/public/query/timefilter/time_history.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -950,6 +1007,7 @@ ], "path": "src/plugins/data/public/query/timefilter/time_history.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -969,6 +1027,7 @@ ], "path": "src/plugins/data/public/query/timefilter/time_history.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1025,6 +1084,7 @@ ], "path": "src/plugins/data/public/query/state_sync/connect_to_query_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1054,6 +1114,7 @@ ], "path": "src/plugins/data/public/query/state_sync/connect_to_query_state.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1077,6 +1138,7 @@ ], "path": "src/plugins/data/public/query/state_sync/connect_to_query_state.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1088,6 +1150,7 @@ "description": [], "path": "src/plugins/data/public/query/state_sync/connect_to_query_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1100,7 +1163,8 @@ "boolean | undefined" ], "path": "src/plugins/data/public/query/state_sync/connect_to_query_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -1113,7 +1177,8 @@ "boolean | undefined" ], "path": "src/plugins/data/public/query/state_sync/connect_to_query_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -1128,7 +1193,8 @@ " | undefined" ], "path": "src/plugins/data/public/query/state_sync/connect_to_query_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -1141,7 +1207,8 @@ "boolean | undefined" ], "path": "src/plugins/data/public/query/state_sync/connect_to_query_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1219,6 +1286,7 @@ ], "path": "src/plugins/data/public/query/saved_query/saved_query_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1232,6 +1300,7 @@ ], "path": "src/plugins/data/public/query/saved_query/saved_query_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1266,6 +1335,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/lib/generate_filters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1287,6 +1357,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/lib/generate_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1304,6 +1375,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/lib/generate_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1320,6 +1392,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/lib/generate_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1336,6 +1409,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/lib/generate_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1352,6 +1426,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/lib/generate_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1372,6 +1447,7 @@ ], "path": "src/plugins/data/public/query/lib/get_default_query.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1385,6 +1461,7 @@ ], "path": "src/plugins/data/public/query/lib/get_default_query.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1413,6 +1490,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1426,6 +1504,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1447,6 +1526,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1475,6 +1555,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1488,6 +1569,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1509,6 +1591,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/lib/get_display_value.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1545,6 +1628,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/lib/get_index_pattern_from_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1558,6 +1642,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/lib/get_index_pattern_from_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1579,6 +1664,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/lib/get_index_pattern_from_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1601,6 +1687,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/lib/map_and_flatten_filters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1615,6 +1702,7 @@ ], "path": "src/plugins/data/public/query/filter_manager/lib/map_and_flatten_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1659,6 +1747,7 @@ ], "path": "src/plugins/data/public/query/state_sync/sync_state_with_url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1688,6 +1777,7 @@ ], "path": "src/plugins/data/public/query/state_sync/sync_state_with_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1710,6 +1800,7 @@ ], "path": "src/plugins/data/public/query/state_sync/sync_state_with_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1754,6 +1845,7 @@ ], "path": "src/plugins/data/public/query/state_sync/sync_state_with_url.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "discover", @@ -1841,7 +1933,8 @@ "; }" ], "path": "src/plugins/data/public/query/state_sync/sync_state_with_url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -1860,7 +1953,8 @@ } ], "path": "src/plugins/data/public/query/state_sync/sync_state_with_url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1878,6 +1972,7 @@ ], "path": "src/plugins/data/public/query/state_sync/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1897,7 +1992,8 @@ " | undefined" ], "path": "src/plugins/data/public/query/state_sync/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -1917,7 +2013,8 @@ " | undefined" ], "path": "src/plugins/data/public/query/state_sync/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -1931,7 +2028,8 @@ "[] | undefined" ], "path": "src/plugins/data/public/query/state_sync/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1971,6 +2069,7 @@ ], "path": "src/plugins/data/public/query/query_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1989,7 +2088,8 @@ } ], "path": "src/plugins/data/public/query/query_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2008,7 +2108,8 @@ } ], "path": "src/plugins/data/public/query/query_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2043,7 +2144,8 @@ ") => void; clearQuery: () => void; }" ], "path": "src/plugins/data/public/query/query_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2073,7 +2175,8 @@ "; }>" ], "path": "src/plugins/data/public/query/query_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2094,6 +2197,7 @@ ], "path": "src/plugins/data/public/query/query_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2135,6 +2239,7 @@ ], "path": "src/plugins/data/public/query/query_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2153,7 +2258,8 @@ } ], "path": "src/plugins/data/public/query/query_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2172,7 +2278,8 @@ } ], "path": "src/plugins/data/public/query/query_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2207,7 +2314,8 @@ ") => void; clearQuery: () => void; }" ], "path": "src/plugins/data/public/query/query_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2237,7 +2345,8 @@ "; }>" ], "path": "src/plugins/data/public/query/query_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2258,6 +2367,7 @@ ], "path": "src/plugins/data/public/query/query_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2275,6 +2385,7 @@ ], "path": "src/plugins/data/public/query/query_service.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2285,7 +2396,8 @@ "label": "appName", "description": [], "path": "src/plugins/data/public/query/lib/add_to_query_log.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2298,7 +2410,8 @@ "{ query: string | { [key: string]: any; }; language: string; }" ], "path": "src/plugins/data/public/query/lib/add_to_query_log.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2369,7 +2482,8 @@ ">; deleteSavedQuery: (id: string) => Promise<{}>; getSavedQueryCount: () => Promise; }" ], "path": "src/plugins/data/public/query/query_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2395,6 +2509,7 @@ ], "path": "src/plugins/data/public/query/query_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2414,6 +2529,7 @@ ], "path": "src/plugins/data/public/query/query_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2429,6 +2545,7 @@ ], "path": "src/plugins/data/public/query/query_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2456,6 +2573,7 @@ ], "path": "src/plugins/data/public/query/state_sync/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2468,7 +2586,8 @@ "boolean | undefined" ], "path": "src/plugins/data/public/query/state_sync/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2481,7 +2600,8 @@ "boolean | undefined" ], "path": "src/plugins/data/public/query/state_sync/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2495,6 +2615,7 @@ "description": [], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2504,7 +2625,8 @@ "label": "id", "description": [], "path": "src/plugins/data/public/query/saved_query/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2517,7 +2639,8 @@ "SavedQueryAttributes" ], "path": "src/plugins/data/public/query/saved_query/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2531,6 +2654,7 @@ "description": [], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2554,6 +2678,7 @@ ], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2567,6 +2692,7 @@ ], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2594,6 +2720,7 @@ ], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2607,6 +2734,7 @@ ], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2621,6 +2749,7 @@ ], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2646,6 +2775,7 @@ ], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2669,6 +2799,7 @@ ], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2682,6 +2813,7 @@ ], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2696,6 +2828,7 @@ ], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2710,6 +2843,7 @@ ], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2735,6 +2869,7 @@ ], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2748,6 +2883,7 @@ ], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2765,6 +2901,7 @@ ], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2778,6 +2915,7 @@ ], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2795,6 +2933,7 @@ ], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2810,6 +2949,7 @@ "description": [], "path": "src/plugins/data/public/query/timefilter/timefilter_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2930,7 +3070,8 @@ "; }" ], "path": "src/plugins/data/public/query/timefilter/timefilter_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2951,7 +3092,8 @@ "[]>; }" ], "path": "src/plugins/data/public/query/timefilter/timefilter_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2971,6 +3113,7 @@ ], "path": "src/plugins/data/public/query/timefilter/lib/auto_refresh_loop.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -3004,6 +3147,7 @@ ], "path": "src/plugins/data/public/query/state_sync/create_query_state_observable.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3040,6 +3184,7 @@ ], "path": "src/plugins/data/public/query/query_string/query_string_manager.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3063,6 +3208,7 @@ ], "path": "src/plugins/data/public/query/saved_query/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3185,6 +3331,7 @@ ], "path": "src/plugins/data/public/query/timefilter/timefilter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3207,6 +3354,7 @@ ], "path": "src/plugins/data/public/query/timefilter/time_history.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3246,6 +3394,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3259,6 +3408,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3273,6 +3423,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3294,6 +3445,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3307,6 +3459,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3318,6 +3471,7 @@ "description": [], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3330,7 +3484,8 @@ "Date | undefined" ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -3366,6 +3521,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3386,6 +3542,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -3400,6 +3557,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3411,6 +3569,7 @@ "description": [], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3423,7 +3582,8 @@ "Date | undefined" ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -3436,7 +3596,8 @@ "string | undefined" ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -3472,6 +3633,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3492,6 +3654,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -3506,6 +3669,7 @@ ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3517,6 +3681,7 @@ "description": [], "path": "src/plugins/data/common/query/timefilter/get_time.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3529,7 +3694,8 @@ "Date | undefined" ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -3542,7 +3708,8 @@ "string | undefined" ], "path": "src/plugins/data/common/query/timefilter/get_time.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -3563,6 +3730,7 @@ ], "path": "src/plugins/data/common/query/is_query.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3576,6 +3744,7 @@ ], "path": "src/plugins/data/common/query/is_query.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3601,6 +3770,7 @@ ], "path": "src/plugins/data/common/query/timefilter/is_time_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3614,6 +3784,7 @@ ], "path": "src/plugins/data/common/query/timefilter/is_time_range.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3642,6 +3813,7 @@ ], "path": "src/plugins/data/common/query/to_expression_ast.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3655,6 +3827,7 @@ ], "path": "src/plugins/data/common/query/to_expression_ast.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3672,6 +3845,7 @@ "description": [], "path": "src/plugins/data/common/query/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3681,7 +3855,8 @@ "label": "id", "description": [], "path": "src/plugins/data/common/query/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -3700,7 +3875,8 @@ } ], "path": "src/plugins/data/common/query/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3714,6 +3890,7 @@ "description": [], "path": "src/plugins/data/common/query/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3723,7 +3900,8 @@ "label": "title", "description": [], "path": "src/plugins/data/common/query/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -3733,7 +3911,8 @@ "label": "description", "description": [], "path": "src/plugins/data/common/query/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -3746,7 +3925,8 @@ "{ query: string | { [key: string]: any; }; language: string; }" ], "path": "src/plugins/data/common/query/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -3760,7 +3940,8 @@ "[] | undefined" ], "path": "src/plugins/data/common/query/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -3780,7 +3961,8 @@ " | undefined" ], "path": "src/plugins/data/common/query/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3794,6 +3976,7 @@ "description": [], "path": "src/plugins/data/common/query/timefilter/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3806,7 +3989,8 @@ "moment.Moment | undefined" ], "path": "src/plugins/data/common/query/timefilter/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -3819,7 +4003,8 @@ "moment.Moment | undefined" ], "path": "src/plugins/data/common/query/timefilter/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3863,6 +4048,7 @@ ], "path": "src/plugins/data/common/query/query_state.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3877,6 +4063,7 @@ ], "path": "src/plugins/data/common/query/timefilter/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3906,6 +4093,7 @@ ], "path": "src/plugins/data/common/query/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3920,6 +4108,7 @@ ], "path": "src/plugins/data/common/query/timefilter/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/data_query.mdx b/api_docs/data_query.mdx index a9911d5e38323..acc0894eabca6 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.query'] --- import dataQueryObj from './data_query.devdocs.json'; diff --git a/api_docs/data_search.devdocs.json b/api_docs/data_search.devdocs.json index 0864af82f6d7f..652737b0a23a4 100644 --- a/api_docs/data_search.devdocs.json +++ b/api_docs/data_search.devdocs.json @@ -17,6 +17,7 @@ ], "path": "src/plugins/data/public/search/errors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30,6 +31,7 @@ ], "path": "src/plugins/data/public/search/errors/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -76,6 +78,7 @@ ], "path": "src/plugins/data/public/search/session/session_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -97,6 +100,7 @@ ], "path": "src/plugins/data/public/search/session/session_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -117,6 +121,7 @@ ], "path": "src/plugins/data/public/search/session/session_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -136,6 +141,7 @@ ], "path": "src/plugins/data/public/search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -154,7 +160,8 @@ } ], "path": "src/plugins/data/public/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -174,7 +181,8 @@ " | undefined" ], "path": "src/plugins/data/public/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -223,7 +231,8 @@ "

, searchSessionIndicatorUiConfig?: SearchSessionIndicatorUiConfig | undefined) => void; isSessionStorageReady: () => boolean; getSearchSessionIndicatorUiConfig: () => SearchSessionIndicatorUiConfig; }" ], "path": "src/plugins/data/public/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -276,7 +285,8 @@ ", unknown>>; }" ], "path": "src/plugins/data/public/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -292,6 +302,7 @@ ], "path": "src/plugins/data/public/search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -378,7 +389,8 @@ "[]; }; }; }" ], "path": "src/plugins/data/public/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -436,6 +448,7 @@ ], "path": "src/plugins/data/public/search/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -449,7 +462,8 @@ "SearchStrategyRequest" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -469,7 +483,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -487,6 +502,7 @@ ], "path": "src/plugins/data/public/search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -502,6 +518,7 @@ ], "path": "src/plugins/data/public/search/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -531,6 +548,7 @@ ], "path": "src/plugins/data/public/search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -550,6 +568,7 @@ ], "path": "src/plugins/data/public/search/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -567,6 +586,7 @@ ], "path": "src/plugins/data/public/search/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -591,7 +611,8 @@ } ], "path": "src/plugins/data/public/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -640,7 +661,8 @@ "

, searchSessionIndicatorUiConfig?: SearchSessionIndicatorUiConfig | undefined) => void; isSessionStorageReady: () => boolean; getSearchSessionIndicatorUiConfig: () => SearchSessionIndicatorUiConfig; }" ], "path": "src/plugins/data/public/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -693,7 +715,8 @@ ", unknown>>; }" ], "path": "src/plugins/data/public/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -707,6 +730,7 @@ "description": [], "path": "src/plugins/data/public/search/errors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -716,7 +740,8 @@ "label": "type", "description": [], "path": "src/plugins/data/public/search/errors/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -726,7 +751,8 @@ "label": "reason", "description": [], "path": "src/plugins/data/public/search/errors/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -739,7 +765,8 @@ "string[] | undefined" ], "path": "src/plugins/data/public/search/errors/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -752,7 +779,8 @@ "{ offset: number; start: number; end: number; } | undefined" ], "path": "src/plugins/data/public/search/errors/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -765,7 +793,8 @@ "string | undefined" ], "path": "src/plugins/data/public/search/errors/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -778,7 +807,8 @@ "string | undefined" ], "path": "src/plugins/data/public/search/errors/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -791,7 +821,8 @@ "{ type: string; reason: string; } | undefined" ], "path": "src/plugins/data/public/search/errors/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -817,6 +848,7 @@ ], "path": "src/plugins/data/public/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -832,6 +864,7 @@ ], "path": "src/plugins/data/public/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -848,7 +881,8 @@ "boolean | undefined" ], "path": "src/plugins/data/public/search/session/session_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -862,6 +896,7 @@ ], "path": "src/plugins/data/public/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -877,6 +912,7 @@ "description": [], "path": "src/plugins/data/public/search/collectors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -890,6 +926,7 @@ ], "path": "src/plugins/data/public/search/collectors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -905,6 +942,7 @@ ], "path": "src/plugins/data/public/search/collectors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -920,6 +958,7 @@ ], "path": "src/plugins/data/public/search/collectors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -935,6 +974,7 @@ ], "path": "src/plugins/data/public/search/collectors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -950,6 +990,7 @@ ], "path": "src/plugins/data/public/search/collectors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -965,6 +1006,7 @@ ], "path": "src/plugins/data/public/search/collectors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -980,6 +1022,7 @@ ], "path": "src/plugins/data/public/search/collectors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -995,6 +1038,7 @@ ], "path": "src/plugins/data/public/search/collectors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1010,6 +1054,7 @@ ], "path": "src/plugins/data/public/search/collectors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1025,6 +1070,7 @@ ], "path": "src/plugins/data/public/search/collectors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1040,6 +1086,7 @@ ], "path": "src/plugins/data/public/search/collectors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1055,6 +1102,7 @@ ], "path": "src/plugins/data/public/search/collectors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1070,6 +1118,7 @@ ], "path": "src/plugins/data/public/search/collectors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1085,6 +1134,7 @@ ], "path": "src/plugins/data/public/search/collectors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1102,6 +1152,7 @@ ], "path": "src/plugins/data/public/search/session/session_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1116,7 +1167,8 @@ "number | undefined" ], "path": "src/plugins/data/public/search/session/session_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1134,6 +1186,7 @@ ], "path": "src/plugins/data/public/search/session/search_session_state.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1157,6 +1210,7 @@ ], "path": "src/plugins/data/public/search/errors/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1209,6 +1263,7 @@ ], "path": "src/plugins/data/public/search/session/sessions_client.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1257,6 +1312,7 @@ ], "path": "src/plugins/data/public/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1270,6 +1326,7 @@ ], "path": "src/plugins/data/public/search/session/i18n.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1284,6 +1341,7 @@ ], "path": "src/plugins/data/public/search/session/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1317,6 +1375,7 @@ ], "path": "src/plugins/data/server/search/errors/no_search_id_in_session.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1330,6 +1389,7 @@ ], "path": "src/plugins/data/server/search/errors/no_search_id_in_session.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1362,6 +1422,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1375,6 +1436,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1388,6 +1450,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1402,6 +1465,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1416,6 +1480,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1441,6 +1506,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1461,6 +1527,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1475,6 +1542,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1500,6 +1568,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1519,6 +1588,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1533,6 +1603,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1550,6 +1621,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1593,6 +1665,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1606,6 +1679,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1627,6 +1701,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1641,6 +1716,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1663,6 +1739,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1700,6 +1777,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1713,6 +1791,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1734,6 +1813,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1748,6 +1828,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1787,6 +1868,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1800,6 +1882,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1821,6 +1904,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1837,6 +1921,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1882,6 +1967,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -1895,6 +1981,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1916,6 +2003,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1930,6 +2018,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1952,6 +2041,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1989,6 +2079,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2002,6 +2093,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2023,6 +2115,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2037,6 +2130,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2051,6 +2145,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2088,6 +2183,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2101,6 +2197,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2122,6 +2219,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2136,6 +2234,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2163,6 +2262,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2176,6 +2276,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2197,6 +2298,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2211,6 +2313,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2238,6 +2341,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2251,6 +2355,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2272,6 +2377,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2286,6 +2392,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2423,6 +2530,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2442,6 +2550,7 @@ ], "path": "src/plugins/data/server/search/session/session_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2474,6 +2583,7 @@ ], "path": "src/plugins/data/server/search/strategies/ese_search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2483,7 +2593,8 @@ "label": "completion_status", "description": [], "path": "src/plugins/data/server/search/strategies/ese_search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2496,7 +2607,8 @@ "ShardStatistics" ], "path": "src/plugins/data/server/search/strategies/ese_search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2527,6 +2639,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2558,6 +2671,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2568,7 +2682,8 @@ "label": "sessionId", "description": [], "path": "src/plugins/data/server/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2601,7 +2716,8 @@ "> | undefined; persisted?: boolean | undefined; realmType?: string | undefined; realmName?: string | undefined; username?: string | undefined; version?: string | undefined; }" ], "path": "src/plugins/data/server/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2627,6 +2743,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2637,7 +2754,8 @@ "label": "sessionId", "description": [], "path": "src/plugins/data/server/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2665,6 +2783,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2688,7 +2807,8 @@ " | undefined; }" ], "path": "src/plugins/data/server/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2722,6 +2842,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2732,7 +2853,8 @@ "label": "sessionId", "description": [], "path": "src/plugins/data/server/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2765,7 +2887,8 @@ "> | undefined; persisted?: boolean | undefined; realmType?: string | undefined; realmName?: string | undefined; username?: string | undefined; version?: string | undefined; }" ], "path": "src/plugins/data/server/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2781,6 +2904,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2791,7 +2915,8 @@ "label": "sessionId", "description": [], "path": "src/plugins/data/server/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2807,6 +2932,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2817,7 +2943,8 @@ "label": "sessionId", "description": [], "path": "src/plugins/data/server/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2843,6 +2970,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2853,7 +2981,8 @@ "label": "sessionId", "description": [], "path": "src/plugins/data/server/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -2866,7 +2995,8 @@ "Date" ], "path": "src/plugins/data/server/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2882,6 +3012,7 @@ "description": [], "path": "src/plugins/data/server/search/session/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2906,6 +3037,7 @@ ], "path": "src/plugins/data/server/search/session/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2925,6 +3057,7 @@ ], "path": "src/plugins/data/server/search/session/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2954,6 +3087,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2985,6 +3119,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -2998,6 +3133,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3018,6 +3154,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3038,6 +3175,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3071,6 +3209,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3084,6 +3223,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3104,6 +3244,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3124,6 +3265,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3157,6 +3299,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3170,6 +3313,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3184,6 +3328,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3204,6 +3349,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3224,6 +3370,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3241,6 +3388,7 @@ "description": [], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3253,7 +3401,8 @@ "SavedObjectsClientContract" ], "path": "src/plugins/data/server/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -3266,7 +3415,8 @@ "IScopedClusterClient" ], "path": "src/plugins/data/server/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -3279,7 +3429,8 @@ "{ get: (key: string) => Promise; }" ], "path": "src/plugins/data/server/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -3292,7 +3443,8 @@ "IScopedSearchSessionsClient" ], "path": "src/plugins/data/server/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -3306,7 +3458,8 @@ "" ], "path": "src/plugins/data/server/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3341,6 +3494,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3361,6 +3515,7 @@ ], "path": "src/plugins/data/server/search/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3377,6 +3532,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3394,6 +3550,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3409,6 +3566,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3440,6 +3598,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3460,6 +3619,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3484,7 +3644,8 @@ } ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -3494,7 +3655,8 @@ "label": "id", "description": [], "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -3504,7 +3666,8 @@ "label": "enabled", "description": [], "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -3517,7 +3680,8 @@ "any" ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -3537,7 +3701,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -3550,7 +3715,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -3563,7 +3729,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -3577,6 +3744,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3596,6 +3764,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3616,6 +3785,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3637,6 +3807,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3652,6 +3823,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3669,6 +3841,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3682,6 +3855,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3699,6 +3873,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3714,6 +3889,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3737,6 +3913,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3757,6 +3934,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3774,6 +3952,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3789,6 +3968,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3802,6 +3982,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3816,6 +3997,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3853,6 +4035,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3872,6 +4055,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3893,6 +4077,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3922,6 +4107,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -3944,6 +4130,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3965,6 +4152,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "Returns a serialized representation of an AggConfig." @@ -3987,6 +4175,7 @@ "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": true, "removeBy": "8.1", + "trackAdoption": false, "references": [], "children": [], "returnComment": [] @@ -4023,6 +4212,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4046,6 +4236,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "Returns an ExpressionAst representing the this agg type." @@ -4079,6 +4270,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4102,6 +4294,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4125,6 +4318,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4140,6 +4334,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4153,6 +4348,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4170,6 +4366,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4185,6 +4382,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4198,6 +4396,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4212,6 +4411,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4229,6 +4429,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4244,6 +4445,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4261,6 +4463,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4276,6 +4479,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4289,6 +4493,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4313,6 +4518,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4330,6 +4536,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4345,6 +4552,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4360,6 +4568,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4405,7 +4614,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -4449,7 +4659,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -4471,6 +4682,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4490,6 +4702,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4507,6 +4720,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4520,7 +4734,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -4533,7 +4748,8 @@ "string[] | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -4546,7 +4762,8 @@ "Date | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -4566,7 +4783,8 @@ "[]" ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -4576,7 +4794,8 @@ "label": "timeZone", "description": [], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -4590,6 +4809,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4609,6 +4829,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4630,6 +4851,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4650,6 +4872,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4670,6 +4893,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4683,7 +4907,8 @@ "label": "hierarchical", "description": [], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -4693,7 +4918,8 @@ "label": "partialRows", "description": [], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -4707,6 +4933,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4720,6 +4947,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4737,6 +4965,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4750,6 +4979,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4769,6 +4999,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4782,6 +5013,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4809,6 +5041,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "Current time range as resolved date." @@ -4841,6 +5074,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4851,6 +5085,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4863,7 +5098,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -4884,7 +5120,8 @@ "> | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -4927,6 +5164,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -4946,6 +5184,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4960,6 +5199,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4987,6 +5227,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -5009,6 +5250,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5026,6 +5268,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5049,6 +5292,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5071,6 +5315,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -5084,6 +5329,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5109,6 +5355,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -5122,6 +5369,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5147,6 +5395,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -5160,6 +5409,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5185,6 +5435,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -5198,6 +5449,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5223,6 +5475,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -5236,6 +5489,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5261,6 +5515,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -5274,6 +5529,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5299,6 +5555,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5314,6 +5571,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5329,6 +5587,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5344,6 +5603,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5361,6 +5621,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -5374,6 +5635,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -5407,6 +5669,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -5427,6 +5690,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5452,6 +5716,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -5465,6 +5730,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5494,6 +5760,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5521,6 +5788,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -5536,6 +5804,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5569,6 +5838,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -5588,6 +5858,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5609,6 +5880,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -5635,6 +5907,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The expression AST." @@ -5670,6 +5943,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/agg.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -5685,6 +5959,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/agg.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -5698,7 +5973,8 @@ "TAggConfig" ], "path": "src/plugins/data/common/search/aggs/param_types/agg.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5713,7 +5989,8 @@ " | undefined; schema?: string | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/param_types/agg.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -5728,7 +6005,8 @@ "string[]" ], "path": "src/plugins/data/common/search/aggs/param_types/agg.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5742,6 +6020,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/agg.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -5755,6 +6034,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/agg.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5774,6 +6054,7 @@ ], "path": "src/plugins/data/common/search/aggs/aggs_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -5787,6 +6068,7 @@ ], "path": "src/plugins/data/common/search/aggs/aggs_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -5800,6 +6082,7 @@ ], "path": "src/plugins/data/common/search/aggs/aggs_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -5832,6 +6115,7 @@ ], "path": "src/plugins/data/common/search/aggs/aggs_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -5851,6 +6135,7 @@ ], "path": "src/plugins/data/common/search/aggs/aggs_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5883,6 +6168,7 @@ ], "path": "src/plugins/data/common/search/aggs/aggs_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -5902,6 +6188,7 @@ ], "path": "src/plugins/data/common/search/aggs/aggs_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5929,6 +6216,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -5943,7 +6231,8 @@ "\nthe unique, unchanging, name that we have assigned this aggType\n" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5953,7 +6242,8 @@ "label": "type", "description": [], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5966,7 +6256,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5981,7 +6272,8 @@ "\nthe name of the elasticsearch aggregation that this aggType represents. Usually just this.name\n" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -5996,7 +6288,8 @@ "\nthe name of the expression function that this aggType represents.\n" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6011,7 +6304,8 @@ "\nthe user friendly name that will be shown in the ui for this aggType\n" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6033,7 +6327,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6051,6 +6346,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [ "- label that can be used in the ui to describe the aggConfig" ], @@ -6068,7 +6364,8 @@ "TAggConfig" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -6088,7 +6385,8 @@ "any" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6102,7 +6400,8 @@ "\nFlag that prevents this aggregation from being included in the dsl. This is only\nused by the count aggregation (currently) since it doesn't really exist and it's output\nis available on every bucket.\n" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6116,7 +6415,8 @@ "\nFlag that prevents params from this aggregation from being included in the dsl. Sibling and parent aggs are still written.\n" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6131,7 +6431,8 @@ "((aggConfig: TAggConfig, key: any, params?: any) => any) | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6149,7 +6450,8 @@ "TParam[]" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6167,6 +6469,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [ "- an array of aggConfig objects\n that should replace this one,\n or undefined" ], @@ -6182,7 +6485,8 @@ "TAggConfig" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -6202,6 +6506,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [ "- an array of aggConfig objects\n that should replace this one,\n or undefined" ], @@ -6217,7 +6522,8 @@ "TAggConfig" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -6235,6 +6541,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -6249,7 +6556,8 @@ "((aggBucket: Record) => boolean) | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6299,6 +6607,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6317,7 +6626,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6338,7 +6648,8 @@ } ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6353,7 +6664,8 @@ "TAggConfig" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6588,7 +6900,8 @@ "; parseActiveIndexPatternFromQueryString: (queryString: string) => string[]; }" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6608,7 +6921,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6623,7 +6937,8 @@ "AbortSignal | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6638,7 +6953,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -6676,6 +6992,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6691,7 +7008,8 @@ "TAggConfig" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -6707,6 +7025,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6720,7 +7039,8 @@ "TAggConfig" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6733,7 +7053,8 @@ "any" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -6748,7 +7069,8 @@ "((bucket: any, key: any, agg: TAggConfig) => any) | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -6762,6 +7084,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -6775,6 +7098,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6792,6 +7116,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -6805,6 +7130,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6830,6 +7156,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -6843,6 +7170,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6863,6 +7191,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6884,6 +7213,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6899,7 +7229,8 @@ "TAggConfig" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -6920,6 +7251,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -6950,6 +7282,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6967,6 +7300,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/agg_types_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7012,6 +7346,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_types_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -7067,6 +7402,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_types_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7086,6 +7422,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_types_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7113,6 +7450,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7122,7 +7460,8 @@ "label": "name", "description": [], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7132,7 +7471,8 @@ "label": "type", "description": [], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7142,7 +7482,8 @@ "label": "displayName", "description": [], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7152,7 +7493,8 @@ "label": "required", "description": [], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7162,7 +7504,8 @@ "label": "advanced", "description": [], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7175,7 +7518,8 @@ "any" ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7197,6 +7541,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7210,7 +7555,8 @@ "TAggConfig" ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7223,7 +7569,8 @@ "{ [x: string]: any; }" ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7243,7 +7590,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7256,7 +7604,8 @@ "Record | undefined" ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -7272,6 +7621,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7285,7 +7635,8 @@ "any" ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7298,7 +7649,8 @@ "TAggConfig | undefined" ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -7314,6 +7666,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7327,7 +7680,8 @@ "any" ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7340,7 +7694,8 @@ "TAggConfig | undefined" ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -7371,7 +7726,8 @@ "[] | undefined) | undefined" ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7384,7 +7740,8 @@ "any[]" ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7397,7 +7754,8 @@ "any" ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7429,6 +7787,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7442,7 +7801,8 @@ "TAggConfig" ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7462,7 +7822,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7482,7 +7843,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -7498,6 +7860,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7511,6 +7874,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/base.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7554,6 +7918,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7567,6 +7932,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7580,7 +7946,8 @@ "any" ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7593,7 +7960,8 @@ "any" ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7606,7 +7974,8 @@ "TBucketAggConfig" ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -7618,7 +7987,8 @@ "label": "type", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7632,6 +8002,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7645,6 +8016,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7659,6 +8031,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7673,6 +8046,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7690,6 +8064,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7703,6 +8078,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7736,6 +8112,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7749,6 +8126,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7769,6 +8147,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7789,6 +8168,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7806,6 +8186,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7819,6 +8200,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7836,6 +8218,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/buckets/lib/cidr_mask.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7849,6 +8232,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/lib/cidr_mask.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7862,6 +8246,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/lib/cidr_mask.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7879,6 +8264,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/lib/cidr_mask.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -7894,6 +8280,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/lib/cidr_mask.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -7935,6 +8322,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -7944,7 +8332,8 @@ "label": "required", "description": [], "path": "src/plugins/data/common/search/aggs/param_types/field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7954,7 +8343,8 @@ "label": "scriptable", "description": [], "path": "src/plugins/data/common/search/aggs/param_types/field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7970,7 +8360,8 @@ "[]" ], "path": "src/plugins/data/common/search/aggs/param_types/field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -7980,7 +8371,8 @@ "label": "onlyAggregatable", "description": [], "path": "src/plugins/data/common/search/aggs/param_types/field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8002,7 +8394,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/param_types/field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8016,6 +8409,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8029,6 +8423,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/field.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8064,6 +8459,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8083,6 +8479,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/field.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8110,6 +8507,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/invalid_es_calendar_interval_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8123,6 +8521,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/invalid_es_calendar_interval_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8136,6 +8535,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/invalid_es_calendar_interval_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8150,6 +8550,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/invalid_es_calendar_interval_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8164,6 +8565,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/invalid_es_calendar_interval_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8178,6 +8580,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/invalid_es_calendar_interval_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8205,6 +8608,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/invalid_es_interval_format_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8218,6 +8622,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/invalid_es_interval_format_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8231,6 +8636,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/invalid_es_interval_format_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8248,6 +8654,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/utils/ip_address.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8261,6 +8668,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/ip_address.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8274,6 +8682,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/ip_address.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8291,6 +8700,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/ip_address.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -8332,6 +8742,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/json.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8345,6 +8756,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/json.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8358,6 +8770,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/json.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8401,6 +8814,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8410,7 +8824,8 @@ "label": "subtype", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8424,6 +8839,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_type.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -8435,7 +8851,8 @@ "label": "type", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8449,6 +8866,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8464,6 +8882,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8477,6 +8896,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8494,6 +8914,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/buckets/multi_field_key.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8503,7 +8924,8 @@ "label": "[id]", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/multi_field_key.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8516,7 +8938,8 @@ "string[]" ], "path": "src/plugins/data/common/search/aggs/buckets/multi_field_key.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8530,6 +8953,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/multi_field_key.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8543,6 +8967,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/multi_field_key.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8560,6 +8985,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/multi_field_key.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8573,6 +8999,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/multi_field_key.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8590,6 +9017,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/multi_field_key.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -8631,6 +9059,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8650,7 +9079,8 @@ "[]" ], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8664,6 +9094,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8677,6 +9108,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8713,6 +9145,7 @@ ], "path": "src/plugins/data/common/search/search_source/fetch/request_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8732,7 +9165,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/search_source/fetch/request_error.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8746,6 +9180,7 @@ ], "path": "src/plugins/data/common/search/search_source/fetch/request_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8766,6 +9201,7 @@ ], "path": "src/plugins/data/common/search/search_source/fetch/request_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -8787,6 +9223,7 @@ ], "path": "src/plugins/data/common/search/search_source/fetch/request_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -8804,6 +9241,7 @@ "description": [], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8817,7 +9255,8 @@ "[]" ], "path": "src/plugins/data/common/search/search_source/search_source.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -8831,6 +9270,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8850,6 +9290,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8870,6 +9311,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8889,6 +9331,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8904,6 +9347,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -8939,6 +9383,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -8954,6 +9399,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8977,6 +9423,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9004,6 +9451,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -9019,6 +9467,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9048,6 +9497,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -9069,6 +9519,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9088,6 +9539,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -9112,6 +9564,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -9145,6 +9598,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -9158,6 +9612,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9172,6 +9627,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9189,6 +9645,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -9222,6 +9679,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -9235,6 +9693,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9261,6 +9720,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "discover", @@ -9303,6 +9763,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -9327,6 +9788,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -9340,6 +9802,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9375,6 +9838,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -9397,6 +9861,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -9419,6 +9884,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9446,6 +9912,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -9485,6 +9952,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -9504,6 +9972,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9537,6 +10006,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "stackAlerts", @@ -9622,6 +10092,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9657,6 +10128,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -9686,6 +10158,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9705,6 +10178,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -9722,6 +10196,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -9746,6 +10221,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -9759,6 +10235,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9780,6 +10257,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -9804,6 +10282,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -9817,6 +10296,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9834,6 +10314,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -9847,6 +10328,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9864,6 +10346,7 @@ "description": [], "path": "src/plugins/data/common/search/search_source/search_source_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -9885,6 +10368,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -9984,6 +10468,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -10003,6 +10488,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10023,6 +10509,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10040,6 +10527,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -10081,6 +10569,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/string.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -10094,6 +10583,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/string.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -10107,6 +10597,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/string.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10138,6 +10629,7 @@ ], "path": "src/plugins/data/common/search/expressions/utils/filters_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -10151,6 +10643,7 @@ ], "path": "src/plugins/data/common/search/expressions/utils/filters_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10169,6 +10662,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/avg_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10185,6 +10679,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_avg_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10201,6 +10696,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_max_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10217,6 +10713,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_min_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10233,6 +10730,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_sum_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10249,6 +10747,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/cardinality_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10265,6 +10764,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/count_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10281,6 +10781,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/cumulative_sum_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10297,6 +10798,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10313,6 +10815,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/date_range_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10329,6 +10832,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/derivative_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10345,6 +10849,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/diversified_sampler_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10361,6 +10866,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/filter_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10377,6 +10883,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/filtered_metric_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10393,6 +10900,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/filters_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10409,6 +10917,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/geo_bounds_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10425,6 +10934,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/geo_centroid_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10441,6 +10951,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/geo_hash_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10457,6 +10968,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/geo_tile_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10473,6 +10985,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/histogram_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10489,6 +11002,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/ip_range_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10505,6 +11019,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/max_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10521,6 +11036,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/median_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10537,6 +11053,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/min_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10553,6 +11070,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/moving_avg_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10569,6 +11087,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/multi_terms_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10585,6 +11104,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/percentile_ranks_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10601,6 +11121,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/percentiles_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10617,6 +11138,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/range_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10633,6 +11155,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/rare_terms_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10659,6 +11182,7 @@ ], "path": "src/plugins/data/common/search/expressions/aggregate_query_to_ast.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -10672,6 +11196,7 @@ ], "path": "src/plugins/data/common/search/expressions/aggregate_query_to_ast.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10686,6 +11211,7 @@ ], "path": "src/plugins/data/common/search/expressions/aggregate_query_to_ast.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -10704,6 +11230,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/sampler_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10720,6 +11247,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/serial_diff_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10736,6 +11264,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/significant_terms_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10752,6 +11281,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/significant_text_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10768,6 +11298,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/single_percentile_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10784,6 +11315,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/single_percentile_rank_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10800,6 +11332,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/std_deviation_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10816,6 +11349,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/sum_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10832,6 +11366,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/terms_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10848,6 +11383,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/top_hit_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10864,6 +11400,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/top_metrics_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10880,6 +11417,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/value_count_fn.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -10898,6 +11436,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/lib/time_buckets/calc_auto_interval.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -10913,6 +11452,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/lib/time_buckets/calc_auto_interval.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10929,6 +11469,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/lib/time_buckets/calc_auto_interval.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10949,6 +11490,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/lib/time_buckets/calc_auto_interval.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -10964,6 +11506,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/lib/time_buckets/calc_auto_interval.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10980,6 +11523,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/lib/time_buckets/calc_auto_interval.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -11013,6 +11557,7 @@ ], "path": "src/plugins/data/common/search/expressions/cidr_to_ast.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11032,6 +11577,7 @@ ], "path": "src/plugins/data/common/search/expressions/cidr_to_ast.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -11058,6 +11604,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/lib/date_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11077,6 +11624,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/lib/date_range.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -11091,6 +11639,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/lib/date_range.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -11117,6 +11666,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/lib/ip_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11136,6 +11686,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/lib/ip_range.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -11150,6 +11701,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/lib/ip_range.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -11204,6 +11756,7 @@ ], "path": "src/plugins/data/common/search/search_source/create_search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11225,6 +11778,7 @@ ], "path": "src/plugins/data/common/search/search_source/create_search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -11245,6 +11799,7 @@ ], "path": "src/plugins/data/common/search/search_source/create_search_source.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -11267,6 +11822,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/date_histogram_interval.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11282,6 +11838,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/date_histogram_interval.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -11296,6 +11853,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/date_histogram_interval.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -11329,6 +11887,7 @@ ], "path": "src/plugins/data/common/search/expressions/date_range_to_ast.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11348,6 +11907,7 @@ ], "path": "src/plugins/data/common/search/expressions/date_range_to_ast.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -11381,6 +11941,7 @@ ], "path": "src/plugins/data/common/search/expressions/extended_bounds_to_ast.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11400,6 +11961,7 @@ ], "path": "src/plugins/data/common/search/expressions/extended_bounds_to_ast.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -11436,6 +11998,7 @@ ], "path": "src/plugins/data/common/search/search_source/extract_references.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11455,6 +12018,7 @@ ], "path": "src/plugins/data/common/search/search_source/extract_references.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -11485,6 +12049,7 @@ ], "path": "src/plugins/data/common/search/expressions/filters_to_ast.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11501,6 +12066,7 @@ ], "path": "src/plugins/data/common/search/expressions/filters_to_ast.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -11529,6 +12095,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify_docs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11544,6 +12111,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify_docs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -11567,6 +12135,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify_docs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -11583,6 +12152,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify_docs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -11629,6 +12199,7 @@ ], "path": "src/plugins/data/common/search/expressions/utils/function_wrapper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11648,6 +12219,7 @@ ], "path": "src/plugins/data/common/search/expressions/utils/function_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -11681,6 +12253,7 @@ ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box_to_ast.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11700,6 +12273,7 @@ ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box_to_ast.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -11733,6 +12307,7 @@ ], "path": "src/plugins/data/common/search/expressions/geo_point_to_ast.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11752,6 +12327,7 @@ ], "path": "src/plugins/data/common/search/expressions/geo_point_to_ast.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -11786,6 +12362,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/avg.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -11818,6 +12395,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_avg.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -11850,6 +12428,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_max.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -11882,6 +12461,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_min.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -11914,6 +12494,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_sum.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -11938,6 +12519,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/calculate_auto_time_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -11951,6 +12533,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/calculate_auto_time_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -11985,6 +12568,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/cardinality.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -12017,6 +12601,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/count.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -12049,6 +12634,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/cumulative_sum.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -12089,6 +12675,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12108,6 +12695,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12150,6 +12738,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/date_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12169,6 +12758,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/date_range.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12203,6 +12793,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/derivative.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -12237,6 +12828,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/diversified_sampler.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -12260,6 +12852,7 @@ ], "path": "src/plugins/data/common/search/expressions/eql.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12270,6 +12863,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/eql.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12283,6 +12877,7 @@ ], "path": "src/plugins/data/common/search/expressions/eql.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12296,6 +12891,7 @@ ], "path": "src/plugins/data/common/search/expressions/eql.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12326,6 +12922,7 @@ ], "path": "src/plugins/data/common/search/expressions/esdsl.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12336,6 +12933,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/esdsl.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12349,6 +12947,7 @@ ], "path": "src/plugins/data/common/search/expressions/esdsl.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12362,6 +12961,7 @@ ], "path": "src/plugins/data/common/search/expressions/esdsl.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12403,6 +13003,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12413,6 +13014,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/buckets/filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12426,6 +13028,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12439,6 +13042,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12465,6 +13069,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/filter.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -12478,7 +13083,8 @@ "{ from: string; to: string; mode?: \"absolute\" | \"relative\" | undefined; }" ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -12524,6 +13130,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/filtered_metric.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12543,6 +13150,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/filtered_metric.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12585,6 +13193,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/filters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12604,6 +13213,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12638,6 +13248,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/geo_bounds.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -12670,6 +13281,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/geo_centroid.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -12702,6 +13314,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/geo_hash.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -12726,6 +13339,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/geo_tile.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -12766,6 +13380,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12785,6 +13400,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12819,6 +13435,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/ip_range.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -12852,6 +13469,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_context.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -12875,6 +13493,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_context.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12909,6 +13528,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/max.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -12941,6 +13561,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/median.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -12973,6 +13594,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/min.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -13005,6 +13627,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/moving_avg.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -13037,6 +13660,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/multi_terms.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -13071,6 +13695,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/percentile_ranks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13090,6 +13715,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/percentile_ranks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13118,6 +13744,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/percentiles.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -13142,6 +13769,7 @@ ], "path": "src/plugins/data/common/search/search_source/fetch/get_search_params.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13161,6 +13789,7 @@ ], "path": "src/plugins/data/common/search/search_source/fetch/get_search_params.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13203,6 +13832,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13222,6 +13852,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/range.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13256,6 +13887,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/rare_terms.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -13291,6 +13923,7 @@ ], "path": "src/plugins/data/common/search/search_source/inspect/inspector_stats.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13307,6 +13940,7 @@ ], "path": "src/plugins/data/common/search/search_source/inspect/inspector_stats.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -13328,6 +13962,7 @@ ], "path": "src/plugins/data/common/search/search_source/inspect/inspector_stats.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -13364,6 +13999,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/sampler.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -13388,6 +14024,7 @@ ], "path": "src/plugins/data/common/search/search_source/fetch/get_search_params.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13407,6 +14044,7 @@ ], "path": "src/plugins/data/common/search/search_source/fetch/get_search_params.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13442,6 +14080,7 @@ ], "path": "src/plugins/data/common/search/search_source/fetch/get_search_params.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13455,6 +14094,7 @@ ], "path": "src/plugins/data/common/search/search_source/fetch/get_search_params.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13466,6 +14106,7 @@ "description": [], "path": "src/plugins/data/common/search/search_source/fetch/get_search_params.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13479,6 +14120,7 @@ ], "path": "src/plugins/data/common/search/search_source/fetch/get_search_params.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -13489,7 +14131,8 @@ "label": "key", "description": [], "path": "src/plugins/data/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -13502,7 +14145,8 @@ "T | undefined" ], "path": "src/plugins/data/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -13540,6 +14184,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/serial_diff.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -13572,6 +14217,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/significant_terms.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -13604,6 +14250,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/significant_text.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -13636,6 +14283,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/single_percentile.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -13662,6 +14310,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/single_percentile_rank.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -13694,6 +14343,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/std_deviation.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -13726,6 +14376,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/sum.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -13758,6 +14409,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/terms.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -13782,6 +14434,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/top_hit.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -13806,6 +14459,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/top_metrics.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -13822,6 +14476,7 @@ ], "path": "src/plugins/data/common/search/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13835,6 +14490,7 @@ ], "path": "src/plugins/data/common/search/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13849,6 +14505,7 @@ ], "path": "src/plugins/data/common/search/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13883,6 +14540,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/value_count.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -13917,6 +14575,7 @@ ], "path": "src/plugins/data/common/search/expressions/esaggs/request_handler.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13936,6 +14595,7 @@ ], "path": "src/plugins/data/common/search/expressions/esaggs/request_handler.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13970,6 +14630,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/infer_time_zone.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -13980,6 +14641,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/utils/infer_time_zone.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14000,7 +14662,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/utils/infer_time_zone.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -14013,7 +14676,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/utils/infer_time_zone.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -14035,6 +14699,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/infer_time_zone.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14049,6 +14714,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/infer_time_zone.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14063,6 +14729,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/infer_time_zone.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14077,6 +14744,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/infer_time_zone.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -14112,6 +14780,7 @@ ], "path": "src/plugins/data/common/search/search_source/inject_references.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14132,6 +14801,7 @@ ], "path": "src/plugins/data/common/search/search_source/inject_references.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14147,6 +14817,7 @@ ], "path": "src/plugins/data/common/search/search_source/inject_references.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14180,6 +14851,7 @@ ], "path": "src/plugins/data/common/search/expressions/ip_range_to_ast.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14199,6 +14871,7 @@ ], "path": "src/plugins/data/common/search/expressions/ip_range_to_ast.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14217,6 +14890,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/_interval_options.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14230,6 +14904,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/_interval_options.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14248,6 +14923,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14261,6 +14937,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14287,6 +14964,7 @@ ], "path": "src/plugins/data/common/search/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14307,6 +14985,7 @@ ], "path": "src/plugins/data/common/search/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -14327,6 +15006,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14340,6 +15020,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14366,6 +15047,7 @@ ], "path": "src/plugins/data/common/search/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14386,6 +15068,7 @@ ], "path": "src/plugins/data/common/search/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -14406,6 +15089,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14419,6 +15103,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14445,6 +15130,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/migrate_include_exclude_format.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -14464,7 +15150,8 @@ } ], "path": "src/plugins/data/common/search/aggs/buckets/migrate_include_exclude_format.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -14489,6 +15176,7 @@ ], "path": "src/plugins/data/common/search/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14509,6 +15197,7 @@ ], "path": "src/plugins/data/common/search/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -14529,6 +15218,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14542,6 +15232,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14568,6 +15259,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/migrate_include_exclude_format.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -14587,7 +15279,8 @@ } ], "path": "src/plugins/data/common/search/aggs/buckets/migrate_include_exclude_format.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -14612,6 +15305,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/migrate_include_exclude_format.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -14631,7 +15325,8 @@ } ], "path": "src/plugins/data/common/search/aggs/buckets/migrate_include_exclude_format.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -14656,6 +15351,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/migrate_include_exclude_format.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14669,6 +15365,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/migrate_include_exclude_format.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14689,6 +15386,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/is_valid_es_interval.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14704,6 +15402,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/is_valid_es_interval.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14724,6 +15423,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/is_valid_interval.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14737,6 +15437,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/is_valid_interval.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14751,6 +15452,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/is_valid_interval.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -14784,6 +15486,7 @@ ], "path": "src/plugins/data/common/search/expressions/numerical_range_to_ast.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14803,6 +15506,7 @@ ], "path": "src/plugins/data/common/search/expressions/numerical_range_to_ast.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14825,6 +15529,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/parse_es_interval.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14838,6 +15543,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/parse_es_interval.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14856,6 +15562,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/parse_interval.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14869,6 +15576,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/parse_interval.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14894,6 +15602,7 @@ ], "path": "src/plugins/data/common/search/search_source/parse_json.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14907,6 +15616,7 @@ ], "path": "src/plugins/data/common/search/search_source/parse_json.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14927,6 +15637,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/parse_time_shift.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14940,6 +15651,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/parse_time_shift.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14976,6 +15688,7 @@ ], "path": "src/plugins/data/common/search/poll_search.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -14989,6 +15702,7 @@ ], "path": "src/plugins/data/common/search/poll_search.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15003,6 +15717,7 @@ ], "path": "src/plugins/data/common/search/poll_search.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -15023,6 +15738,7 @@ ], "path": "src/plugins/data/common/search/poll_search.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15043,6 +15759,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/prop_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -15056,6 +15773,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/prop_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15091,6 +15809,7 @@ ], "path": "src/plugins/data/common/search/expressions/query_filter_to_ast.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -15110,6 +15829,7 @@ ], "path": "src/plugins/data/common/search/expressions/query_filter_to_ast.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15137,6 +15857,7 @@ ], "path": "src/plugins/data/common/search/expressions/query_to_ast.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -15150,6 +15871,7 @@ ], "path": "src/plugins/data/common/search/expressions/query_to_ast.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15170,6 +15892,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/parse_interval.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -15183,6 +15906,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/parse_interval.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15220,6 +15944,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -15239,6 +15964,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15253,6 +15979,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15269,6 +15996,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -15306,6 +16034,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify_docs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -15322,6 +16051,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify_docs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15343,6 +16073,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify_docs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -15357,6 +16088,7 @@ ], "path": "src/plugins/data/common/search/tabify/tabify_docs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15387,6 +16119,7 @@ ], "path": "src/plugins/data/common/search/tabify/get_columns.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -15409,6 +16142,7 @@ ], "path": "src/plugins/data/common/search/tabify/get_columns.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15425,6 +16159,7 @@ ], "path": "src/plugins/data/common/search/tabify/get_columns.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15458,6 +16193,7 @@ ], "path": "src/plugins/data/common/search/expressions/timerange_to_ast.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -15477,6 +16213,7 @@ ], "path": "src/plugins/data/common/search/expressions/timerange_to_ast.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15497,6 +16234,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/to_absolute_dates.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -15510,6 +16248,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/to_absolute_dates.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15527,6 +16266,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -15571,7 +16311,8 @@ "[]; }; }" ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -15584,7 +16325,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -15597,7 +16339,8 @@ "{ shouldDetectTimeZone?: boolean | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -15610,7 +16353,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -15624,6 +16368,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -15636,7 +16381,8 @@ "\"agg_type\"" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -15651,7 +16397,8 @@ " | undefined; schema?: string | undefined; }" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -15667,6 +16414,7 @@ ], "path": "src/plugins/data/common/search/aggs/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -15712,7 +16460,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -15758,7 +16507,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -15804,7 +16554,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -15850,7 +16601,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -15896,7 +16648,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -15942,7 +16695,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -15988,7 +16742,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16034,7 +16789,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16080,7 +16836,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16126,7 +16883,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16172,7 +16930,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16218,7 +16977,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16264,7 +17024,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16310,7 +17071,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16356,7 +17118,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16402,7 +17165,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16448,7 +17212,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16494,7 +17259,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16540,7 +17306,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16586,7 +17353,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16632,7 +17400,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16678,7 +17447,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16724,7 +17494,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16770,7 +17541,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16816,7 +17588,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16862,7 +17635,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16908,7 +17682,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -16954,7 +17729,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17000,7 +17776,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17046,7 +17823,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17092,7 +17870,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17138,7 +17917,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17184,7 +17964,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17230,7 +18011,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17276,7 +18058,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17322,7 +18105,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17368,7 +18152,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17414,7 +18199,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17460,7 +18246,8 @@ ">>" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17474,6 +18261,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/agg_params.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17483,7 +18271,8 @@ "label": "val", "description": [], "path": "src/plugins/data/common/search/aggs/agg_params.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17493,7 +18282,8 @@ "label": "display", "description": [], "path": "src/plugins/data/common/search/aggs/agg_params.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17515,6 +18305,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_params.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17534,6 +18325,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_params.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17568,6 +18360,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/avg.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17577,7 +18370,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/avg.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17608,6 +18402,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_avg.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17622,7 +18417,8 @@ " | undefined; schema?: string | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_avg.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17637,7 +18433,8 @@ " | undefined; schema?: string | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_avg.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17668,6 +18465,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_max.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17682,7 +18480,8 @@ " | undefined; schema?: string | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_max.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17697,7 +18496,8 @@ " | undefined; schema?: string | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_max.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17728,6 +18528,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_min.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17742,7 +18543,8 @@ " | undefined; schema?: string | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_min.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17757,7 +18559,8 @@ " | undefined; schema?: string | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_min.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17788,6 +18591,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_sum.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17802,7 +18606,8 @@ " | undefined; schema?: string | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17817,7 +18622,8 @@ " | undefined; schema?: string | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17848,6 +18654,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/cardinality.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17857,7 +18664,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/cardinality.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17870,7 +18678,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/cardinality.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17901,6 +18710,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/count.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17913,7 +18723,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/count.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17944,6 +18755,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/cumulative_sum.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -17956,7 +18768,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17971,7 +18784,8 @@ " | undefined; schema?: string | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -17984,7 +18798,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18015,6 +18830,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18029,7 +18845,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18043,7 +18860,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18056,7 +18874,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18069,7 +18888,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18082,7 +18902,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18095,7 +18916,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18108,7 +18930,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18121,7 +18944,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18134,7 +18958,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18147,7 +18972,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18160,7 +18986,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18180,7 +19007,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18193,7 +19021,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18224,6 +19053,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/date_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18236,7 +19066,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/date_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18256,7 +19087,8 @@ "[] | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/date_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18269,7 +19101,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/date_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18300,6 +19133,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/derivative.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18312,7 +19146,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18327,7 +19162,8 @@ " | undefined; schema?: string | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18340,7 +19176,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18371,6 +19208,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/diversified_sampler.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18382,7 +19220,8 @@ "\nIs used to provide values used for de-duplication" ], "path": "src/plugins/data/common/search/aggs/buckets/diversified_sampler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18397,7 +19236,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/diversified_sampler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18412,7 +19252,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/diversified_sampler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18443,6 +19284,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18462,7 +19304,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18482,7 +19325,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18495,7 +19339,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18526,6 +19371,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/filtered_metric.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18540,7 +19386,8 @@ " | undefined; schema?: string | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/filtered_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18555,7 +19402,8 @@ " | undefined; schema?: string | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/filtered_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18587,6 +19435,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/filters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18606,7 +19455,8 @@ "[] | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/filters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18637,6 +19487,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/geo_bounds.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18646,7 +19497,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/geo_bounds.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18677,6 +19529,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/geo_centroid.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18686,7 +19539,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/geo_centroid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18717,6 +19571,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/geo_hash.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18726,7 +19581,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/geo_hash.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18739,7 +19595,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/geo_hash.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18752,7 +19609,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/geo_hash.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18765,7 +19623,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/geo_hash.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18778,7 +19637,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/geo_hash.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18798,7 +19658,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/geo_hash.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18829,6 +19690,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/geo_tile.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18838,7 +19700,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/geo_tile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18851,7 +19714,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/geo_tile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18864,7 +19728,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/geo_tile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18895,6 +19760,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -18904,7 +19770,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18917,7 +19784,8 @@ "string | number" ], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18930,7 +19798,8 @@ "string | number | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18943,7 +19812,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18956,7 +19826,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18969,7 +19840,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -18982,7 +19854,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19002,7 +19875,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19015,7 +19889,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19046,6 +19921,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/ip_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19055,7 +19931,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19075,7 +19952,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19104,7 +19982,8 @@ "[]; }> | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19135,6 +20014,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/max.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19144,7 +20024,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/max.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19175,6 +20056,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/median.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19184,7 +20066,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/median.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19215,6 +20098,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/min.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19224,7 +20108,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/min.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19255,6 +20140,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/moving_avg.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19267,7 +20153,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/moving_avg.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19280,7 +20167,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/moving_avg.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19293,7 +20181,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/moving_avg.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19308,7 +20197,8 @@ " | undefined; schema?: string | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/moving_avg.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19321,7 +20211,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/moving_avg.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19352,6 +20243,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/multi_terms.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19364,7 +20256,8 @@ "string[]" ], "path": "src/plugins/data/common/search/aggs/buckets/multi_terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19374,7 +20267,8 @@ "label": "orderBy", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/multi_terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19389,7 +20283,8 @@ " | undefined; schema?: string | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/multi_terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19402,7 +20297,8 @@ "\"asc\" | \"desc\" | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/multi_terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19415,7 +20311,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/multi_terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19428,7 +20325,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/multi_terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19441,7 +20339,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/multi_terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19454,7 +20353,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/multi_terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19467,7 +20367,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/multi_terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19498,6 +20399,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/percentile_ranks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19507,7 +20409,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/percentile_ranks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19520,7 +20423,8 @@ "number[] | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/percentile_ranks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19551,6 +20455,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/percentiles.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19560,7 +20465,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/percentiles.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19573,7 +20479,8 @@ "number[] | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/percentiles.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19604,6 +20511,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19613,7 +20521,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19633,7 +20542,8 @@ "[] | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19664,6 +20574,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/rare_terms.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19673,7 +20584,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/rare_terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19686,7 +20598,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/rare_terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19717,6 +20630,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/sampler.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19731,7 +20645,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/sampler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19762,6 +20677,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/serial_diff.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19774,7 +20690,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/serial_diff.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19789,7 +20706,8 @@ " | undefined; schema?: string | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/serial_diff.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19802,7 +20720,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/serial_diff.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19833,6 +20752,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/significant_terms.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19842,7 +20762,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/significant_terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19855,7 +20776,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/significant_terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19868,7 +20790,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/significant_terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19881,7 +20804,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/significant_terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19912,6 +20836,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/significant_text.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -19921,7 +20846,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/significant_text.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19934,7 +20860,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/significant_text.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19947,7 +20874,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/significant_text.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19960,7 +20888,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/significant_text.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19973,7 +20902,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/significant_text.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -19986,7 +20916,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/significant_text.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -20017,6 +20948,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/single_percentile.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20026,7 +20958,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/single_percentile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20036,7 +20969,8 @@ "label": "percentile", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/single_percentile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -20067,6 +21001,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/single_percentile_rank.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20076,7 +21011,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/single_percentile_rank.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20086,7 +21022,8 @@ "label": "value", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/single_percentile_rank.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -20117,6 +21054,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/std_deviation.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20126,7 +21064,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/std_deviation.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20139,7 +21078,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/std_deviation.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -20170,6 +21110,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/sum.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20179,7 +21120,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20192,7 +21134,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -20223,6 +21166,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/terms.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20232,7 +21176,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20242,7 +21187,8 @@ "label": "orderBy", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20257,7 +21203,8 @@ " | undefined; schema?: string | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20270,7 +21217,8 @@ "\"asc\" | \"desc\" | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20283,7 +21231,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20296,7 +21245,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20309,7 +21259,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20322,7 +21273,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20335,7 +21287,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20348,7 +21301,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20361,7 +21315,8 @@ "string[] | number[] | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20374,7 +21329,8 @@ "string[] | number[] | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20387,7 +21343,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20400,7 +21357,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/terms.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -20431,6 +21389,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/top_hit.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20440,7 +21399,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/top_hit.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20453,7 +21413,8 @@ "\"min\" | \"max\" | \"sum\" | \"average\" | \"concat\"" ], "path": "src/plugins/data/common/search/aggs/metrics/top_hit.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20466,7 +21427,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/top_hit.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20479,7 +21441,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/top_hit.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20492,7 +21455,8 @@ "\"asc\" | \"desc\" | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/top_hit.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -20523,6 +21487,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/top_metrics.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20532,7 +21497,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/top_metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20545,7 +21511,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/top_metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20558,7 +21525,8 @@ "\"asc\" | \"desc\" | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/top_metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20571,7 +21539,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/top_metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -20602,6 +21571,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/value_count.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20611,7 +21581,8 @@ "label": "field", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/value_count.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -20624,7 +21595,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/value_count.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -20638,6 +21610,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20682,7 +21655,8 @@ ">(name: N, type: T) => void; }" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -20696,6 +21670,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/aggs_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20725,6 +21700,7 @@ ], "path": "src/plugins/data/common/search/aggs/aggs_service.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -20753,7 +21729,8 @@ ")" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -20769,6 +21746,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20790,6 +21768,7 @@ ], "path": "src/plugins/data/common/search/aggs/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -20803,7 +21782,8 @@ "{ from: string; to: string; mode?: \"absolute\" | \"relative\" | undefined; }" ], "path": "src/plugins/data/common/search/aggs/utils/calculate_auto_time_expression.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -20850,6 +21830,7 @@ ], "path": "src/plugins/data/common/search/aggs/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20869,6 +21850,7 @@ ], "path": "src/plugins/data/common/search/aggs/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -20890,6 +21872,7 @@ ], "path": "src/plugins/data/common/search/aggs/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -20912,6 +21895,7 @@ ], "path": "src/plugins/data/common/search/aggs/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -20960,7 +21944,8 @@ "[]; }; }" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -20974,6 +21959,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/aggs_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -20995,6 +21981,7 @@ ], "path": "src/plugins/data/common/search/aggs/aggs_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21008,6 +21995,7 @@ ], "path": "src/plugins/data/common/search/aggs/aggs_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21025,6 +22013,7 @@ ], "path": "src/plugins/data/common/search/aggs/aggs_service.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -21035,7 +22024,8 @@ "label": "key", "description": [], "path": "src/plugins/data/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21048,7 +22038,8 @@ "T | undefined" ], "path": "src/plugins/data/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -21183,7 +22174,8 @@ ">) => void; has: (id: string) => boolean; }" ], "path": "src/plugins/data/common/search/aggs/aggs_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21206,6 +22198,7 @@ ], "path": "src/plugins/data/common/search/aggs/aggs_service.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -21219,7 +22212,8 @@ "{ from: string; to: string; mode?: \"absolute\" | \"relative\" | undefined; }" ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -21245,6 +22239,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21254,7 +22249,8 @@ "label": "name", "description": [], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21264,7 +22260,8 @@ "label": "title", "description": [], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21278,6 +22275,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21291,6 +22289,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21305,6 +22304,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21319,6 +22319,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21335,7 +22336,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21348,7 +22350,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21358,7 +22361,8 @@ "label": "expressionName", "description": [], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21371,7 +22375,8 @@ "((aggConfig: TAggConfig) => string) | (() => string) | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21384,7 +22389,8 @@ "any" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21397,7 +22403,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21410,7 +22417,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21423,7 +22431,8 @@ "Partial[] | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21443,7 +22452,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21456,7 +22466,8 @@ "((aggConfig: TAggConfig) => TAggConfig[]) | (() => void | TAggConfig[]) | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21469,7 +22480,8 @@ "((aggConfig: TAggConfig) => TAggConfig[]) | (() => void | TAggConfig[]) | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21482,7 +22494,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21495,7 +22508,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21509,6 +22523,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -21523,7 +22538,8 @@ "PostFlightRequestFn | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21537,6 +22553,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21550,6 +22567,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21577,6 +22595,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21590,6 +22609,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21607,6 +22627,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21620,6 +22641,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21634,6 +22656,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21651,6 +22674,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21664,6 +22688,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21678,6 +22703,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21692,6 +22718,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21709,6 +22736,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21722,6 +22750,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21739,6 +22768,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21752,6 +22782,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21769,6 +22800,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/agg_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21791,6 +22823,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -21804,7 +22837,8 @@ "{ from: string; to: string; mode?: \"absolute\" | \"relative\" | undefined; }" ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -21820,6 +22854,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21833,6 +22868,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21858,6 +22894,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -21872,7 +22909,8 @@ "{ shouldDetectTimeZone?: boolean | undefined; } | undefined" ], "path": "src/plugins/data/common/search/aggs/agg_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -21886,6 +22924,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21895,7 +22934,8 @@ "label": "min", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21905,7 +22945,8 @@ "label": "max", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -21919,6 +22960,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21931,7 +22973,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21944,7 +22987,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -21957,7 +23001,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/aggs/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -21981,6 +23026,7 @@ ], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -21990,7 +23036,8 @@ "label": "_index", "description": [], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22000,7 +23047,8 @@ "label": "_id", "description": [], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22013,7 +23061,8 @@ "T" ], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22034,7 +23083,8 @@ "[]> | undefined" ], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22066,6 +23116,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22078,7 +23129,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22098,7 +23150,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22111,7 +23164,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22133,7 +23187,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22147,6 +23202,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/cidr.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22156,7 +23212,8 @@ "label": "mask", "description": [], "path": "src/plugins/data/common/search/expressions/cidr.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22170,6 +23227,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/buckets/lib/ip_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22182,7 +23240,8 @@ "\"mask\"" ], "path": "src/plugins/data/common/search/aggs/buckets/lib/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22192,7 +23251,8 @@ "label": "mask", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/lib/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22206,6 +23266,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/date_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22218,7 +23279,8 @@ "string | number" ], "path": "src/plugins/data/common/search/expressions/date_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22231,7 +23293,8 @@ "string | number" ], "path": "src/plugins/data/common/search/expressions/date_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22245,6 +23308,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22257,7 +23321,8 @@ "\"eql_raw_response\"" ], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22270,7 +23335,8 @@ "unknown" ], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22294,6 +23360,7 @@ ], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22303,7 +23370,8 @@ "label": "is_partial", "description": [], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22313,7 +23381,8 @@ "label": "is_running", "description": [], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22323,7 +23392,8 @@ "label": "took", "description": [], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22333,7 +23403,8 @@ "label": "timed_out", "description": [], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22370,7 +23441,8 @@ "[] | undefined; }" ], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22404,6 +23476,7 @@ ], "path": "src/plugins/data/common/search/strategies/eql_search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22417,7 +23490,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/strategies/eql_search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22441,6 +23515,7 @@ ], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22460,7 +23535,8 @@ "[]" ], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22480,7 +23556,8 @@ "[]" ], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22504,6 +23581,7 @@ ], "path": "src/plugins/data/common/search/expressions/es_raw_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22516,7 +23594,8 @@ "\"es_raw_response\"" ], "path": "src/plugins/data/common/search/expressions/es_raw_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22532,7 +23611,8 @@ ">>" ], "path": "src/plugins/data/common/search/expressions/es_raw_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22546,6 +23626,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22558,7 +23639,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22571,7 +23653,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22585,6 +23668,7 @@ "description": [], "path": "src/plugins/data/common/search/search_source/fetch/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22598,6 +23682,7 @@ ], "path": "src/plugins/data/common/search/search_source/fetch/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -22608,7 +23693,8 @@ "label": "key", "description": [], "path": "src/plugins/data/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -22621,7 +23707,8 @@ "T | undefined" ], "path": "src/plugins/data/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -22665,6 +23752,7 @@ ], "path": "src/plugins/data/common/search/search_source/fetch/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22678,6 +23766,7 @@ ], "path": "src/plugins/data/common/search/search_source/fetch/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -22699,6 +23788,7 @@ ], "path": "src/plugins/data/common/search/search_source/fetch/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -22719,6 +23809,7 @@ ], "path": "src/plugins/data/common/search/search_source/fetch/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -22736,6 +23827,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/buckets/filters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22749,6 +23841,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/filters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22762,6 +23855,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -22779,6 +23873,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/metrics/filtered_metric.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22792,6 +23887,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/filtered_metric.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22805,6 +23901,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/filtered_metric.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -22822,6 +23919,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22835,6 +23933,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22848,6 +23947,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -22873,6 +23973,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -22905,6 +24006,7 @@ ], "path": "src/plugins/data/common/search/strategies/ese_search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22919,7 +24021,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/strategies/ese_search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -22950,6 +24053,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -22977,7 +24081,8 @@ ">" ], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -23008,6 +24113,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -23020,7 +24126,8 @@ "TimeBuckets" ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -23051,6 +24158,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -23072,6 +24180,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -23091,6 +24200,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23115,6 +24225,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/histogram.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -23156,6 +24267,7 @@ ], "path": "src/plugins/data/common/search/strategies/es_search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -23168,7 +24280,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/strategies/es_search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -23182,6 +24295,7 @@ "description": [], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -23201,7 +24315,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23211,7 +24326,8 @@ "label": "title", "description": [], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23224,7 +24340,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23237,7 +24354,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -23261,6 +24379,7 @@ ], "path": "src/plugins/data/common/search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -23275,7 +24394,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23288,7 +24408,8 @@ "Params | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -23312,6 +24433,7 @@ ], "path": "src/plugins/data/common/search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -23326,7 +24448,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23341,7 +24464,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23356,7 +24480,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23371,7 +24496,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23386,7 +24512,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23401,7 +24528,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23416,7 +24544,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23431,7 +24560,8 @@ "RawResponse" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -23462,6 +24592,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -23489,7 +24620,8 @@ ">" ], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -23503,6 +24635,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/ip_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -23512,7 +24645,8 @@ "label": "from", "description": [], "path": "src/plugins/data/common/search/expressions/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23522,7 +24656,8 @@ "label": "to", "description": [], "path": "src/plugins/data/common/search/expressions/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -23536,6 +24671,7 @@ "description": [], "path": "src/plugins/data/common/search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -23591,6 +24727,7 @@ ], "path": "src/plugins/data/common/search/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -23604,7 +24741,8 @@ "SearchStrategyRequest" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23624,7 +24762,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -23650,6 +24789,7 @@ ], "path": "src/plugins/data/common/search/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -23660,7 +24800,8 @@ "label": "id", "description": [], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23680,7 +24821,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -23706,6 +24848,7 @@ ], "path": "src/plugins/data/common/search/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -23716,7 +24859,8 @@ "label": "id", "description": [], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23726,7 +24870,8 @@ "label": "keepAlive", "description": [], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23746,7 +24891,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -23762,6 +24908,7 @@ "description": [], "path": "src/plugins/data/common/search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -23776,7 +24923,8 @@ "AbortSignal | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23791,7 +24939,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23806,7 +24955,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23821,7 +24971,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23836,7 +24987,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23851,7 +25003,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23867,7 +25020,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -23889,7 +25043,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -23931,6 +25086,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -23962,6 +25118,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -23982,6 +25139,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -24008,6 +25166,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -24034,6 +25193,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/std_deviation.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -24047,6 +25207,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/std_deviation.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -24060,6 +25221,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/std_deviation.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -24074,6 +25236,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/std_deviation.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -24091,6 +25254,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/std_deviation.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -24106,6 +25270,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/kibana_context.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -24124,7 +25289,8 @@ } ], "path": "src/plugins/data/common/search/expressions/kibana_context.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -24156,6 +25322,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -24175,7 +25342,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24188,7 +25356,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24201,7 +25370,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -24215,6 +25385,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -24227,7 +25398,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24240,7 +25412,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24253,7 +25426,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -24267,6 +25441,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -24276,7 +25451,8 @@ "label": "value", "description": [], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24286,7 +25462,8 @@ "label": "text", "description": [], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24299,7 +25476,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24321,6 +25499,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -24340,6 +25519,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/optioned.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -24357,6 +25537,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/metrics/percentile_ranks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -24378,6 +25559,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/percentile_ranks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -24393,6 +25575,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/query_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -24405,7 +25588,8 @@ "{ query: string | { [key: string]: any; }; language: string; }" ], "path": "src/plugins/data/common/search/expressions/query_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24418,7 +25602,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/expressions/query_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -24432,6 +25617,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/buckets/range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -24453,6 +25639,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/range.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -24468,6 +25655,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/buckets/lib/ip_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -24480,7 +25668,8 @@ "\"range\"" ], "path": "src/plugins/data/common/search/aggs/buckets/lib/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24490,7 +25679,8 @@ "label": "from", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/lib/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24500,7 +25690,8 @@ "label": "to", "description": [], "path": "src/plugins/data/common/search/aggs/buckets/lib/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -24514,6 +25705,7 @@ "description": [], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -24526,7 +25718,8 @@ "string[]" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24539,7 +25732,8 @@ "unknown" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24552,7 +25746,8 @@ "unknown" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24565,7 +25760,8 @@ "unknown" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24578,7 +25774,8 @@ "unknown" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24591,7 +25788,8 @@ "string[]" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -24605,6 +25803,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/esaggs/request_handler.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -24617,7 +25816,8 @@ "AbortSignal | undefined" ], "path": "src/plugins/data/common/search/expressions/esaggs/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24636,7 +25836,8 @@ } ], "path": "src/plugins/data/common/search/expressions/esaggs/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24650,7 +25851,8 @@ "[] | undefined" ], "path": "src/plugins/data/common/search/expressions/esaggs/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24670,7 +25872,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/expressions/esaggs/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24689,7 +25892,8 @@ } ], "path": "src/plugins/data/common/search/expressions/esaggs/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24703,7 +25907,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/expressions/esaggs/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24716,7 +25921,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/expressions/esaggs/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24735,7 +25941,8 @@ } ], "path": "src/plugins/data/common/search/expressions/esaggs/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24748,7 +25955,8 @@ "string[] | undefined" ], "path": "src/plugins/data/common/search/expressions/esaggs/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24762,7 +25970,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/expressions/esaggs/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24775,7 +25984,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/expressions/esaggs/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24789,6 +25999,7 @@ ], "path": "src/plugins/data/common/search/expressions/esaggs/request_handler.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -24804,7 +26015,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/expressions/esaggs/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -24818,6 +26030,7 @@ "description": [], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -24838,7 +26051,8 @@ "[]; skipped: number; successful: number; total: number; }" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -24852,6 +26066,7 @@ "description": [], "path": "src/plugins/data/common/search/search_source/fetch/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -24861,7 +26076,8 @@ "label": "name", "description": [], "path": "src/plugins/data/common/search/search_source/fetch/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24871,7 +26087,8 @@ "label": "status", "description": [], "path": "src/plugins/data/common/search/search_source/fetch/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24881,7 +26098,8 @@ "label": "title", "description": [], "path": "src/plugins/data/common/search/search_source/fetch/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24891,7 +26109,8 @@ "label": "message", "description": [], "path": "src/plugins/data/common/search/search_source/fetch/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24901,7 +26120,8 @@ "label": "path", "description": [], "path": "src/plugins/data/common/search/search_source/fetch/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24911,7 +26131,8 @@ "label": "type", "description": [], "path": "src/plugins/data/common/search/search_source/fetch/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -24925,6 +26146,7 @@ "description": [], "path": "src/plugins/data/common/search/session/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -24937,7 +26159,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24950,7 +26173,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24963,7 +26187,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24976,7 +26201,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -24989,7 +26215,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -25003,6 +26230,7 @@ "description": [], "path": "src/plugins/data/common/search/session/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -25014,7 +26242,8 @@ "\nID of the async search request" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25026,7 +26255,8 @@ "\nSearch strategy used to submit the search request" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25038,7 +26268,8 @@ "\nstatus" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25053,7 +26284,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -25067,6 +26299,7 @@ "description": [], "path": "src/plugins/data/common/search/session/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -25076,7 +26309,8 @@ "label": "sessionId", "description": [], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25091,7 +26325,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25106,7 +26341,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25118,7 +26354,8 @@ "\nCreation time of the session" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25130,7 +26367,8 @@ "\nLast touch time of the session" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25142,7 +26380,8 @@ "\nExpiration time of the session. Expiration itself is managed by Elasticsearch." ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25157,7 +26396,8 @@ "string | null | undefined" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25178,7 +26418,8 @@ } ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25193,7 +26434,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25209,7 +26451,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25225,7 +26468,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25248,7 +26492,8 @@ "; }" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25260,7 +26505,8 @@ "\nThis value is true if the session was actively stored by the user. If it is false, the session may be purged by the system." ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25275,7 +26521,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25288,7 +26535,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25301,7 +26549,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25313,7 +26562,8 @@ "\nVersion information to display warnings when trying to restore a session from a different version" ], "path": "src/plugins/data/common/search/session/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -25344,6 +26594,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -25428,7 +26679,8 @@ "[]; }; }; }" ], "path": "src/plugins/data/common/search/search_source/search_source.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25484,6 +26736,7 @@ ], "path": "src/plugins/data/common/search/search_source/search_source.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -25497,7 +26750,8 @@ "SearchStrategyRequest" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25517,7 +26771,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -25535,6 +26790,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -25547,7 +26803,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25565,7 +26822,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25587,7 +26845,8 @@ "[] | undefined) | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25617,7 +26876,8 @@ "[] | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25630,7 +26890,8 @@ "any" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25643,7 +26904,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25656,7 +26918,8 @@ "number | boolean | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25679,7 +26942,8 @@ " | (() => object) | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25692,7 +26956,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25705,7 +26970,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25720,7 +26986,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25733,7 +27000,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25755,7 +27023,8 @@ "[] | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25774,6 +27043,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": true, + "trackAdoption": false, "references": [] }, { @@ -25796,7 +27066,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25816,7 +27087,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25829,7 +27101,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25842,7 +27115,8 @@ "number | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25862,7 +27136,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -25876,6 +27151,7 @@ "description": [], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -25888,7 +27164,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -25919,6 +27196,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -25940,7 +27218,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25955,7 +27234,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -25969,6 +27249,7 @@ "description": [], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -25978,7 +27259,8 @@ "label": "index", "description": [], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -25988,7 +27270,8 @@ "label": "node", "description": [], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -26001,7 +27284,8 @@ "{ caused_by: { reason: string; type: string; }; reason: string; lang?: string | undefined; script?: string | undefined; script_stack?: string[] | undefined; type: string; }" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -26011,7 +27295,8 @@ "label": "shard", "description": [], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -26025,6 +27310,7 @@ "description": [], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -26037,7 +27323,8 @@ "\"min\" | \"max\" | \"sum\" | \"avg\" | \"median\" | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -26050,7 +27337,8 @@ "\"date\" | \"date_nanos\" | \"long\" | \"double\" | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -26063,7 +27351,8 @@ "object | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -26076,7 +27365,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -26089,7 +27379,8 @@ "\"arc\" | \"plane\" | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -26102,7 +27393,8 @@ "string | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -26115,7 +27407,8 @@ "boolean | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -26128,7 +27421,8 @@ "object | undefined" ], "path": "src/plugins/data/common/search/search_source/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -26162,6 +27456,7 @@ ], "path": "src/plugins/data/common/search/strategies/sql_search/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -26173,7 +27468,8 @@ "\nA metric showing how long did the search take." ], "path": "src/plugins/data/common/search/strategies/sql_search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -26187,6 +27483,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -26196,7 +27493,8 @@ "label": "value", "description": [], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -26206,7 +27504,8 @@ "label": "relation", "description": [], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -26222,6 +27521,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/buckets/bucket_agg_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26233,6 +27533,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/buckets/ip_range.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26244,6 +27545,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26255,6 +27557,7 @@ "description": [], "path": "src/plugins/data/common/search/session/status.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26266,6 +27569,7 @@ "description": [], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -26282,6 +27586,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/avg_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26296,6 +27601,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_avg_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26310,6 +27616,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_max_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26324,6 +27631,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_min_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26338,6 +27646,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/bucket_sum_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26352,6 +27661,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/cardinality_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26376,6 +27686,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26392,6 +27703,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26406,6 +27718,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/count_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26420,6 +27733,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/cumulative_sum_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26434,6 +27748,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/date_histogram_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26448,6 +27763,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/date_range_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26462,6 +27778,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/derivative_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26476,6 +27793,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/diversified_sampler_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26490,6 +27808,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/filtered_metric_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26504,6 +27823,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/filter_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26518,6 +27838,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/filters_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26532,6 +27853,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/geo_bounds_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26546,6 +27868,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/geo_centroid_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26560,6 +27883,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/geo_hash_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26574,6 +27898,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/geo_tile_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26588,6 +27913,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_groups.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26602,6 +27928,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/histogram_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26616,6 +27943,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/ip_range_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26630,6 +27958,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/max_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26644,6 +27973,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/median_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26658,6 +27988,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/min_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26672,6 +28003,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/moving_avg_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26686,6 +28018,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/multi_terms_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26715,6 +28048,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_params.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26729,6 +28063,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/percentile_ranks_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26743,6 +28078,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/percentiles_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26757,6 +28093,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/range_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26771,6 +28108,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/rare_terms_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26785,6 +28123,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/sampler_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26799,6 +28138,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/serial_diff_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26813,6 +28153,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/significant_terms_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26827,6 +28168,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/significant_text_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26841,6 +28183,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/single_percentile_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26855,6 +28198,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/single_percentile_rank_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26943,6 +28287,7 @@ ], "path": "src/plugins/data/common/search/aggs/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26957,6 +28302,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/std_deviation_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26971,6 +28317,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/sum_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26985,6 +28332,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/terms_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -26999,6 +28347,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/top_hit_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27013,6 +28362,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/top_metrics_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27059,6 +28409,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_types_registry.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27105,6 +28456,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_types_registry.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27119,6 +28471,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/value_count_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27133,6 +28486,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/_interval_options.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27147,6 +28501,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/lib/time_buckets/calc_auto_interval.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27168,6 +28523,7 @@ ], "path": "src/plugins/data/common/search/expressions/cidr.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27192,6 +28548,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27213,6 +28570,7 @@ ], "path": "src/plugins/data/common/search/expressions/date_range.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27227,6 +28585,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/diversified_sampler.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27241,6 +28600,7 @@ ], "path": "src/plugins/data/common/search/strategies/ese_search/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27255,6 +28615,7 @@ ], "path": "src/plugins/data/common/search/strategies/eql_search/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27294,6 +28655,7 @@ ], "path": "src/plugins/data/common/search/expressions/eql.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27331,6 +28693,7 @@ ], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27345,6 +28708,7 @@ ], "path": "src/plugins/data/common/search/strategies/eql_search/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27368,6 +28732,7 @@ ], "path": "src/plugins/data/common/search/strategies/eql_search/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27382,6 +28747,7 @@ ], "path": "src/plugins/data/common/search/strategies/es_search/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27421,6 +28787,7 @@ ], "path": "src/plugins/data/common/search/expressions/esaggs/esaggs_fn.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27460,6 +28827,7 @@ ], "path": "src/plugins/data/common/search/expressions/esdsl.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27474,6 +28842,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27512,6 +28881,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27549,6 +28919,7 @@ ], "path": "src/plugins/data/common/search/expressions/es_raw_response.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27577,6 +28948,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_context_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27632,6 +29004,7 @@ ], "path": "src/plugins/data/common/search/expressions/cidr.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27687,6 +29060,7 @@ ], "path": "src/plugins/data/common/search/expressions/date_range.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27734,6 +29108,7 @@ ], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27789,6 +29164,7 @@ ], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27836,6 +29212,7 @@ ], "path": "src/plugins/data/common/search/expressions/field.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27883,6 +29260,7 @@ ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27930,6 +29308,7 @@ ], "path": "src/plugins/data/common/search/expressions/geo_point.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -27985,6 +29364,7 @@ ], "path": "src/plugins/data/common/search/expressions/ip_range.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28046,6 +29426,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28107,6 +29488,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_context.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28154,6 +29536,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28209,6 +29592,7 @@ ], "path": "src/plugins/data/common/search/expressions/timerange.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28256,6 +29640,7 @@ ], "path": "src/plugins/data/common/search/expressions/kql.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28303,6 +29688,7 @@ ], "path": "src/plugins/data/common/search/expressions/lucene.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28358,6 +29744,7 @@ ], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28405,6 +29792,7 @@ ], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28452,6 +29840,7 @@ ], "path": "src/plugins/data/common/search/expressions/query_filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28499,6 +29888,7 @@ ], "path": "src/plugins/data/common/search/expressions/range.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28546,6 +29936,7 @@ ], "path": "src/plugins/data/common/search/expressions/range_filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28601,6 +29992,7 @@ ], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28656,6 +30048,7 @@ ], "path": "src/plugins/data/common/search/expressions/select_filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28677,6 +30070,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_context_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28698,6 +30092,7 @@ ], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28715,6 +30110,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/field.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28737,6 +30133,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/field.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -28756,7 +30153,8 @@ } ], "path": "src/plugins/data/common/search/aggs/param_types/field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -28776,6 +30174,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_configs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28792,6 +30191,7 @@ ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28813,6 +30213,7 @@ ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28823,10 +30224,11 @@ "label": "GeoPoint", "description": [], "signature": [ - "string | Point | [number, number]" + "string | [number, number] | Point" ], "path": "src/plugins/data/common/search/expressions/geo_point.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28849,6 +30251,7 @@ ], "path": "src/plugins/data/common/search/expressions/geo_point.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28872,6 +30275,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28917,6 +30321,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28942,6 +30347,7 @@ ], "path": "src/plugins/data/common/search/strategies/es_search/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28962,6 +30368,7 @@ ], "path": "src/plugins/data/common/search/aggs/param_types/field.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -28991,6 +30398,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/metric_agg_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29013,6 +30421,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/_interval_options.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29027,6 +30436,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/percentiles.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29041,6 +30451,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/percentile_ranks.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29069,6 +30480,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/lib/ip_range.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29090,6 +30502,7 @@ ], "path": "src/plugins/data/common/search/expressions/ip_range.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29112,6 +30525,7 @@ ], "path": "src/plugins/data/common/search/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -29122,7 +30536,8 @@ "label": "id", "description": [], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -29142,7 +30557,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -29167,6 +30583,7 @@ ], "path": "src/plugins/data/common/search/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -29177,7 +30594,8 @@ "label": "id", "description": [], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -29187,7 +30605,8 @@ "label": "keepAlive", "description": [], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -29207,7 +30626,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -29266,6 +30686,7 @@ ], "path": "src/plugins/data/common/search/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -29279,7 +30700,8 @@ "SearchStrategyRequest" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -29299,7 +30721,8 @@ " | undefined" ], "path": "src/plugins/data/common/search/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -29320,6 +30743,7 @@ ], "path": "src/plugins/data/common/search/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29335,6 +30759,7 @@ ], "path": "src/plugins/data/common/search/strategies/es_search/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29573,6 +30998,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29587,6 +31013,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_context_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29608,6 +31035,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_context_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29629,6 +31057,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_context_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29644,6 +31073,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_context_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29659,6 +31089,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_context_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29673,6 +31104,7 @@ ], "path": "src/plugins/data/common/search/expressions/range.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29694,6 +31126,7 @@ ], "path": "src/plugins/data/common/search/expressions/timerange.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29715,6 +31148,7 @@ ], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29726,6 +31160,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/metrics/lib/parent_pipeline_agg_helper.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29742,6 +31177,7 @@ ], "path": "src/plugins/data/common/search/aggs/utils/date_interval_utils/parse_es_interval.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29763,6 +31199,7 @@ ], "path": "src/plugins/data/common/search/expressions/query_filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29777,6 +31214,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/sampler.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29791,6 +31229,7 @@ ], "path": "src/plugins/data/common/search/session/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29805,6 +31244,7 @@ ], "path": "src/plugins/data/common/search/session/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29819,6 +31259,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29833,6 +31274,7 @@ ], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29901,6 +31343,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29912,6 +31355,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/metrics/lib/sibling_pipeline_agg_helper.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29934,6 +31378,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29956,6 +31401,7 @@ ], "path": "src/plugins/data/common/search/search_source/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29970,6 +31416,7 @@ ], "path": "src/plugins/data/common/search/strategies/sql_search/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -29988,6 +31435,7 @@ ], "path": "src/plugins/data/common/search/strategies/sql_search/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -30017,6 +31465,7 @@ ], "path": "src/plugins/data/common/search/strategies/sql_search/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -30031,6 +31480,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/_terms_order_helper.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -30044,6 +31494,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/agg_groups.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30053,7 +31504,8 @@ "label": "[AggGroupNames.Buckets]", "description": [], "path": "src/plugins/data/common/search/aggs/agg_groups.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30063,7 +31515,8 @@ "label": "[AggGroupNames.Metrics]", "description": [], "path": "src/plugins/data/common/search/aggs/agg_groups.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30073,7 +31526,8 @@ "label": "[AggGroupNames.None]", "description": [], "path": "src/plugins/data/common/search/aggs/agg_groups.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -30090,6 +31544,7 @@ ], "path": "src/plugins/data/common/search/aggs/agg_groups.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -30101,6 +31556,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/cidr.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30113,7 +31569,8 @@ "\"cidr\"" ], "path": "src/plugins/data/common/search/expressions/cidr.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30126,7 +31583,8 @@ "\"cidr\"" ], "path": "src/plugins/data/common/search/expressions/cidr.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30139,7 +31597,8 @@ "\"null\"[]" ], "path": "src/plugins/data/common/search/expressions/cidr.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30149,7 +31608,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/cidr.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30160,6 +31620,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/cidr.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30170,6 +31631,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/cidr.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30182,7 +31644,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/cidr.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30195,7 +31658,8 @@ "true" ], "path": "src/plugins/data/common/search/expressions/cidr.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30205,7 +31669,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/cidr.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -30231,6 +31696,7 @@ ], "path": "src/plugins/data/common/search/expressions/cidr.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30244,6 +31710,7 @@ ], "path": "src/plugins/data/common/search/expressions/cidr.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -30264,6 +31731,7 @@ ], "path": "src/plugins/data/common/search/expressions/cidr.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -30281,6 +31749,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/date_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30293,7 +31762,8 @@ "\"dateRange\"" ], "path": "src/plugins/data/common/search/expressions/date_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30306,7 +31776,8 @@ "\"date_range\"" ], "path": "src/plugins/data/common/search/expressions/date_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30319,7 +31790,8 @@ "\"null\"[]" ], "path": "src/plugins/data/common/search/expressions/date_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30329,7 +31801,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/date_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30340,6 +31813,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/date_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30350,6 +31824,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/date_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30362,7 +31837,8 @@ "(\"number\" | \"string\")[]" ], "path": "src/plugins/data/common/search/expressions/date_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30372,7 +31848,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/date_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -30385,6 +31862,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/date_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30397,7 +31875,8 @@ "(\"number\" | \"string\")[]" ], "path": "src/plugins/data/common/search/expressions/date_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30407,7 +31886,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/date_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -30433,6 +31913,7 @@ ], "path": "src/plugins/data/common/search/expressions/date_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30446,6 +31927,7 @@ ], "path": "src/plugins/data/common/search/expressions/date_range.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -30466,6 +31948,7 @@ ], "path": "src/plugins/data/common/search/expressions/date_range.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -30483,6 +31966,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30495,7 +31979,8 @@ "\"eql_raw_response\"" ], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30506,6 +31991,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30527,6 +32013,7 @@ ], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30546,6 +32033,7 @@ ], "path": "src/plugins/data/common/search/expressions/eql_raw_response.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -30565,6 +32053,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/es_raw_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30577,7 +32066,8 @@ "\"es_raw_response\"" ], "path": "src/plugins/data/common/search/expressions/es_raw_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30588,6 +32078,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/es_raw_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30609,6 +32100,7 @@ ], "path": "src/plugins/data/common/search/expressions/es_raw_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30629,6 +32121,7 @@ ], "path": "src/plugins/data/common/search/expressions/es_raw_response.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -30648,6 +32141,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30660,7 +32154,8 @@ "\"existsFilter\"" ], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30673,7 +32168,8 @@ "\"kibana_filter\"" ], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30686,7 +32182,8 @@ "\"null\"[]" ], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30696,7 +32193,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30707,6 +32205,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30717,6 +32216,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30729,7 +32229,8 @@ "\"kibana_field\"[]" ], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30742,7 +32243,8 @@ "true" ], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30752,7 +32254,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -30765,6 +32268,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30777,7 +32281,8 @@ "\"boolean\"[]" ], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30790,7 +32295,8 @@ "false" ], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30800,7 +32306,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -30822,6 +32329,7 @@ ], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30835,6 +32343,7 @@ ], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -30849,6 +32358,7 @@ ], "path": "src/plugins/data/common/search/expressions/exists_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -30866,6 +32376,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30878,7 +32389,8 @@ "\"extendedBounds\"" ], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30891,7 +32403,8 @@ "\"extended_bounds\"" ], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30904,7 +32417,8 @@ "\"null\"[]" ], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30914,7 +32428,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30925,6 +32440,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30935,6 +32451,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30947,7 +32464,8 @@ "\"number\"[]" ], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30957,7 +32475,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -30970,6 +32489,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -30982,7 +32502,8 @@ "\"number\"[]" ], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -30992,7 +32513,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -31018,6 +32540,7 @@ ], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31031,6 +32554,7 @@ ], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -31051,6 +32575,7 @@ ], "path": "src/plugins/data/common/search/expressions/extended_bounds.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31068,6 +32593,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31080,7 +32606,8 @@ "\"field\"" ], "path": "src/plugins/data/common/search/expressions/field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31093,7 +32620,8 @@ "\"kibana_field\"" ], "path": "src/plugins/data/common/search/expressions/field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31106,7 +32634,8 @@ "\"null\"[]" ], "path": "src/plugins/data/common/search/expressions/field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31116,7 +32645,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31127,6 +32657,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31137,6 +32668,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31149,7 +32681,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31162,7 +32695,8 @@ "true" ], "path": "src/plugins/data/common/search/expressions/field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31172,7 +32706,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -31185,6 +32720,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31197,7 +32733,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31210,7 +32747,8 @@ "true" ], "path": "src/plugins/data/common/search/expressions/field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31220,7 +32758,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -31233,6 +32772,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31245,7 +32785,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31255,7 +32796,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -31280,6 +32822,7 @@ ], "path": "src/plugins/data/common/search/expressions/field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31293,6 +32836,7 @@ ], "path": "src/plugins/data/common/search/expressions/field.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -31307,6 +32851,7 @@ ], "path": "src/plugins/data/common/search/expressions/field.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31324,6 +32869,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31336,7 +32882,8 @@ "\"geoBoundingBox\"" ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31349,7 +32896,8 @@ "\"geo_bounding_box\"" ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31362,7 +32910,8 @@ "\"null\"[]" ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31372,7 +32921,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31383,6 +32933,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31393,6 +32944,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31405,7 +32957,8 @@ "\"number\"[]" ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31415,7 +32968,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -31428,6 +32982,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31440,7 +32995,8 @@ "\"number\"[]" ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31450,7 +33006,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -31463,6 +33020,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31475,7 +33033,8 @@ "\"number\"[]" ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31485,7 +33044,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -31498,6 +33058,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31510,7 +33071,8 @@ "\"number\"[]" ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31520,7 +33082,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -31533,6 +33096,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31545,7 +33109,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31555,7 +33120,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -31568,6 +33134,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31580,7 +33147,8 @@ "\"geo_point\"[]" ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31590,7 +33158,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -31603,6 +33172,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31615,7 +33185,8 @@ "\"geo_point\"[]" ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31625,7 +33196,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -31638,6 +33210,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31650,7 +33223,8 @@ "\"geo_point\"[]" ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31660,7 +33234,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -31673,6 +33248,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31685,7 +33261,8 @@ "\"geo_point\"[]" ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31695,7 +33272,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -31720,6 +33298,7 @@ ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31733,6 +33312,7 @@ ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -31747,6 +33327,7 @@ ], "path": "src/plugins/data/common/search/expressions/geo_bounding_box.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31764,6 +33345,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/geo_point.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31776,7 +33358,8 @@ "\"geoPoint\"" ], "path": "src/plugins/data/common/search/expressions/geo_point.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31789,7 +33372,8 @@ "\"geo_point\"" ], "path": "src/plugins/data/common/search/expressions/geo_point.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31802,7 +33386,8 @@ "\"null\"[]" ], "path": "src/plugins/data/common/search/expressions/geo_point.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31812,7 +33397,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/geo_point.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31823,6 +33409,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/geo_point.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31833,6 +33420,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/geo_point.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31845,7 +33433,8 @@ "\"number\"[]" ], "path": "src/plugins/data/common/search/expressions/geo_point.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31855,7 +33444,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/geo_point.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -31868,6 +33458,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/geo_point.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31880,7 +33471,8 @@ "\"number\"[]" ], "path": "src/plugins/data/common/search/expressions/geo_point.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31890,7 +33482,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/geo_point.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -31903,6 +33496,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/geo_point.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31915,7 +33509,8 @@ "string[]" ], "path": "src/plugins/data/common/search/expressions/geo_point.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31928,7 +33523,8 @@ "(\"number\" | \"string\")[]" ], "path": "src/plugins/data/common/search/expressions/geo_point.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31941,7 +33537,8 @@ "true" ], "path": "src/plugins/data/common/search/expressions/geo_point.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -31951,7 +33548,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/geo_point.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -31976,6 +33574,7 @@ ], "path": "src/plugins/data/common/search/expressions/geo_point.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -31989,6 +33588,7 @@ ], "path": "src/plugins/data/common/search/expressions/geo_point.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -32003,6 +33603,7 @@ ], "path": "src/plugins/data/common/search/expressions/geo_point.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -32020,6 +33621,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/ip_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32032,7 +33634,8 @@ "\"ipRange\"" ], "path": "src/plugins/data/common/search/expressions/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32045,7 +33648,8 @@ "\"ip_range\"" ], "path": "src/plugins/data/common/search/expressions/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32058,7 +33662,8 @@ "\"null\"[]" ], "path": "src/plugins/data/common/search/expressions/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32068,7 +33673,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32079,6 +33685,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/ip_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32089,6 +33696,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/ip_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32101,7 +33709,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32114,7 +33723,8 @@ "true" ], "path": "src/plugins/data/common/search/expressions/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32124,7 +33734,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -32137,6 +33748,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/ip_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32149,7 +33761,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32162,7 +33775,8 @@ "true" ], "path": "src/plugins/data/common/search/expressions/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32172,7 +33786,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/ip_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -32198,6 +33813,7 @@ ], "path": "src/plugins/data/common/search/expressions/ip_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32211,6 +33827,7 @@ ], "path": "src/plugins/data/common/search/expressions/ip_range.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -32231,6 +33848,7 @@ ], "path": "src/plugins/data/common/search/expressions/ip_range.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -32248,6 +33866,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/kibana.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32260,7 +33879,8 @@ "\"kibana\"" ], "path": "src/plugins/data/common/search/expressions/kibana.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32273,7 +33893,8 @@ "\"kibana_context\"" ], "path": "src/plugins/data/common/search/expressions/kibana.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32286,7 +33907,8 @@ "(\"null\" | \"kibana_context\")[]" ], "path": "src/plugins/data/common/search/expressions/kibana.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32296,7 +33918,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/kibana.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32307,6 +33930,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/kibana.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -32360,6 +33984,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32380,6 +34005,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -32394,6 +34020,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -32431,6 +34058,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -32448,6 +34076,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/kibana_context_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32457,7 +34086,8 @@ "label": "name", "description": [], "path": "src/plugins/data/common/search/expressions/kibana_context_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32468,6 +34098,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/kibana_context_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32481,6 +34112,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_context_type.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -32495,6 +34127,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/kibana_context_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32508,6 +34141,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_context_type.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -32538,6 +34172,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_context_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32557,6 +34192,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_context_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -32576,6 +34212,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32588,7 +34225,8 @@ "\"kibanaFilter\"" ], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32601,7 +34239,8 @@ "\"kibana_filter\"" ], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32614,7 +34253,8 @@ "\"null\"[]" ], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32624,7 +34264,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32635,6 +34276,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32645,6 +34287,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32657,7 +34300,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32670,7 +34314,8 @@ "string[]" ], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32683,7 +34328,8 @@ "true" ], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32693,7 +34339,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -32706,6 +34353,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32718,7 +34366,8 @@ "\"boolean\"[]" ], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32731,7 +34380,8 @@ "false" ], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32741,7 +34391,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -32754,6 +34405,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32766,7 +34418,8 @@ "\"boolean\"[]" ], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32779,7 +34432,8 @@ "false" ], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32789,7 +34443,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -32807,6 +34462,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32820,6 +34476,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -32834,6 +34491,7 @@ ], "path": "src/plugins/data/common/search/expressions/kibana_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -32851,6 +34509,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/timerange.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32863,7 +34522,8 @@ "\"timerange\"" ], "path": "src/plugins/data/common/search/expressions/timerange.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32876,7 +34536,8 @@ "\"timerange\"" ], "path": "src/plugins/data/common/search/expressions/timerange.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32889,7 +34550,8 @@ "\"null\"[]" ], "path": "src/plugins/data/common/search/expressions/timerange.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32899,7 +34561,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/timerange.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32910,6 +34573,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/timerange.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32920,6 +34584,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/timerange.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32932,7 +34597,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/timerange.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32945,7 +34611,8 @@ "true" ], "path": "src/plugins/data/common/search/expressions/timerange.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32955,7 +34622,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/timerange.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -32968,6 +34636,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/timerange.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -32980,7 +34649,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/timerange.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -32993,7 +34663,8 @@ "true" ], "path": "src/plugins/data/common/search/expressions/timerange.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33003,7 +34674,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/timerange.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -33016,6 +34688,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/timerange.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -33028,7 +34701,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/timerange.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33041,7 +34715,8 @@ "(\"absolute\" | \"relative\")[]" ], "path": "src/plugins/data/common/search/expressions/timerange.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33051,7 +34726,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/timerange.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -33077,6 +34753,7 @@ ], "path": "src/plugins/data/common/search/expressions/timerange.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -33090,6 +34767,7 @@ ], "path": "src/plugins/data/common/search/expressions/timerange.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -33110,6 +34788,7 @@ ], "path": "src/plugins/data/common/search/expressions/timerange.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -33127,6 +34806,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/kql.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -33139,7 +34819,8 @@ "\"kql\"" ], "path": "src/plugins/data/common/search/expressions/kql.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33152,7 +34833,8 @@ "\"kibana_query\"" ], "path": "src/plugins/data/common/search/expressions/kql.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33165,7 +34847,8 @@ "\"null\"[]" ], "path": "src/plugins/data/common/search/expressions/kql.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33175,7 +34858,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/kql.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33186,6 +34870,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/kql.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -33196,6 +34881,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/kql.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -33208,7 +34894,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/kql.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33221,7 +34908,8 @@ "true" ], "path": "src/plugins/data/common/search/expressions/kql.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33234,7 +34922,8 @@ "string[]" ], "path": "src/plugins/data/common/search/expressions/kql.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33244,7 +34933,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/kql.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -33262,6 +34952,7 @@ ], "path": "src/plugins/data/common/search/expressions/kql.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -33275,6 +34966,7 @@ ], "path": "src/plugins/data/common/search/expressions/kql.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -33289,6 +34981,7 @@ ], "path": "src/plugins/data/common/search/expressions/kql.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -33306,6 +34999,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/lucene.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -33318,7 +35012,8 @@ "\"lucene\"" ], "path": "src/plugins/data/common/search/expressions/lucene.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33331,7 +35026,8 @@ "\"kibana_query\"" ], "path": "src/plugins/data/common/search/expressions/lucene.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33344,7 +35040,8 @@ "\"null\"[]" ], "path": "src/plugins/data/common/search/expressions/lucene.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33354,7 +35051,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/lucene.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33365,6 +35063,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/lucene.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -33375,6 +35074,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/lucene.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -33387,7 +35087,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/lucene.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33400,7 +35101,8 @@ "true" ], "path": "src/plugins/data/common/search/expressions/lucene.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33413,7 +35115,8 @@ "string[]" ], "path": "src/plugins/data/common/search/expressions/lucene.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33423,7 +35126,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/lucene.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -33441,6 +35145,7 @@ ], "path": "src/plugins/data/common/search/expressions/lucene.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -33454,6 +35159,7 @@ ], "path": "src/plugins/data/common/search/expressions/lucene.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -33468,6 +35174,7 @@ ], "path": "src/plugins/data/common/search/expressions/lucene.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -33610,6 +35317,7 @@ ], "path": "src/plugins/data/common/search/aggs/buckets/migrate_include_exclude_format.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33621,6 +35329,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -33633,7 +35342,8 @@ "\"numericalRange\"" ], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33646,7 +35356,8 @@ "\"numerical_range\"" ], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33659,7 +35370,8 @@ "\"null\"[]" ], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33669,7 +35381,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33680,6 +35393,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -33690,6 +35404,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -33702,7 +35417,8 @@ "\"number\"[]" ], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33712,7 +35428,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -33725,6 +35442,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -33737,7 +35455,8 @@ "\"number\"[]" ], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33747,7 +35466,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -33760,6 +35480,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -33772,7 +35493,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33782,7 +35504,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -33808,6 +35531,7 @@ ], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -33821,6 +35545,7 @@ ], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -33841,6 +35566,7 @@ ], "path": "src/plugins/data/common/search/expressions/numerical_range.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -33858,6 +35584,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/metrics/lib/parent_pipeline_agg_helper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -33867,7 +35594,8 @@ "label": "subtype", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/lib/parent_pipeline_agg_helper.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33897,6 +35625,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/lib/parent_pipeline_agg_helper.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -33920,6 +35649,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/lib/parent_pipeline_agg_helper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -33939,6 +35669,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/lib/parent_pipeline_agg_helper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -33956,6 +35687,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -33968,7 +35700,8 @@ "\"phraseFilter\"" ], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33981,7 +35714,8 @@ "\"kibana_filter\"" ], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -33994,7 +35728,8 @@ "\"null\"[]" ], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34004,7 +35739,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34015,6 +35751,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34025,6 +35762,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34037,7 +35775,8 @@ "\"kibana_field\"[]" ], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34050,7 +35789,8 @@ "true" ], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34060,7 +35800,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -34073,6 +35814,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34085,7 +35827,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34098,7 +35841,8 @@ "true" ], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34111,7 +35855,8 @@ "true" ], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34121,7 +35866,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -34134,6 +35880,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34146,7 +35893,8 @@ "\"boolean\"[]" ], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34159,7 +35907,8 @@ "false" ], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34169,7 +35918,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -34191,6 +35941,7 @@ ], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34204,6 +35955,7 @@ ], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -34218,6 +35970,7 @@ ], "path": "src/plugins/data/common/search/expressions/phrase_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -34235,6 +35988,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/query_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34247,7 +36001,8 @@ "\"queryFilter\"" ], "path": "src/plugins/data/common/search/expressions/query_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34260,7 +36015,8 @@ "\"kibana_query_filter\"" ], "path": "src/plugins/data/common/search/expressions/query_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34273,7 +36029,8 @@ "\"null\"[]" ], "path": "src/plugins/data/common/search/expressions/query_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34283,7 +36040,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/query_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34294,6 +36052,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/query_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34304,6 +36063,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/query_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34316,7 +36076,8 @@ "\"kibana_query\"[]" ], "path": "src/plugins/data/common/search/expressions/query_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34329,7 +36090,8 @@ "string[]" ], "path": "src/plugins/data/common/search/expressions/query_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34342,7 +36104,8 @@ "true" ], "path": "src/plugins/data/common/search/expressions/query_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34352,7 +36115,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/query_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -34365,6 +36129,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/query_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34377,7 +36142,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/query_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34387,7 +36153,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/query_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -34412,6 +36179,7 @@ ], "path": "src/plugins/data/common/search/expressions/query_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34425,6 +36193,7 @@ ], "path": "src/plugins/data/common/search/expressions/query_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -34439,6 +36208,7 @@ ], "path": "src/plugins/data/common/search/expressions/query_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -34456,6 +36226,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/range_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34468,7 +36239,8 @@ "\"rangeFilter\"" ], "path": "src/plugins/data/common/search/expressions/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34481,7 +36253,8 @@ "\"kibana_filter\"" ], "path": "src/plugins/data/common/search/expressions/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34494,7 +36267,8 @@ "\"null\"[]" ], "path": "src/plugins/data/common/search/expressions/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34504,7 +36278,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34515,6 +36290,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/range_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34525,6 +36301,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/range_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34537,7 +36314,8 @@ "\"kibana_field\"[]" ], "path": "src/plugins/data/common/search/expressions/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34550,7 +36328,8 @@ "true" ], "path": "src/plugins/data/common/search/expressions/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34560,7 +36339,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -34573,6 +36353,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/range_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34585,7 +36366,8 @@ "\"kibana_range\"[]" ], "path": "src/plugins/data/common/search/expressions/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34598,7 +36380,8 @@ "true" ], "path": "src/plugins/data/common/search/expressions/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34608,7 +36391,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -34621,6 +36405,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/range_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34633,7 +36418,8 @@ "\"boolean\"[]" ], "path": "src/plugins/data/common/search/expressions/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34646,7 +36432,8 @@ "false" ], "path": "src/plugins/data/common/search/expressions/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34656,7 +36443,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -34678,6 +36466,7 @@ ], "path": "src/plugins/data/common/search/expressions/range_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34691,6 +36480,7 @@ ], "path": "src/plugins/data/common/search/expressions/range_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -34705,6 +36495,7 @@ ], "path": "src/plugins/data/common/search/expressions/range_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -34722,6 +36513,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34734,7 +36526,8 @@ "\"range\"" ], "path": "src/plugins/data/common/search/expressions/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34747,7 +36540,8 @@ "\"kibana_range\"" ], "path": "src/plugins/data/common/search/expressions/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34760,7 +36554,8 @@ "\"null\"[]" ], "path": "src/plugins/data/common/search/expressions/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34770,7 +36565,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34781,6 +36577,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34791,6 +36588,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34803,7 +36601,8 @@ "(\"number\" | \"string\")[]" ], "path": "src/plugins/data/common/search/expressions/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34813,7 +36612,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -34826,6 +36626,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34838,7 +36639,8 @@ "(\"number\" | \"string\")[]" ], "path": "src/plugins/data/common/search/expressions/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34848,7 +36650,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -34861,6 +36664,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34873,7 +36677,8 @@ "(\"number\" | \"string\")[]" ], "path": "src/plugins/data/common/search/expressions/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34883,7 +36688,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -34896,6 +36702,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34908,7 +36715,8 @@ "(\"number\" | \"string\")[]" ], "path": "src/plugins/data/common/search/expressions/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -34918,7 +36726,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -34936,6 +36745,7 @@ ], "path": "src/plugins/data/common/search/expressions/range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34949,6 +36759,7 @@ ], "path": "src/plugins/data/common/search/expressions/range.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -34963,6 +36774,7 @@ ], "path": "src/plugins/data/common/search/expressions/range.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -34980,6 +36792,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -34992,7 +36805,8 @@ "\"removeFilter\"" ], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35005,7 +36819,8 @@ "\"kibana_context\"" ], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35018,7 +36833,8 @@ "\"kibana_context\"[]" ], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35028,7 +36844,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35039,6 +36856,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -35049,6 +36867,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -35061,7 +36880,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35074,7 +36894,8 @@ "string[]" ], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35084,7 +36905,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -35097,6 +36919,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -35109,7 +36932,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35119,7 +36943,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -35132,6 +36957,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -35144,7 +36970,8 @@ "\"boolean\"[]" ], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35157,7 +36984,8 @@ "string[]" ], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35170,7 +36998,8 @@ "false" ], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35180,7 +37009,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -35220,6 +37050,7 @@ ], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -35239,6 +37070,7 @@ ], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -35253,6 +37085,7 @@ ], "path": "src/plugins/data/common/search/expressions/remove_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -35270,6 +37103,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/select_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -35282,7 +37116,8 @@ "\"selectFilter\"" ], "path": "src/plugins/data/common/search/expressions/select_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35295,7 +37130,8 @@ "\"kibana_context\"" ], "path": "src/plugins/data/common/search/expressions/select_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35308,7 +37144,8 @@ "\"kibana_context\"[]" ], "path": "src/plugins/data/common/search/expressions/select_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35318,7 +37155,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/select_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35329,6 +37167,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/select_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -35339,6 +37178,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/select_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -35351,7 +37191,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/select_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35364,7 +37205,8 @@ "string[]" ], "path": "src/plugins/data/common/search/expressions/select_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35374,7 +37216,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/select_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35387,7 +37230,8 @@ "true" ], "path": "src/plugins/data/common/search/expressions/select_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -35400,6 +37244,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/select_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -35412,7 +37257,8 @@ "\"string\"[]" ], "path": "src/plugins/data/common/search/expressions/select_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35422,7 +37268,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/select_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -35435,6 +37282,7 @@ "description": [], "path": "src/plugins/data/common/search/expressions/select_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -35447,7 +37295,8 @@ "\"boolean\"[]" ], "path": "src/plugins/data/common/search/expressions/select_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35460,7 +37309,8 @@ "string[]" ], "path": "src/plugins/data/common/search/expressions/select_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35473,7 +37323,8 @@ "false" ], "path": "src/plugins/data/common/search/expressions/select_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35483,7 +37334,8 @@ "label": "help", "description": [], "path": "src/plugins/data/common/search/expressions/select_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -35523,6 +37375,7 @@ ], "path": "src/plugins/data/common/search/expressions/select_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -35542,6 +37395,7 @@ ], "path": "src/plugins/data/common/search/expressions/select_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -35556,6 +37410,7 @@ ], "path": "src/plugins/data/common/search/expressions/select_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -35573,6 +37428,7 @@ "description": [], "path": "src/plugins/data/common/search/aggs/metrics/lib/sibling_pipeline_agg_helper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -35582,7 +37438,8 @@ "label": "subtype", "description": [], "path": "src/plugins/data/common/search/aggs/metrics/lib/sibling_pipeline_agg_helper.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "data", @@ -35612,6 +37469,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/lib/sibling_pipeline_agg_helper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -35625,6 +37483,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/lib/sibling_pipeline_agg_helper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -35650,6 +37509,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/lib/sibling_pipeline_agg_helper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "data", @@ -35669,6 +37529,7 @@ ], "path": "src/plugins/data/common/search/aggs/metrics/lib/sibling_pipeline_agg_helper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/data_search.mdx b/api_docs/data_search.mdx index ba61613880798..1eb654fe6b51a 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.search'] --- import dataSearchObj from './data_search.devdocs.json'; diff --git a/api_docs/data_view_editor.devdocs.json b/api_docs/data_view_editor.devdocs.json index a03f5a4289435..e3bf819317755 100644 --- a/api_docs/data_view_editor.devdocs.json +++ b/api_docs/data_view_editor.devdocs.json @@ -13,6 +13,7 @@ "description": [], "path": "src/plugins/data_view_editor/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViewEditor", @@ -36,6 +37,7 @@ ], "path": "src/plugins/data_view_editor/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViewEditor", @@ -55,6 +57,7 @@ ], "path": "src/plugins/data_view_editor/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -74,6 +77,7 @@ ], "path": "src/plugins/data_view_editor/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -90,7 +94,8 @@ "boolean | undefined" ], "path": "src/plugins/data_view_editor/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewEditor", @@ -105,7 +110,8 @@ "boolean | undefined" ], "path": "src/plugins/data_view_editor/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewEditor", @@ -127,7 +133,8 @@ " | undefined" ], "path": "src/plugins/data_view_editor/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewEditor", @@ -142,7 +149,8 @@ "boolean | undefined" ], "path": "src/plugins/data_view_editor/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -160,6 +168,7 @@ "description": [], "path": "src/plugins/data_view_editor/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViewEditor", @@ -181,6 +190,7 @@ ], "path": "src/plugins/data_view_editor/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViewEditor", @@ -200,6 +210,7 @@ ], "path": "src/plugins/data_view_editor/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -225,6 +236,7 @@ ], "path": "src/plugins/data_view_editor/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -238,7 +250,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewEditor", @@ -251,7 +264,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -266,7 +280,8 @@ "{ editDataView: () => boolean; }" ], "path": "src/plugins/data_view_editor/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", diff --git a/api_docs/data_view_editor.mdx b/api_docs/data_view_editor.mdx index e592a8a1ca832..06a7e6674ad4c 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViewEditor'] --- import dataViewEditorObj from './data_view_editor.devdocs.json'; diff --git a/api_docs/data_view_field_editor.devdocs.json b/api_docs/data_view_field_editor.devdocs.json index 6d4d840a9c85e..7843f117d57e9 100644 --- a/api_docs/data_view_field_editor.devdocs.json +++ b/api_docs/data_view_field_editor.devdocs.json @@ -31,6 +31,7 @@ ], "path": "src/plugins/data_view_field_editor/public/components/field_format_editor/editors/default/default.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViewFieldEditor", @@ -40,7 +41,8 @@ "label": "formatId", "description": [], "path": "src/plugins/data_view_field_editor/public/components/field_format_editor/editors/default/default.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewFieldEditor", @@ -54,7 +56,8 @@ " & S" ], "path": "src/plugins/data_view_field_editor/public/components/field_format_editor/editors/default/default.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewFieldEditor", @@ -80,6 +83,7 @@ ], "path": "src/plugins/data_view_field_editor/public/components/field_format_editor/editors/default/default.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViewFieldEditor", @@ -100,6 +104,7 @@ ], "path": "src/plugins/data_view_field_editor/public/components/field_format_editor/editors/default/default.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -114,6 +119,7 @@ ], "path": "src/plugins/data_view_field_editor/public/components/field_format_editor/editors/default/default.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -131,6 +137,7 @@ ], "path": "src/plugins/data_view_field_editor/public/components/field_format_editor/editors/default/default.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViewFieldEditor", @@ -144,6 +151,7 @@ ], "path": "src/plugins/data_view_field_editor/public/components/field_format_editor/editors/default/default.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -161,6 +169,7 @@ ], "path": "src/plugins/data_view_field_editor/public/components/field_format_editor/editors/default/default.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -181,6 +190,7 @@ ], "path": "src/plugins/data_view_field_editor/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViewFieldEditor", @@ -192,7 +202,8 @@ "\nname / path used for the field" ], "path": "src/plugins/data_view_field_editor/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewFieldEditor", @@ -207,7 +218,8 @@ "\"boolean\" | \"date\" | \"keyword\" | \"ip\" | \"geo_point\" | \"long\" | \"double\" | \"composite\"" ], "path": "src/plugins/data_view_field_editor/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewFieldEditor", @@ -222,7 +234,8 @@ "{ source: string; } | undefined" ], "path": "src/plugins/data_view_field_editor/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewFieldEditor", @@ -237,7 +250,8 @@ "string | undefined" ], "path": "src/plugins/data_view_field_editor/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewFieldEditor", @@ -252,7 +266,8 @@ "number | undefined" ], "path": "src/plugins/data_view_field_editor/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewFieldEditor", @@ -276,7 +291,8 @@ "> | undefined" ], "path": "src/plugins/data_view_field_editor/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -302,6 +318,7 @@ ], "path": "src/plugins/data_view_field_editor/public/components/field_format_editor/editors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViewFieldEditor", @@ -311,7 +328,8 @@ "label": "fieldType", "description": [], "path": "src/plugins/data_view_field_editor/public/components/field_format_editor/editors/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewFieldEditor", @@ -330,7 +348,8 @@ } ], "path": "src/plugins/data_view_field_editor/public/components/field_format_editor/editors/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewFieldEditor", @@ -343,7 +362,8 @@ "{ type?: string | undefined; } & P" ], "path": "src/plugins/data_view_field_editor/public/components/field_format_editor/editors/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewFieldEditor", @@ -359,6 +379,7 @@ ], "path": "src/plugins/data_view_field_editor/public/components/field_format_editor/editors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViewFieldEditor", @@ -372,6 +393,7 @@ ], "path": "src/plugins/data_view_field_editor/public/components/field_format_editor/editors/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -389,6 +411,7 @@ ], "path": "src/plugins/data_view_field_editor/public/components/field_format_editor/editors/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -402,7 +425,8 @@ "string | undefined" ], "path": "src/plugins/data_view_field_editor/public/components/field_format_editor/field_format_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -418,6 +442,7 @@ "description": [], "path": "src/plugins/data_view_field_editor/public/open_delete_modal.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViewFieldEditor", @@ -438,7 +463,8 @@ "; }" ], "path": "src/plugins/data_view_field_editor/public/open_delete_modal.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewFieldEditor", @@ -452,6 +478,7 @@ ], "path": "src/plugins/data_view_field_editor/public/open_delete_modal.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViewFieldEditor", @@ -465,6 +492,7 @@ ], "path": "src/plugins/data_view_field_editor/public/open_delete_modal.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -481,7 +509,8 @@ "string | string[]" ], "path": "src/plugins/data_view_field_editor/public/open_delete_modal.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -497,6 +526,7 @@ ], "path": "src/plugins/data_view_field_editor/public/open_editor.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViewFieldEditor", @@ -519,7 +549,8 @@ "; }" ], "path": "src/plugins/data_view_field_editor/public/open_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewFieldEditor", @@ -543,6 +574,7 @@ ], "path": "src/plugins/data_view_field_editor/public/open_editor.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViewFieldEditor", @@ -562,6 +594,7 @@ ], "path": "src/plugins/data_view_field_editor/public/open_editor.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -580,7 +613,8 @@ "string | undefined" ], "path": "src/plugins/data_view_field_editor/public/open_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewFieldEditor", @@ -602,7 +636,8 @@ " | undefined" ], "path": "src/plugins/data_view_field_editor/public/open_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -632,6 +667,7 @@ ], "path": "src/plugins/data_view_field_editor/public/components/field_format_editor/editors/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -656,6 +692,7 @@ ], "path": "src/plugins/data_view_field_editor/public/components/field_format_editor/editors/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -673,6 +710,7 @@ ], "path": "src/plugins/data_view_field_editor/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViewFieldEditor", @@ -693,7 +731,8 @@ "<{}>) => void; }" ], "path": "src/plugins/data_view_field_editor/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -710,6 +749,7 @@ ], "path": "src/plugins/data_view_field_editor/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViewFieldEditor", @@ -733,6 +773,7 @@ ], "path": "src/plugins/data_view_field_editor/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViewFieldEditor", @@ -752,6 +793,7 @@ ], "path": "src/plugins/data_view_field_editor/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -777,6 +819,7 @@ ], "path": "src/plugins/data_view_field_editor/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViewFieldEditor", @@ -796,6 +839,7 @@ ], "path": "src/plugins/data_view_field_editor/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -828,7 +872,8 @@ "

| undefined; }" ], "path": "src/plugins/data_view_field_editor/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewFieldEditor", @@ -841,7 +886,8 @@ "{ editIndexPattern: () => boolean; }" ], "path": "src/plugins/data_view_field_editor/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewFieldEditor", @@ -857,6 +903,7 @@ ], "path": "src/plugins/data_view_field_editor/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -870,7 +917,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViewFieldEditor", @@ -883,7 +931,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/data_view_field_editor.mdx b/api_docs/data_view_field_editor.mdx index b9d7a398467f9..f5aac30bac571 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViewFieldEditor'] --- import dataViewFieldEditorObj from './data_view_field_editor.devdocs.json'; diff --git a/api_docs/data_view_management.devdocs.json b/api_docs/data_view_management.devdocs.json index 3406ca46de8e5..2a39ea18c0bc3 100644 --- a/api_docs/data_view_management.devdocs.json +++ b/api_docs/data_view_management.devdocs.json @@ -16,6 +16,7 @@ "description": [], "path": "src/plugins/data_view_management/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -29,6 +30,7 @@ "description": [], "path": "src/plugins/data_view_management/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true diff --git a/api_docs/data_view_management.mdx b/api_docs/data_view_management.mdx index c01cf995f9029..02ba97f233424 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViewManagement'] --- import dataViewManagementObj from './data_view_management.devdocs.json'; diff --git a/api_docs/data_views.devdocs.json b/api_docs/data_views.devdocs.json index f56b736e4cf43..389500b91049c 100644 --- a/api_docs/data_views.devdocs.json +++ b/api_docs/data_views.devdocs.json @@ -24,6 +24,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -38,7 +39,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -50,7 +52,8 @@ "\nTitle of data view" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -75,7 +78,8 @@ ">; }" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -97,7 +101,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -127,7 +132,8 @@ "; }" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -142,7 +148,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -157,7 +164,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -173,6 +181,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "maps", @@ -196,7 +205,8 @@ "{ [x: string]: unknown[]; }" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -209,7 +219,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -226,7 +237,8 @@ "string[]" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -241,7 +253,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -263,7 +276,8 @@ "[] | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -278,7 +292,8 @@ "string[]" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -290,7 +305,8 @@ "\nPrevents errors when index pattern exists before indices" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -302,7 +318,8 @@ "\nName of the data view. Human readable name used to differentiate data view." ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -315,7 +332,8 @@ "string[]" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -331,6 +349,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -346,6 +365,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -365,6 +385,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -382,6 +403,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -399,6 +421,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -424,6 +447,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -445,6 +469,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -460,6 +485,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -484,6 +510,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -499,6 +526,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -518,6 +546,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -537,6 +566,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "dataViewManagement", @@ -562,6 +592,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -591,6 +622,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "visTypeTimeseries", @@ -660,6 +692,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "dataViewManagement", @@ -683,6 +716,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -707,6 +741,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -731,6 +766,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -756,6 +792,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -781,6 +818,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -796,6 +834,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -823,6 +862,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -847,6 +887,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -887,6 +928,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -916,6 +958,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -951,6 +994,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -966,6 +1010,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -988,6 +1033,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1007,6 +1053,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -1022,6 +1069,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1049,6 +1097,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -1064,6 +1113,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1091,6 +1141,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "map of runtime field definitions by field name" @@ -1118,6 +1169,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -1133,6 +1185,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1162,6 +1215,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -1185,6 +1239,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1204,6 +1259,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -1219,6 +1275,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1239,6 +1296,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1264,6 +1322,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -1279,6 +1338,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1314,6 +1374,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -1329,6 +1390,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1345,6 +1407,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1368,6 +1431,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1387,6 +1451,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -1402,6 +1467,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1418,6 +1484,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1437,6 +1504,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -1452,6 +1520,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1468,6 +1537,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1497,6 +1567,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -1512,6 +1583,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1537,6 +1609,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1556,6 +1629,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -1571,6 +1645,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1601,6 +1676,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -1632,7 +1708,8 @@ " | undefined; fixedInterval?: string[] | undefined; timeZone?: string[] | undefined; timeSeriesDimension?: boolean | undefined; timeSeriesMetric?: \"gauge\" | \"histogram\" | \"summary\" | \"counter\" | undefined; shortDotsEnable?: boolean | undefined; isMapped?: boolean | undefined; }" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1650,6 +1727,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -1671,6 +1749,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1686,7 +1765,8 @@ "\nCount is used for field popularity in discover." ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1698,7 +1778,8 @@ "\nSet count, which is used for field popularity in discover." ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1720,7 +1801,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1742,7 +1824,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1757,7 +1840,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1772,7 +1856,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1787,7 +1872,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1802,7 +1888,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1817,7 +1904,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1832,7 +1920,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1847,7 +1936,8 @@ "Record | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1862,7 +1952,8 @@ "Record | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1874,7 +1965,8 @@ "\nGet field name" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1886,7 +1978,8 @@ "\nGets display name, calcualted based on name, custom label and shortDotsEnable." ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1898,7 +1991,8 @@ "\nGets field type" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1913,7 +2007,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1925,7 +2020,8 @@ "\nReturns true if scripted field" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1937,7 +2033,8 @@ "\nReturns true if field is searchable" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1949,7 +2046,8 @@ "\nReturns true if field is aggregatable" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1961,7 +2059,8 @@ "\nreturns true if field is a TSDB dimension field" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1976,7 +2075,8 @@ "\"gauge\" | \"histogram\" | \"summary\" | \"counter\" | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -1991,7 +2091,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -2006,7 +2107,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -2021,7 +2123,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -2033,7 +2136,8 @@ "\nReturns true if field is available via doc values" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -2049,7 +2153,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -2064,7 +2169,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -2076,7 +2182,8 @@ "\nReturns true if runtime field defined on data view" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -2088,7 +2195,8 @@ "\nReturns true if field is sortable" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -2100,7 +2208,8 @@ "\nReturns true if field is filterable" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -2112,7 +2221,8 @@ "\nReturns true if field is visualizable" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -2128,6 +2238,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2145,6 +2256,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2164,6 +2276,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2183,6 +2296,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2200,6 +2314,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2219,6 +2334,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2251,6 +2367,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -2272,6 +2389,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2293,6 +2411,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2327,6 +2446,7 @@ ], "path": "src/plugins/data_views/public/data_views/data_views_api_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -2342,6 +2462,7 @@ ], "path": "src/plugins/data_views/public/data_views/data_views_api_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -2357,6 +2478,7 @@ ], "path": "src/plugins/data_views/public/data_views/data_views_api_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2386,6 +2508,7 @@ ], "path": "src/plugins/data_views/public/data_views/data_views_api_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -2407,6 +2530,7 @@ ], "path": "src/plugins/data_views/public/data_views/data_views_api_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2426,6 +2550,7 @@ ], "path": "src/plugins/data_views/public/data_views/data_views_api_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2453,6 +2578,7 @@ ], "path": "src/plugins/data_views/common/errors/data_view_saved_object_conflict.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -2468,6 +2594,7 @@ ], "path": "src/plugins/data_views/common/errors/data_view_saved_object_conflict.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -2483,6 +2610,7 @@ ], "path": "src/plugins/data_views/common/errors/data_view_saved_object_conflict.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2550,6 +2678,7 @@ ], "path": "src/plugins/data_views/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -2602,6 +2731,7 @@ ], "path": "src/plugins/data_views/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -2638,6 +2768,7 @@ ], "path": "src/plugins/data_views/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2658,6 +2789,7 @@ ], "path": "src/plugins/data_views/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2698,6 +2830,7 @@ ], "path": "src/plugins/data_views/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -2717,6 +2850,7 @@ ], "path": "src/plugins/data_views/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2737,6 +2871,7 @@ ], "path": "src/plugins/data_views/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2754,6 +2889,7 @@ ], "path": "src/plugins/data_views/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2771,6 +2907,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -2786,6 +2923,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -2803,6 +2941,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -2824,6 +2963,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2843,6 +2983,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -2858,6 +2999,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2877,6 +3019,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -2892,6 +3035,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2919,6 +3063,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -2934,6 +3079,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2950,6 +3096,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2979,6 +3126,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -2994,6 +3142,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3013,6 +3162,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3030,6 +3180,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -3043,6 +3194,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3072,6 +3224,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3097,6 +3250,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3114,6 +3268,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3131,6 +3286,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -3146,6 +3302,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -3162,6 +3319,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3181,6 +3339,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3214,6 +3373,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -3235,6 +3395,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3288,6 +3449,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -3315,6 +3477,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3338,6 +3501,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3367,6 +3531,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -3386,6 +3551,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3428,6 +3594,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -3450,6 +3617,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3473,6 +3641,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3511,6 +3680,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -3533,6 +3703,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3562,6 +3733,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -3575,6 +3747,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3610,6 +3783,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -3629,6 +3803,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3645,6 +3820,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3682,6 +3858,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -3703,6 +3880,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3719,6 +3897,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3735,6 +3914,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3770,6 +3950,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -3791,6 +3972,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3807,6 +3989,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3842,6 +4025,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -3861,6 +4045,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3875,6 +4060,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3889,6 +4075,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3908,6 +4095,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -3923,6 +4111,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3950,6 +4139,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "default data view" @@ -3986,6 +4176,7 @@ ], "path": "src/plugins/data_views/public/data_views_service_public.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -3999,6 +4190,7 @@ ], "path": "src/plugins/data_views/public/data_views_service_public.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -4019,7 +4211,8 @@ } ], "path": "src/plugins/data_views/public/data_views_service_public.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -4035,6 +4228,7 @@ ], "path": "src/plugins/data_views/public/data_views_service_public.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -4056,6 +4250,7 @@ ], "path": "src/plugins/data_views/public/data_views_service_public.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4090,6 +4285,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -4103,6 +4299,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -4116,6 +4313,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4143,6 +4341,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -4162,6 +4361,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4181,6 +4381,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -4194,6 +4395,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4208,6 +4410,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4237,6 +4440,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -4250,6 +4454,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4264,6 +4469,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4284,6 +4490,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4299,6 +4506,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4328,6 +4536,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -4341,6 +4550,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4361,6 +4571,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4376,6 +4587,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4393,6 +4605,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -4406,6 +4619,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4420,6 +4634,7 @@ ], "path": "src/plugins/data_views/public/saved_objects_client_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4454,6 +4669,7 @@ ], "path": "src/plugins/data_views/public/ui_settings_wrapper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -4467,6 +4683,7 @@ ], "path": "src/plugins/data_views/public/ui_settings_wrapper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -4480,6 +4697,7 @@ ], "path": "src/plugins/data_views/public/ui_settings_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4497,6 +4715,7 @@ ], "path": "src/plugins/data_views/public/ui_settings_wrapper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -4510,6 +4729,7 @@ ], "path": "src/plugins/data_views/public/ui_settings_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4531,6 +4751,7 @@ ], "path": "src/plugins/data_views/public/ui_settings_wrapper.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4546,6 +4767,7 @@ ], "path": "src/plugins/data_views/public/ui_settings_wrapper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -4559,6 +4781,7 @@ ], "path": "src/plugins/data_views/public/ui_settings_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4573,6 +4796,7 @@ ], "path": "src/plugins/data_views/public/ui_settings_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4590,6 +4814,7 @@ ], "path": "src/plugins/data_views/public/ui_settings_wrapper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -4603,6 +4828,7 @@ ], "path": "src/plugins/data_views/public/ui_settings_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4627,6 +4853,7 @@ ], "path": "src/plugins/data_views/common/fields/utils.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4642,7 +4869,8 @@ " | undefined; }" ], "path": "src/plugins/data_views/common/fields/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4661,6 +4889,7 @@ ], "path": "src/plugins/data_views/common/fields/utils.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4676,7 +4905,8 @@ " | undefined; }" ], "path": "src/plugins/data_views/common/fields/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4695,6 +4925,7 @@ ], "path": "src/plugins/data_views/common/lib/validate_data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -4710,6 +4941,7 @@ ], "path": "src/plugins/data_views/common/lib/validate_data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4731,6 +4963,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -4742,7 +4975,8 @@ "\nFields as a serialized array of field specs" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -4754,7 +4988,8 @@ "\nData view title" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -4769,7 +5004,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -4784,7 +5020,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -4799,7 +5036,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -4814,7 +5052,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -4829,7 +5068,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -4844,7 +5084,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -4859,7 +5100,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -4874,7 +5116,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -4889,7 +5132,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4905,6 +5149,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -4916,7 +5161,8 @@ "\nSaved object id (or generated id if in-memory only)" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -4931,7 +5177,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -4943,7 +5190,8 @@ "\nData view title" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -4958,7 +5206,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -4980,7 +5229,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -4993,7 +5243,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5009,6 +5260,7 @@ ], "path": "src/plugins/data_views/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -5029,7 +5281,8 @@ } ], "path": "src/plugins/data_views/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -5052,7 +5305,8 @@ "[]) => void; has: (id: string) => boolean; }" ], "path": "src/plugins/data_views/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5068,6 +5322,7 @@ ], "path": "src/plugins/data_views/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -5098,7 +5353,8 @@ "; }" ], "path": "src/plugins/data_views/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5131,6 +5387,7 @@ ], "path": "src/plugins/data_views/public/data_views_service_public.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -5146,6 +5403,7 @@ ], "path": "src/plugins/data_views/public/data_views_service_public.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5168,7 +5426,8 @@ } ], "path": "src/plugins/data_views/public/data_views_service_public.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5182,6 +5441,7 @@ "description": [], "path": "src/plugins/data_views/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -5191,7 +5451,8 @@ "label": "hasDataView", "description": [], "path": "src/plugins/data_views/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -5201,7 +5462,8 @@ "label": "hasUserDataView", "description": [], "path": "src/plugins/data_views/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5235,6 +5497,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -5265,6 +5528,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -5286,6 +5550,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5315,6 +5580,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5340,6 +5606,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -5355,6 +5622,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5384,6 +5652,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -5399,6 +5668,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5436,6 +5706,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -5465,6 +5736,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5484,6 +5756,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5509,6 +5782,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -5531,6 +5805,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5558,6 +5833,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -5579,6 +5855,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5607,6 +5884,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -5622,6 +5900,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -5641,6 +5920,7 @@ "description": [], "path": "src/plugins/data_views/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -5650,7 +5930,8 @@ "label": "total", "description": [], "path": "src/plugins/data_views/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5666,6 +5947,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -5691,6 +5973,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -5712,6 +5995,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5733,6 +6017,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -5748,6 +6033,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5764,6 +6050,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5795,6 +6082,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -5810,6 +6098,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5826,6 +6115,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5848,6 +6138,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5865,6 +6156,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5896,6 +6188,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -5911,6 +6204,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5933,6 +6227,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5949,6 +6244,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5968,6 +6264,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -5983,6 +6280,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5999,6 +6297,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6020,6 +6319,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -6038,6 +6338,7 @@ ], "path": "src/plugins/data_views/common/lib/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6054,6 +6355,7 @@ ], "path": "src/plugins/data_views/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6120,6 +6422,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6155,6 +6458,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6171,6 +6475,7 @@ ], "path": "src/plugins/data_views/common/lib/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6187,6 +6492,7 @@ ], "path": "src/plugins/data_views/common/lib/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6203,6 +6509,7 @@ ], "path": "src/plugins/data_views/common/lib/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6219,6 +6526,7 @@ ], "path": "src/plugins/data_views/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6235,6 +6543,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6259,6 +6568,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -6274,6 +6584,7 @@ ], "path": "src/plugins/data_views/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -6296,6 +6607,7 @@ ], "path": "src/plugins/data_views/public/types.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -6324,6 +6636,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -6338,7 +6651,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -6350,7 +6664,8 @@ "\nTitle of data view" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -6375,7 +6690,8 @@ ">; }" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -6397,7 +6713,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -6427,7 +6744,8 @@ "; }" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -6442,7 +6760,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -6457,7 +6776,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -6473,6 +6793,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "maps", @@ -6496,7 +6817,8 @@ "{ [x: string]: unknown[]; }" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -6509,7 +6831,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -6526,7 +6849,8 @@ "string[]" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -6541,7 +6865,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -6563,7 +6888,8 @@ "[] | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -6578,7 +6904,8 @@ "string[]" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -6590,7 +6917,8 @@ "\nPrevents errors when index pattern exists before indices" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -6602,7 +6930,8 @@ "\nName of the data view. Human readable name used to differentiate data view." ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -6615,7 +6944,8 @@ "string[]" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -6631,6 +6961,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -6646,6 +6977,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6665,6 +6997,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6682,6 +7015,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6699,6 +7033,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6724,6 +7059,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6745,6 +7081,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6760,6 +7097,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6784,6 +7122,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -6799,6 +7138,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6818,6 +7158,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6837,6 +7178,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "dataViewManagement", @@ -6862,6 +7204,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6891,6 +7234,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "visTypeTimeseries", @@ -6960,6 +7304,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "dataViewManagement", @@ -6983,6 +7328,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -7007,6 +7353,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -7031,6 +7378,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -7056,6 +7404,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -7081,6 +7430,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -7096,6 +7446,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7123,6 +7474,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -7147,6 +7499,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -7187,6 +7540,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -7216,6 +7570,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7251,6 +7606,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -7266,6 +7622,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7288,6 +7645,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7307,6 +7665,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -7322,6 +7681,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7349,6 +7709,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -7364,6 +7725,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7391,6 +7753,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "map of runtime field definitions by field name" @@ -7418,6 +7781,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -7433,6 +7797,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7462,6 +7827,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -7485,6 +7851,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7504,6 +7871,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -7519,6 +7887,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7539,6 +7908,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -7564,6 +7934,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -7579,6 +7950,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7614,6 +7986,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -7629,6 +8002,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7645,6 +8019,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7668,6 +8043,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7687,6 +8063,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -7702,6 +8079,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7718,6 +8096,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -7737,6 +8116,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -7752,6 +8132,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7768,6 +8149,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -7797,6 +8179,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -7812,6 +8195,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7837,6 +8221,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7856,6 +8241,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -7871,6 +8257,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7938,6 +8325,7 @@ ], "path": "src/plugins/data_views/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -7951,6 +8339,7 @@ ], "path": "src/plugins/data_views/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -7971,6 +8360,7 @@ ], "path": "src/plugins/data_views/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8020,6 +8410,7 @@ ], "path": "src/plugins/data_views/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -8056,6 +8447,7 @@ ], "path": "src/plugins/data_views/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8076,6 +8468,7 @@ ], "path": "src/plugins/data_views/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8123,6 +8516,7 @@ ], "path": "src/plugins/data_views/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -8142,6 +8536,7 @@ ], "path": "src/plugins/data_views/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8162,6 +8557,7 @@ ], "path": "src/plugins/data_views/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8179,6 +8575,7 @@ ], "path": "src/plugins/data_views/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -8196,6 +8593,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -8211,6 +8609,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -8228,6 +8627,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -8249,6 +8649,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8268,6 +8669,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -8283,6 +8685,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8302,6 +8705,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -8317,6 +8721,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8344,6 +8749,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -8359,6 +8765,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8375,6 +8782,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8404,6 +8812,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -8419,6 +8828,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8438,6 +8848,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8455,6 +8866,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -8468,6 +8880,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -8497,6 +8910,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8522,6 +8936,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8539,6 +8954,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8556,6 +8972,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -8571,6 +8988,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -8587,6 +9005,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8606,6 +9025,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8639,6 +9059,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -8660,6 +9081,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8713,6 +9135,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -8740,6 +9163,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8763,6 +9187,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -8792,6 +9217,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -8811,6 +9237,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8853,6 +9280,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -8875,6 +9303,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8898,6 +9327,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -8936,6 +9366,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -8958,6 +9389,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8987,6 +9419,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -9000,6 +9433,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9035,6 +9469,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -9054,6 +9489,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9070,6 +9506,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9107,6 +9544,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -9128,6 +9566,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9144,6 +9583,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9160,6 +9600,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9195,6 +9636,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -9216,6 +9658,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9232,6 +9675,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9267,6 +9711,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -9286,6 +9731,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9300,6 +9746,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9314,6 +9761,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9333,6 +9781,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -9348,6 +9797,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9375,6 +9825,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "default data view" @@ -9392,6 +9843,7 @@ "description": [], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -9405,6 +9857,7 @@ ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -9418,6 +9871,7 @@ ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9432,6 +9886,7 @@ ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9465,6 +9920,7 @@ ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -9475,6 +9931,7 @@ "description": [], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -9487,7 +9944,8 @@ "string | string[]" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -9500,7 +9958,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -9513,7 +9972,8 @@ "{ allow_no_indices: boolean; } | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -9526,7 +9986,8 @@ "string | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -9539,7 +10000,8 @@ "string | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -9553,7 +10015,8 @@ " | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -9576,6 +10039,7 @@ ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -9591,6 +10055,7 @@ ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9629,6 +10094,7 @@ ], "path": "src/plugins/data_views/server/data_views_service_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -9644,6 +10110,7 @@ ], "path": "src/plugins/data_views/server/data_views_service_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9676,6 +10143,7 @@ ], "path": "src/plugins/data_views/server/utils.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "unifiedSearch", @@ -9707,6 +10175,7 @@ ], "path": "src/plugins/data_views/server/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9721,6 +10190,7 @@ ], "path": "src/plugins/data_views/server/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9750,6 +10220,7 @@ ], "path": "src/plugins/data_views/server/fetcher/lib/map_capabilities.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -9765,6 +10236,7 @@ ], "path": "src/plugins/data_views/server/fetcher/lib/map_capabilities.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9803,6 +10275,7 @@ ], "path": "src/plugins/data_views/server/utils.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "unifiedSearch", @@ -9834,6 +10307,7 @@ ], "path": "src/plugins/data_views/server/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9857,6 +10331,7 @@ ], "path": "src/plugins/data_views/server/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9876,6 +10351,7 @@ ], "path": "src/plugins/data_views/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -9896,7 +10372,8 @@ } ], "path": "src/plugins/data_views/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -9917,7 +10394,8 @@ } ], "path": "src/plugins/data_views/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -9939,7 +10417,8 @@ " | undefined" ], "path": "src/plugins/data_views/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9955,6 +10434,7 @@ ], "path": "src/plugins/data_views/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -9975,7 +10455,8 @@ } ], "path": "src/plugins/data_views/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -9990,7 +10471,8 @@ "Logger" ], "path": "src/plugins/data_views/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10004,6 +10486,7 @@ "description": [], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -10013,7 +10496,8 @@ "label": "aggregatable", "description": [], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -10023,7 +10507,8 @@ "label": "name", "description": [], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -10033,7 +10518,8 @@ "label": "readFromDocValues", "description": [], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -10043,7 +10529,8 @@ "label": "searchable", "description": [], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -10053,7 +10540,8 @@ "label": "type", "description": [], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -10066,7 +10554,8 @@ "string[]" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -10079,7 +10568,8 @@ "FieldSubType | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -10092,7 +10582,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -10105,7 +10596,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -10118,7 +10610,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -10131,7 +10624,8 @@ "\"gauge\" | \"histogram\" | \"summary\" | \"counter\" | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -10144,7 +10638,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/server/fetcher/index_patterns_fetcher.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10160,6 +10655,7 @@ ], "path": "src/plugins/data_views/server/fetcher/lib/map_capabilities.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -10182,7 +10678,8 @@ "> | undefined; error?: string | undefined; }" ], "path": "src/plugins/data_views/server/fetcher/lib/map_capabilities.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10198,6 +10695,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -10223,6 +10721,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -10244,6 +10743,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10265,6 +10765,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -10280,6 +10781,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10296,6 +10798,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10327,6 +10830,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -10342,6 +10846,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10358,6 +10863,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10380,6 +10886,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10397,6 +10904,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10428,6 +10936,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -10443,6 +10952,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10465,6 +10975,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10481,6 +10992,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10500,6 +11012,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -10515,6 +11028,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10531,6 +11045,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10553,6 +11068,7 @@ ], "path": "src/plugins/data_views/server/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10566,6 +11082,7 @@ ], "path": "src/plugins/data_views/server/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10601,6 +11118,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10614,6 +11132,7 @@ ], "path": "src/plugins/data_views/server/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10627,6 +11146,7 @@ ], "path": "src/plugins/data_views/server/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10640,6 +11160,7 @@ ], "path": "src/plugins/data_views/server/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10653,6 +11174,7 @@ ], "path": "src/plugins/data_views/server/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10669,6 +11191,7 @@ ], "path": "src/plugins/data_views/server/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10685,6 +11208,7 @@ ], "path": "src/plugins/data_views/server/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10701,6 +11225,7 @@ ], "path": "src/plugins/data_views/server/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10717,6 +11242,7 @@ ], "path": "src/plugins/data_views/server/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10733,6 +11259,7 @@ ], "path": "src/plugins/data_views/server/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10746,6 +11273,7 @@ ], "path": "src/plugins/data_views/server/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10759,6 +11287,7 @@ ], "path": "src/plugins/data_views/server/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10772,6 +11301,7 @@ ], "path": "src/plugins/data_views/server/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10785,6 +11315,7 @@ ], "path": "src/plugins/data_views/server/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10798,6 +11329,7 @@ ], "path": "src/plugins/data_views/server/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10811,6 +11343,7 @@ ], "path": "src/plugins/data_views/server/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -10826,6 +11359,7 @@ ], "path": "src/plugins/data_views/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -10855,6 +11389,7 @@ ], "path": "src/plugins/data_views/server/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10868,7 +11403,8 @@ "SavedObjectsClientContract" ], "path": "src/plugins/data_views/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -12069,7 +12605,8 @@ "; }" ], "path": "src/plugins/data_views/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -12083,7 +12620,8 @@ " | undefined" ], "path": "src/plugins/data_views/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -12096,7 +12634,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -12115,6 +12654,7 @@ ], "path": "src/plugins/data_views/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -12144,6 +12684,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -12158,7 +12699,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -12170,7 +12712,8 @@ "\nTitle of data view" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -12195,7 +12738,8 @@ ">; }" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -12217,7 +12761,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -12247,7 +12792,8 @@ "; }" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -12262,7 +12808,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -12277,7 +12824,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -12293,6 +12841,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "maps", @@ -12316,7 +12865,8 @@ "{ [x: string]: unknown[]; }" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -12329,7 +12879,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -12346,7 +12897,8 @@ "string[]" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -12361,7 +12913,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -12383,7 +12936,8 @@ "[] | undefined" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -12398,7 +12952,8 @@ "string[]" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -12410,7 +12965,8 @@ "\nPrevents errors when index pattern exists before indices" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -12422,7 +12978,8 @@ "\nName of the data view. Human readable name used to differentiate data view." ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -12435,7 +12992,8 @@ "string[]" ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -12451,6 +13009,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -12466,6 +13025,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12485,6 +13045,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12502,6 +13063,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12519,6 +13081,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12544,6 +13107,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12565,6 +13129,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12580,6 +13145,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12604,6 +13170,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -12619,6 +13186,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12638,6 +13206,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12657,6 +13226,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "dataViewManagement", @@ -12682,6 +13252,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12711,6 +13282,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "visTypeTimeseries", @@ -12780,6 +13352,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "dataViewManagement", @@ -12803,6 +13376,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12827,6 +13401,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12851,6 +13426,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12876,6 +13452,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12901,6 +13478,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -12916,6 +13494,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12943,6 +13522,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12967,6 +13547,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -13007,6 +13588,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -13036,6 +13618,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13071,6 +13654,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -13086,6 +13670,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13108,6 +13693,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13127,6 +13713,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -13142,6 +13729,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13169,6 +13757,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -13184,6 +13773,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13211,6 +13801,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "map of runtime field definitions by field name" @@ -13238,6 +13829,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -13253,6 +13845,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13282,6 +13875,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -13305,6 +13899,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13324,6 +13919,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -13339,6 +13935,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13359,6 +13956,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -13384,6 +13982,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -13399,6 +13998,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13434,6 +14034,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -13449,6 +14050,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13465,6 +14067,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13488,6 +14091,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13507,6 +14111,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -13522,6 +14127,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13538,6 +14144,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -13557,6 +14164,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -13572,6 +14180,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13588,6 +14197,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -13617,6 +14227,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -13632,6 +14243,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13657,6 +14269,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13676,6 +14289,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -13691,6 +14305,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13721,6 +14336,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -13752,7 +14368,8 @@ " | undefined; fixedInterval?: string[] | undefined; timeZone?: string[] | undefined; timeSeriesDimension?: boolean | undefined; timeSeriesMetric?: \"gauge\" | \"histogram\" | \"summary\" | \"counter\" | undefined; shortDotsEnable?: boolean | undefined; isMapped?: boolean | undefined; }" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -13770,6 +14387,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -13791,6 +14409,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13806,7 +14425,8 @@ "\nCount is used for field popularity in discover." ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -13818,7 +14438,8 @@ "\nSet count, which is used for field popularity in discover." ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -13840,7 +14461,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -13862,7 +14484,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -13877,7 +14500,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -13892,7 +14516,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -13907,7 +14532,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -13922,7 +14548,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -13937,7 +14564,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -13952,7 +14580,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -13967,7 +14596,8 @@ "Record | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -13982,7 +14612,8 @@ "Record | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -13994,7 +14625,8 @@ "\nGet field name" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -14006,7 +14638,8 @@ "\nGets display name, calcualted based on name, custom label and shortDotsEnable." ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -14018,7 +14651,8 @@ "\nGets field type" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -14033,7 +14667,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -14045,7 +14680,8 @@ "\nReturns true if scripted field" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -14057,7 +14693,8 @@ "\nReturns true if field is searchable" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -14069,7 +14706,8 @@ "\nReturns true if field is aggregatable" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -14081,7 +14719,8 @@ "\nreturns true if field is a TSDB dimension field" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -14096,7 +14735,8 @@ "\"gauge\" | \"histogram\" | \"summary\" | \"counter\" | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -14111,7 +14751,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -14126,7 +14767,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -14141,7 +14783,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -14153,7 +14796,8 @@ "\nReturns true if field is available via doc values" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -14169,7 +14813,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -14184,7 +14829,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -14196,7 +14842,8 @@ "\nReturns true if runtime field defined on data view" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -14208,7 +14855,8 @@ "\nReturns true if field is sortable" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -14220,7 +14868,8 @@ "\nReturns true if field is filterable" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -14232,7 +14881,8 @@ "\nReturns true if field is visualizable" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -14248,6 +14898,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14265,6 +14916,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14284,6 +14936,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14303,6 +14956,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14320,6 +14974,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14339,6 +14994,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14371,6 +15027,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -14392,6 +15049,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14413,6 +15071,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -14442,6 +15101,7 @@ ], "path": "src/plugins/data_views/common/errors/insufficient_access.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -14457,6 +15117,7 @@ ], "path": "src/plugins/data_views/common/errors/insufficient_access.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -14470,6 +15131,7 @@ ], "path": "src/plugins/data_views/common/errors/insufficient_access.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -14499,6 +15161,7 @@ ], "path": "src/plugins/data_views/common/errors/data_view_saved_object_conflict.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -14514,6 +15177,7 @@ ], "path": "src/plugins/data_views/common/errors/data_view_saved_object_conflict.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -14529,6 +15193,7 @@ ], "path": "src/plugins/data_views/common/errors/data_view_saved_object_conflict.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14548,6 +15213,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -14563,6 +15229,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -14580,6 +15247,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -14601,6 +15269,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14620,6 +15289,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -14635,6 +15305,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14654,6 +15325,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -14669,6 +15341,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14696,6 +15369,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -14711,6 +15385,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14727,6 +15402,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14756,6 +15432,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -14771,6 +15448,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14790,6 +15468,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14807,6 +15486,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -14820,6 +15500,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -14849,6 +15530,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14874,6 +15556,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14891,6 +15574,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14908,6 +15592,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -14923,6 +15608,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -14939,6 +15625,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14958,6 +15645,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14991,6 +15679,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -15012,6 +15701,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15065,6 +15755,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -15092,6 +15783,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15115,6 +15807,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -15144,6 +15837,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -15163,6 +15857,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15205,6 +15900,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -15227,6 +15923,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15250,6 +15947,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -15288,6 +15986,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -15310,6 +16009,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15339,6 +16039,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -15352,6 +16053,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15387,6 +16089,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -15406,6 +16109,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15422,6 +16126,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15459,6 +16164,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -15480,6 +16186,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15496,6 +16203,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15512,6 +16220,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15547,6 +16256,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -15568,6 +16278,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15584,6 +16295,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15619,6 +16331,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -15638,6 +16351,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15652,6 +16366,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15666,6 +16381,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15685,6 +16401,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -15700,6 +16417,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15727,6 +16445,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "default data view" @@ -15756,6 +16475,7 @@ ], "path": "src/plugins/data_views/common/errors/duplicate_index_pattern.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -15771,6 +16491,7 @@ ], "path": "src/plugins/data_views/common/errors/duplicate_index_pattern.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -15786,6 +16507,7 @@ ], "path": "src/plugins/data_views/common/errors/duplicate_index_pattern.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15823,6 +16545,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -15843,6 +16566,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15857,6 +16581,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15877,6 +16602,7 @@ ], "path": "src/plugins/data_views/common/fields/utils.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -15892,7 +16618,8 @@ " | undefined; }" ], "path": "src/plugins/data_views/common/fields/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -15911,6 +16638,7 @@ ], "path": "src/plugins/data_views/common/fields/utils.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -15926,7 +16654,8 @@ " | undefined; }" ], "path": "src/plugins/data_views/common/fields/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -15951,6 +16680,7 @@ ], "path": "src/plugins/data_views/common/expressions/load_index_pattern.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -15975,6 +16705,7 @@ ], "path": "src/plugins/data_views/common/fields/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -15994,6 +16725,7 @@ ], "path": "src/plugins/data_views/common/fields/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -16012,6 +16744,7 @@ ], "path": "src/plugins/data_views/common/fields/utils.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -16027,7 +16760,8 @@ " | undefined; }" ], "path": "src/plugins/data_views/common/fields/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -16044,6 +16778,7 @@ ], "path": "src/plugins/data_views/common/fields/utils.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -16059,7 +16794,8 @@ " | undefined; }" ], "path": "src/plugins/data_views/common/fields/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -16077,6 +16813,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -16088,7 +16825,8 @@ "\nFields as a serialized array of field specs" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16100,7 +16838,8 @@ "\nData view title" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16115,7 +16854,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16130,7 +16870,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16145,7 +16886,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16160,7 +16902,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16175,7 +16918,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16190,7 +16934,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16205,7 +16950,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16220,7 +16966,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16235,7 +16982,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -16251,6 +16999,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -16262,7 +17011,8 @@ "\nSaved object id (or generated id if in-memory only)" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16277,7 +17027,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16289,7 +17040,8 @@ "\nData view title" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16304,7 +17056,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16326,7 +17079,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16339,7 +17093,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -16355,6 +17110,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -16375,7 +17131,8 @@ } ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16396,7 +17153,8 @@ } ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16417,7 +17175,8 @@ } ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16552,7 +17311,8 @@ ">) => void; has: (id: string) => boolean; }" ], "path": "src/plugins/data_views/common/data_views/data_views.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16570,6 +17330,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -16589,7 +17350,8 @@ " | undefined; }" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16599,7 +17361,8 @@ "label": "key", "description": [], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -16619,6 +17382,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -16632,7 +17396,8 @@ "Error" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16645,7 +17410,8 @@ "ErrorToastOptions" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -16655,7 +17421,8 @@ "label": "key", "description": [], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -16673,6 +17440,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -16690,6 +17458,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -16707,6 +17476,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -16724,6 +17494,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -16739,6 +17510,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -16756,6 +17528,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -16769,6 +17542,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -16804,6 +17578,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -16825,6 +17600,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16841,6 +17617,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -16876,6 +17653,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -16897,6 +17675,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16913,6 +17692,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -16929,6 +17709,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -16964,6 +17745,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -16983,6 +17765,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16999,6 +17782,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -17018,6 +17802,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -17033,6 +17818,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17077,6 +17863,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -17099,6 +17886,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -17120,6 +17908,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -17149,6 +17938,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -17164,6 +17954,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -17180,6 +17971,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -17207,6 +17999,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -17222,6 +18015,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17251,6 +18045,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -17268,6 +18063,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -17293,6 +18089,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -17310,6 +18107,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -17335,6 +18133,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -17384,6 +18183,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -17411,6 +18211,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -17434,6 +18235,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -17471,6 +18273,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -17492,6 +18295,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17511,6 +18315,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -17526,6 +18331,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -17553,6 +18359,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -17568,6 +18375,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -17587,6 +18395,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -17602,6 +18411,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -17621,6 +18431,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -17648,6 +18459,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -17667,6 +18479,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17705,6 +18518,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -17727,6 +18541,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17746,6 +18561,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -17761,6 +18577,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -17777,6 +18594,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -17814,6 +18632,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -17835,6 +18654,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -17851,6 +18671,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -17865,6 +18686,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -17884,6 +18706,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -17907,7 +18730,8 @@ "> | null | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -17922,7 +18746,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -17937,7 +18762,8 @@ "number | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17951,6 +18777,7 @@ "description": [], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -17960,7 +18787,8 @@ "label": "pattern", "description": [], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -17973,7 +18801,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -17986,7 +18815,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -17999,7 +18829,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -18012,7 +18843,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -18025,7 +18857,8 @@ "boolean | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -18039,7 +18872,8 @@ " | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18053,6 +18887,7 @@ "description": [], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -18066,6 +18901,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -18081,6 +18917,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -18096,6 +18933,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -18111,6 +18949,7 @@ "description": [], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -18134,6 +18973,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -18153,6 +18993,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18170,6 +19011,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -18205,6 +19047,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -18235,6 +19078,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -18256,6 +19100,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18285,6 +19130,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -18310,6 +19156,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -18325,6 +19172,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18354,6 +19202,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -18369,6 +19218,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18406,6 +19256,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -18435,6 +19286,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18454,6 +19306,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -18479,6 +19332,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -18501,6 +19355,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18528,6 +19383,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -18549,6 +19405,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18577,6 +19434,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -18592,6 +19450,7 @@ ], "path": "src/plugins/data_views/common/fields/field_list.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -18613,6 +19472,7 @@ ], "path": "src/plugins/data_views/common/expressions/load_index_pattern.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -18627,7 +19487,8 @@ "\"index_pattern\"" ], "path": "src/plugins/data_views/common/expressions/load_index_pattern.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -18692,7 +19553,8 @@ " | undefined; allowNoIndex?: boolean | undefined; namespaces?: string[] | undefined; name?: string | undefined; }" ], "path": "src/plugins/data_views/common/expressions/load_index_pattern.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18733,6 +19595,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -18755,7 +19618,8 @@ "> | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18788,6 +19652,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -18802,7 +19667,8 @@ "\"boolean\" | \"date\" | \"keyword\" | \"ip\" | \"geo_point\" | \"long\" | \"double\"" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18820,6 +19686,7 @@ ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -18831,7 +19698,8 @@ "The ID of this Saved Object, guaranteed to be unique for all objects of the same `type`" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -18843,7 +19711,8 @@ " The type of Saved Object. Each plugin can define it's own custom Saved Object types." ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -18858,7 +19727,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -18873,7 +19743,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -18887,7 +19758,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -18902,7 +19774,8 @@ "T" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -18918,7 +19791,8 @@ "[]" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -18934,7 +19808,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -18949,7 +19824,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -18964,7 +19840,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -18979,7 +19856,8 @@ "string | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18995,6 +19873,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -19020,6 +19899,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -19041,6 +19921,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19062,6 +19943,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -19077,6 +19959,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -19093,6 +19976,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19124,6 +20008,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -19139,6 +20024,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -19155,6 +20041,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -19177,6 +20064,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -19194,6 +20082,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19225,6 +20114,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -19240,6 +20130,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -19262,6 +20153,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -19278,6 +20170,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19297,6 +20190,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -19312,6 +20206,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -19328,6 +20223,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19347,6 +20243,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -19361,7 +20258,8 @@ "string | string[]" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -19376,7 +20274,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -19391,7 +20290,8 @@ "number | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -19406,7 +20306,8 @@ "string | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -19421,7 +20322,8 @@ "string[] | undefined" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19454,6 +20356,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -19465,7 +20368,8 @@ "\nThe timestamp field name." ], "path": "src/plugins/data_views/common/data_views/data_view.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -19488,6 +20392,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_view.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -19505,6 +20410,7 @@ ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -19543,7 +20449,8 @@ ") | undefined" ], "path": "src/plugins/data_views/common/fields/data_view_field.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19559,6 +20466,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -19574,6 +20482,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -19589,6 +20498,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19608,6 +20518,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -19625,6 +20536,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -19640,6 +20552,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -19656,6 +20569,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19675,6 +20589,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -19690,6 +20605,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19711,6 +20627,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -19727,6 +20644,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -19743,6 +20661,7 @@ ], "path": "src/plugins/data_views/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -19765,6 +20684,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -19779,6 +20699,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20007,6 +20928,7 @@ ], "path": "src/plugins/data_views/common/data_views/data_views.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20073,6 +20995,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20097,6 +21020,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20113,6 +21037,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20137,6 +21062,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20172,6 +21098,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20186,6 +21113,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20225,6 +21153,7 @@ ], "path": "src/plugins/data_views/common/expressions/load_index_pattern.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20241,6 +21170,7 @@ ], "path": "src/plugins/data_views/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20259,6 +21189,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -20274,7 +21205,8 @@ "Error" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -20289,7 +21221,8 @@ "ErrorToastOptions" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -20301,7 +21234,8 @@ "Used to dedupe notifs" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -20322,6 +21256,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -20343,7 +21278,8 @@ " | undefined; }" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataViews", @@ -20355,7 +21291,8 @@ "Used to dedupe notifs" ], "path": "src/plugins/data_views/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -20374,6 +21311,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20405,6 +21343,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20421,6 +21360,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20437,6 +21377,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20451,6 +21392,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20475,6 +21417,7 @@ ], "path": "src/plugins/data_views/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -20488,6 +21431,7 @@ "description": [], "path": "src/plugins/data_views/common/data_views/persistable_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -20518,6 +21462,7 @@ ], "path": "src/plugins/data_views/common/data_views/persistable_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -20537,6 +21482,7 @@ ], "path": "src/plugins/data_views/common/data_views/persistable_state.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -20552,6 +21498,7 @@ ], "path": "src/plugins/data_views/common/data_views/persistable_state.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -20585,6 +21532,7 @@ ], "path": "src/plugins/data_views/common/data_views/persistable_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -20604,6 +21552,7 @@ ], "path": "src/plugins/data_views/common/data_views/persistable_state.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -20621,6 +21570,7 @@ ], "path": "src/plugins/data_views/common/data_views/persistable_state.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -20659,6 +21609,7 @@ ], "path": "src/plugins/data_views/common/data_views/persistable_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -20687,6 +21638,7 @@ ], "path": "src/plugins/data_views/common/data_views/persistable_state.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -20704,6 +21656,7 @@ ], "path": "src/plugins/data_views/common/data_views/persistable_state.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -20721,6 +21674,7 @@ ], "path": "src/plugins/data_views/common/constants.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataViews", @@ -20733,7 +21687,8 @@ "string[]" ], "path": "src/plugins/data_views/common/constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -20752,6 +21707,7 @@ ], "path": "src/plugins/data_views/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/data_views.mdx b/api_docs/data_views.mdx index 8a0eba9b9f425..5166413c81d6a 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViews'] --- import dataViewsObj from './data_views.devdocs.json'; diff --git a/api_docs/data_visualizer.devdocs.json b/api_docs/data_visualizer.devdocs.json index 523e60342f41d..4511b96755536 100644 --- a/api_docs/data_visualizer.devdocs.json +++ b/api_docs/data_visualizer.devdocs.json @@ -13,6 +13,7 @@ "description": [], "path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataVisualizer", @@ -22,7 +23,8 @@ "label": "dataViewId", "description": [], "path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataVisualizer", @@ -35,7 +37,8 @@ "string | undefined" ], "path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataVisualizer", @@ -48,7 +51,8 @@ "any" ], "path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -62,6 +66,7 @@ "description": [], "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/components/index_data_visualizer_view/index_data_visualizer_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataVisualizer", @@ -80,7 +85,8 @@ } ], "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/components/index_data_visualizer_view/index_data_visualizer_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataVisualizer", @@ -94,7 +100,8 @@ " | null" ], "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/components/index_data_visualizer_view/index_data_visualizer_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataVisualizer", @@ -107,7 +114,8 @@ "string | undefined" ], "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/components/index_data_visualizer_view/index_data_visualizer_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataVisualizer", @@ -127,7 +135,8 @@ " | undefined" ], "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/components/index_data_visualizer_view/index_data_visualizer_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -141,6 +150,7 @@ "description": [], "path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataVisualizer", @@ -150,7 +160,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataVisualizer", @@ -163,7 +174,8 @@ "\"index\" | \"file\"" ], "path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataVisualizer", @@ -173,7 +185,8 @@ "label": "title", "description": [], "path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataVisualizer", @@ -183,7 +196,8 @@ "label": "icon", "description": [], "path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataVisualizer", @@ -193,7 +207,8 @@ "label": "description", "description": [], "path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataVisualizer", @@ -207,6 +222,7 @@ ], "path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataVisualizer", @@ -220,6 +236,7 @@ ], "path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -237,6 +254,7 @@ ], "path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "dataVisualizer", @@ -250,6 +268,7 @@ ], "path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -266,7 +285,8 @@ "string | undefined" ], "path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -286,6 +306,7 @@ ], "path": "x-pack/plugins/data_visualizer/public/application/file_data_visualizer/file_data_visualizer.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -299,7 +320,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataVisualizer", @@ -312,7 +334,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -345,6 +368,7 @@ ], "path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -367,6 +391,7 @@ ], "path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/index_data_visualizer.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -380,7 +405,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "dataVisualizer", @@ -393,7 +419,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -420,6 +447,7 @@ ], "path": "x-pack/plugins/data_visualizer/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } diff --git a/api_docs/data_visualizer.mdx b/api_docs/data_visualizer.mdx index bade0c329b102..0f90354db488e 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataVisualizer'] --- import dataVisualizerObj from './data_visualizer.devdocs.json'; diff --git a/api_docs/deprecations_by_api.mdx b/api_docs/deprecations_by_api.mdx index 9db1cb901a31d..4b61218ebf768 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana'] --- @@ -48,7 +48,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | dataViewManagement | - | | | lens, observability, dataVisualizer, fleet, cloudSecurityPosture, discoverEnhanced, osquery, synthetics | - | | | esUiShared, home, data, spaces, savedObjectsManagement, fleet, observability, ml, apm, indexLifecycleManagement, synthetics, upgradeAssistant, ux, kibanaOverview | - | -| | management, spaces, ml, canvas, osquery, home | - | +| | spaces, ml, canvas, osquery | - | | | canvas | - | | | canvas | - | | | canvas | - | @@ -59,7 +59,6 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | canvas | - | | | canvas | - | | | canvas | - | -| | management | - | | | spaces, savedObjectsManagement | - | | | spaces, savedObjectsManagement | - | | | actions, ml, savedObjectsTagging, enterpriseSearch | - | @@ -75,7 +74,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | savedObjectsTaggingOss, dashboard | 8.8.0 | | | dashboard | 8.8.0 | | | maps, dashboard, @kbn/core-saved-objects-migration-server-internal | 8.8.0 | -| | monitoring, kibanaUsageCollection, @kbn/core-metrics-server-internal | 8.8.0 | +| | monitoring, kibanaUsageCollection, @kbn/core-metrics-server-internal, @kbn/core-usage-data-server-internal | 8.8.0 | | | security, fleet | 8.8.0 | | | security, fleet | 8.8.0 | | | security, fleet | 8.8.0 | @@ -127,6 +126,7 @@ Safe to remove. | | expressions | | | expressions | | | expressions | +| | kibanaReact | | | savedObjects | | | licensing | | | licensing | diff --git a/api_docs/deprecations_by_plugin.mdx b/api_docs/deprecations_by_plugin.mdx index f50b5b3c13eac..d9da58e4a98dd 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana'] --- @@ -16,9 +16,9 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [app_container.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/ui/app_container.tsx#:~:text=appBasePath) | 8.8.0 | -| | [app_container.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/ui/app_container.tsx#:~:text=onAppLeave) | 8.8.0 | -| | [app_container.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/ui/app_container.tsx#:~:text=AppLeaveHandler), [app_container.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/ui/app_container.tsx#:~:text=AppLeaveHandler), [app_router.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/ui/app_router.tsx#:~:text=AppLeaveHandler), [app_router.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/ui/app_router.tsx#:~:text=AppLeaveHandler), [application_leave.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/application_leave.tsx#:~:text=AppLeaveHandler), [application_leave.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/application_leave.tsx#:~:text=AppLeaveHandler), [application_service.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/application_service.tsx#:~:text=AppLeaveHandler), [application_service.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/application_service.tsx#:~:text=AppLeaveHandler), [application_service.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/application_service.tsx#:~:text=AppLeaveHandler) | 8.8.0 | +| | [app_container.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/ui/app_container.tsx#:~:text=appBasePath) | 8.8.0 | +| | [app_container.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/ui/app_container.tsx#:~:text=onAppLeave) | 8.8.0 | +| | [app_container.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/ui/app_container.tsx#:~:text=AppLeaveHandler), [app_container.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/ui/app_container.tsx#:~:text=AppLeaveHandler), [app_router.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/ui/app_router.tsx#:~:text=AppLeaveHandler), [app_router.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/ui/app_router.tsx#:~:text=AppLeaveHandler), [application_leave.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/application_leave.tsx#:~:text=AppLeaveHandler), [application_leave.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/application_leave.tsx#:~:text=AppLeaveHandler), [application_service.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/application_service.tsx#:~:text=AppLeaveHandler), [application_service.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/application_service.tsx#:~:text=AppLeaveHandler), [application_service.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/application_service.tsx#:~:text=AppLeaveHandler) | 8.8.0 | @@ -26,8 +26,8 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [application_service.mock.ts](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-mocks/src/application_service.mock.ts#:~:text=appBasePath) | 8.8.0 | -| | [application_service.mock.ts](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-mocks/src/application_service.mock.ts#:~:text=onAppLeave) | 8.8.0 | +| | [application_service.mock.ts](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-mocks/src/application_service.mock.ts#:~:text=appBasePath) | 8.8.0 | +| | [application_service.mock.ts](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-mocks/src/application_service.mock.ts#:~:text=onAppLeave) | 8.8.0 | @@ -35,7 +35,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [elasticsearch_service.ts](https://github.com/elastic/kibana/tree/master/packages/core/elasticsearch/core-elasticsearch-server-internal/src/elasticsearch_service.ts#:~:text=legacy), [elasticsearch_service.test.ts](https://github.com/elastic/kibana/tree/master/packages/core/elasticsearch/core-elasticsearch-server-internal/src/elasticsearch_service.test.ts#:~:text=legacy) | - | +| | [elasticsearch_service.ts](https://github.com/elastic/kibana/tree/main/packages/core/elasticsearch/core-elasticsearch-server-internal/src/elasticsearch_service.ts#:~:text=legacy), [elasticsearch_service.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/elasticsearch/core-elasticsearch-server-internal/src/elasticsearch_service.test.ts#:~:text=legacy) | - | @@ -43,11 +43,11 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [http_fetch_error.ts](https://github.com/elastic/kibana/tree/master/packages/core/http/core-http-browser-internal/src/http_fetch_error.ts#:~:text=req), [http_fetch_error.ts](https://github.com/elastic/kibana/tree/master/packages/core/http/core-http-browser-internal/src/http_fetch_error.ts#:~:text=req) | 8.8.0 +| | [http_fetch_error.ts](https://github.com/elastic/kibana/tree/main/packages/core/http/core-http-browser-internal/src/http_fetch_error.ts#:~:text=req), [http_fetch_error.ts](https://github.com/elastic/kibana/tree/main/packages/core/http/core-http-browser-internal/src/http_fetch_error.ts#:~:text=req) | 8.8.0 Note to maintainers: when looking at usages, mind that typical use could be inside a `catch` block, so TS and code-reference navigation might not highlight them. | -| | [http_fetch_error.ts](https://github.com/elastic/kibana/tree/master/packages/core/http/core-http-browser-internal/src/http_fetch_error.ts#:~:text=res), [http_fetch_error.ts](https://github.com/elastic/kibana/tree/master/packages/core/http/core-http-browser-internal/src/http_fetch_error.ts#:~:text=res) | 8.8.0 +| | [http_fetch_error.ts](https://github.com/elastic/kibana/tree/main/packages/core/http/core-http-browser-internal/src/http_fetch_error.ts#:~:text=res), [http_fetch_error.ts](https://github.com/elastic/kibana/tree/main/packages/core/http/core-http-browser-internal/src/http_fetch_error.ts#:~:text=res) | 8.8.0 Note to maintainers: when looking at usages, mind that typical use could be inside a `catch` block, so TS and code-reference navigation might not highlight them. | @@ -58,7 +58,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [ops_metrics_collector.ts](https://github.com/elastic/kibana/tree/master/packages/core/metrics/core-metrics-server-internal/src/ops_metrics_collector.ts#:~:text=process), [get_ops_metrics_log.ts](https://github.com/elastic/kibana/tree/master/packages/core/metrics/core-metrics-server-internal/src/logging/get_ops_metrics_log.ts#:~:text=process), [get_ops_metrics_log.test.ts](https://github.com/elastic/kibana/tree/master/packages/core/metrics/core-metrics-server-internal/src/logging/get_ops_metrics_log.test.ts#:~:text=process) | 8.8.0 | +| | [ops_metrics_collector.ts](https://github.com/elastic/kibana/tree/main/packages/core/metrics/core-metrics-server-internal/src/ops_metrics_collector.ts#:~:text=process), [get_ops_metrics_log.ts](https://github.com/elastic/kibana/tree/main/packages/core/metrics/core-metrics-server-internal/src/logging/get_ops_metrics_log.ts#:~:text=process), [get_ops_metrics_log.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/metrics/core-metrics-server-internal/src/logging/get_ops_metrics_log.test.ts#:~:text=process) | 8.8.0 | @@ -66,7 +66,15 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [document_migrator.test.ts](https://github.com/elastic/kibana/tree/master/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/document_migrator.test.ts#:~:text=warning), [migration_logger.ts](https://github.com/elastic/kibana/tree/master/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/migration_logger.ts#:~:text=warning) | 8.8.0 | +| | [document_migrator.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/document_migrator.test.ts#:~:text=warning), [migration_logger.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/migration_logger.ts#:~:text=warning) | 8.8.0 | + + + +## @kbn/core-usage-data-server-internal + +| Deprecated API | Reference location(s) | Remove By | +| ---------------|-----------|-----------| +| | [core_usage_data_service.ts](https://github.com/elastic/kibana/tree/main/packages/core/usage-data/core-usage-data-server-internal/src/core_usage_data_service.ts#:~:text=process), [core_usage_data_service.ts](https://github.com/elastic/kibana/tree/main/packages/core/usage-data/core-usage-data-server-internal/src/core_usage_data_service.ts#:~:text=process), [core_usage_data_service.ts](https://github.com/elastic/kibana/tree/main/packages/core/usage-data/core-usage-data-server-internal/src/core_usage_data_service.ts#:~:text=process) | 8.8.0 | @@ -74,10 +82,10 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/actions/server/plugin.ts#:~:text=license%24), [license_state.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/actions/server/lib/license_state.test.ts#:~:text=license%24), [license_state.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/actions/server/lib/license_state.test.ts#:~:text=license%24) | 8.8.0 | -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/actions/server/plugin.ts#:~:text=authc) | - | -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/actions/server/plugin.ts#:~:text=authz) | - | -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/actions/server/plugin.ts#:~:text=index), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/actions/server/plugin.ts#:~:text=index) | - | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/plugin.ts#:~:text=license%24), [license_state.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/lib/license_state.test.ts#:~:text=license%24), [license_state.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/lib/license_state.test.ts#:~:text=license%24) | 8.8.0 | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/plugin.ts#:~:text=authc) | - | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/plugin.ts#:~:text=authz) | - | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/plugin.ts#:~:text=index), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/plugin.ts#:~:text=index) | - | @@ -85,8 +93,8 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [to_editable_config.ts](https://github.com/elastic/kibana/tree/master/src/plugins/advanced_settings/public/management_app/lib/to_editable_config.ts#:~:text=metric) | - | -| | [to_editable_config.ts](https://github.com/elastic/kibana/tree/master/src/plugins/advanced_settings/public/management_app/lib/to_editable_config.ts#:~:text=metric) | - | +| | [to_editable_config.ts](https://github.com/elastic/kibana/tree/main/src/plugins/advanced_settings/public/management_app/lib/to_editable_config.ts#:~:text=metric) | - | +| | [to_editable_config.ts](https://github.com/elastic/kibana/tree/main/src/plugins/advanced_settings/public/management_app/lib/to_editable_config.ts#:~:text=metric) | - | @@ -94,13 +102,13 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [wrap_search_source_client.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/wrap_search_source_client.ts#:~:text=create) | - | -| | [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch) | - | -| | [wrap_search_source_client.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/wrap_search_source_client.ts#:~:text=create) | - | -| | [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch) | - | -| | [plugin.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/plugin.test.ts#:~:text=getKibanaFeatures) | 8.8.0 | -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/plugin.ts#:~:text=license%24), [license_state.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/license_state.test.ts#:~:text=license%24), [license_state.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/license_state.test.ts#:~:text=license%24) | 8.8.0 | -| | [task.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/usage/task.ts#:~:text=index) | - | +| | [wrap_search_source_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/wrap_search_source_client.ts#:~:text=create) | - | +| | [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch) | - | +| | [wrap_search_source_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/wrap_search_source_client.ts#:~:text=create) | - | +| | [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/wrap_search_source_client.test.ts#:~:text=fetch) | - | +| | [plugin.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/plugin.test.ts#:~:text=getKibanaFeatures) | 8.8.0 | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/plugin.ts#:~:text=license%24), [license_state.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/license_state.test.ts#:~:text=license%24), [license_state.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/license_state.test.ts#:~:text=license%24) | 8.8.0 | +| | [task.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/usage/task.ts#:~:text=index) | - | @@ -108,11 +116,11 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/public/plugin.ts#:~:text=environment) | 8.8.0 | -| | [app_root.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/public/components/routing/app_root.tsx#:~:text=RedirectAppLinks), [app_root.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/public/components/routing/app_root.tsx#:~:text=RedirectAppLinks), [app_root.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/public/components/routing/app_root.tsx#:~:text=RedirectAppLinks) | - | -| | [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode)+ 2 more | 8.8.0 | -| | [license_context.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/public/context/license/license_context.tsx#:~:text=license%24) | 8.8.0 | -| | [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode)+ 2 more | 8.8.0 | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/public/plugin.ts#:~:text=environment) | 8.8.0 | +| | [app_root.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/public/components/routing/app_root.tsx#:~:text=RedirectAppLinks), [app_root.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/public/components/routing/app_root.tsx#:~:text=RedirectAppLinks), [app_root.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/public/components/routing/app_root.tsx#:~:text=RedirectAppLinks) | - | +| | [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 | +| | [license_context.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/apm/public/context/license/license_context.tsx#:~:text=license%24) | 8.8.0 | +| | [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 | @@ -120,17 +128,17 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [index.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/server/demodata/index.ts#:~:text=context), [embeddable.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/external/embeddable.ts#:~:text=context), [esdocs.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/browser/esdocs.ts#:~:text=context), [escount.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/browser/escount.ts#:~:text=context), [filters.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/common/functions/filters.ts#:~:text=context), [neq.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/common/neq.ts#:~:text=context), [index.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/server/pointseries/index.ts#:~:text=context) | - | -| | [setup_expressions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/public/setup_expressions.ts#:~:text=getFunction) | - | -| | [functions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/server/routes/functions/functions.ts#:~:text=getFunctions), [functions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/server/routes/functions/functions.ts#:~:text=getFunctions), [functions.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/server/routes/functions/functions.test.ts#:~:text=getFunctions) | - | -| | [setup_expressions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/public/setup_expressions.ts#:~:text=getTypes), [application.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/public/application.tsx#:~:text=getTypes), [functions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/server/routes/functions/functions.ts#:~:text=getTypes) | - | -| | [markdown.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/browser/markdown.ts#:~:text=Render), [markdown.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/browser/markdown.ts#:~:text=Render), [state.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/types/state.ts#:~:text=Render), [state.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/types/state.ts#:~:text=Render), [timefilterControl.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/common/timefilterControl.ts#:~:text=Render), [timefilterControl.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/common/timefilterControl.ts#:~:text=Render), [pie.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/public/functions/pie.ts#:~:text=Render), [pie.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/public/functions/pie.ts#:~:text=Render), [index.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/public/functions/plot/index.ts#:~:text=Render), [index.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/public/functions/plot/index.ts#:~:text=Render)+ 2 more | - | -| | [index.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/server/demodata/index.ts#:~:text=context), [embeddable.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/external/embeddable.ts#:~:text=context), [esdocs.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/browser/esdocs.ts#:~:text=context), [escount.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/browser/escount.ts#:~:text=context), [filters.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/common/functions/filters.ts#:~:text=context), [neq.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/common/neq.ts#:~:text=context), [index.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/server/pointseries/index.ts#:~:text=context) | - | -| | [setup_expressions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/public/setup_expressions.ts#:~:text=getFunction) | - | -| | [functions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/server/routes/functions/functions.ts#:~:text=getFunctions), [functions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/server/routes/functions/functions.ts#:~:text=getFunctions), [functions.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/server/routes/functions/functions.test.ts#:~:text=getFunctions) | - | -| | [setup_expressions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/public/setup_expressions.ts#:~:text=getTypes), [application.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/public/application.tsx#:~:text=getTypes), [functions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/server/routes/functions/functions.ts#:~:text=getTypes) | - | -| | [index.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/server/demodata/index.ts#:~:text=context), [embeddable.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/external/embeddable.ts#:~:text=context), [esdocs.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/browser/esdocs.ts#:~:text=context), [escount.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/browser/escount.ts#:~:text=context), [filters.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/common/functions/filters.ts#:~:text=context), [neq.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/common/neq.ts#:~:text=context), [index.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/canvas_plugin_src/functions/server/pointseries/index.ts#:~:text=context) | - | -| | [home.component.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/public/components/home/home.component.tsx#:~:text=KibanaPageTemplate), [home.component.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/public/components/home/home.component.tsx#:~:text=KibanaPageTemplate), [home.component.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/canvas/public/components/home/home.component.tsx#:~:text=KibanaPageTemplate) | - | +| | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/server/demodata/index.ts#:~:text=context), [embeddable.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/external/embeddable.ts#:~:text=context), [esdocs.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/browser/esdocs.ts#:~:text=context), [escount.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/browser/escount.ts#:~:text=context), [filters.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/common/functions/filters.ts#:~:text=context), [neq.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/common/neq.ts#:~:text=context), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/server/pointseries/index.ts#:~:text=context) | - | +| | [setup_expressions.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/public/setup_expressions.ts#:~:text=getFunction) | - | +| | [functions.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/server/routes/functions/functions.ts#:~:text=getFunctions), [functions.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/server/routes/functions/functions.ts#:~:text=getFunctions), [functions.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/server/routes/functions/functions.test.ts#:~:text=getFunctions) | - | +| | [setup_expressions.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/public/setup_expressions.ts#:~:text=getTypes), [application.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/public/application.tsx#:~:text=getTypes), [functions.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/server/routes/functions/functions.ts#:~:text=getTypes) | - | +| | [markdown.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/browser/markdown.ts#:~:text=Render), [markdown.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/browser/markdown.ts#:~:text=Render), [state.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/types/state.ts#:~:text=Render), [state.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/types/state.ts#:~:text=Render), [timefilterControl.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/common/timefilterControl.ts#:~:text=Render), [timefilterControl.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/common/timefilterControl.ts#:~:text=Render), [pie.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/public/functions/pie.ts#:~:text=Render), [pie.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/public/functions/pie.ts#:~:text=Render), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/public/functions/plot/index.ts#:~:text=Render), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/public/functions/plot/index.ts#:~:text=Render)+ 2 more | - | +| | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/server/demodata/index.ts#:~:text=context), [embeddable.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/external/embeddable.ts#:~:text=context), [esdocs.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/browser/esdocs.ts#:~:text=context), [escount.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/browser/escount.ts#:~:text=context), [filters.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/common/functions/filters.ts#:~:text=context), [neq.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/common/neq.ts#:~:text=context), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/server/pointseries/index.ts#:~:text=context) | - | +| | [setup_expressions.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/public/setup_expressions.ts#:~:text=getFunction) | - | +| | [functions.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/server/routes/functions/functions.ts#:~:text=getFunctions), [functions.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/server/routes/functions/functions.ts#:~:text=getFunctions), [functions.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/server/routes/functions/functions.test.ts#:~:text=getFunctions) | - | +| | [setup_expressions.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/public/setup_expressions.ts#:~:text=getTypes), [application.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/public/application.tsx#:~:text=getTypes), [functions.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/server/routes/functions/functions.ts#:~:text=getTypes) | - | +| | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/server/demodata/index.ts#:~:text=context), [embeddable.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/external/embeddable.ts#:~:text=context), [esdocs.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/browser/esdocs.ts#:~:text=context), [escount.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/browser/escount.ts#:~:text=context), [filters.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/common/functions/filters.ts#:~:text=context), [neq.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/common/neq.ts#:~:text=context), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/canvas_plugin_src/functions/server/pointseries/index.ts#:~:text=context) | - | +| | [home.component.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/public/components/home/home.component.tsx#:~:text=KibanaPageTemplate), [home.component.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/public/components/home/home.component.tsx#:~:text=KibanaPageTemplate), [home.component.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/canvas/public/components/home/home.component.tsx#:~:text=KibanaPageTemplate) | - | @@ -138,8 +146,8 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [plugin.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/cloud/public/plugin.tsx#:~:text=environment) | 8.8.0 | -| | [chat.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/cloud/server/routes/chat.ts#:~:text=authc) | - | +| | [plugin.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/cloud/public/plugin.tsx#:~:text=environment) | 8.8.0 | +| | [chat.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/cloud/server/routes/chat.ts#:~:text=authc) | - | @@ -147,7 +155,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [overview_tab.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/cloud_security_posture/public/pages/findings/findings_flyout/overview_tab.tsx#:~:text=indexPatternId) | - | +| | [overview_tab.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/cloud_security_posture/public/pages/findings/findings_flyout/overview_tab.tsx#:~:text=indexPatternId) | - | @@ -155,7 +163,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/src/plugins/console/server/plugin.ts#:~:text=legacy) | - | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/src/plugins/console/server/plugin.ts#:~:text=legacy) | - | @@ -163,7 +171,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/cross_cluster_replication/public/plugin.ts#:~:text=license%24) | 8.8.0 | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/cross_cluster_replication/public/plugin.ts#:~:text=license%24) | 8.8.0 | @@ -171,14 +179,14 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [sync_dashboard_filter_state.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/lib/sync_dashboard_filter_state.ts#:~:text=syncQueryStateWithUrl), [sync_dashboard_filter_state.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/lib/sync_dashboard_filter_state.ts#:~:text=syncQueryStateWithUrl), [dashboard_listing.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/listing/dashboard_listing.tsx#:~:text=syncQueryStateWithUrl), [dashboard_listing.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/listing/dashboard_listing.tsx#:~:text=syncQueryStateWithUrl) | - | -| | [export_csv_action.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/actions/export_csv_action.tsx#:~:text=fieldFormats) | - | -| | [kibana_react.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/services/kibana_react.ts#:~:text=ExitFullScreenButton), [plugin.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/plugin.tsx#:~:text=ExitFullScreenButton), [plugin.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/plugin.tsx#:~:text=ExitFullScreenButton), [plugin.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/plugin.tsx#:~:text=ExitFullScreenButton) | - | -| | [saved_objects.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/services/saved_objects.ts#:~:text=SavedObjectSaveModal), [save_modal.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/top_nav/save_modal.tsx#:~:text=SavedObjectSaveModal), [save_modal.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/top_nav/save_modal.tsx#:~:text=SavedObjectSaveModal) | 8.8.0 | -| | [saved_object_loader.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/services/saved_object_loader.ts#:~:text=SavedObject), [saved_object_loader.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/services/saved_object_loader.ts#:~:text=SavedObject), [saved_object_loader.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/services/saved_object_loader.ts#:~:text=SavedObject), [saved_objects.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/services/saved_objects.ts#:~:text=SavedObject), [saved_dashboard.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts#:~:text=SavedObject), [saved_dashboard.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts#:~:text=SavedObject), [dashboard_tagging.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/lib/dashboard_tagging.ts#:~:text=SavedObject), [dashboard_tagging.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/lib/dashboard_tagging.ts#:~:text=SavedObject), [clone_panel_action.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/actions/clone_panel_action.tsx#:~:text=SavedObject), [clone_panel_action.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/actions/clone_panel_action.tsx#:~:text=SavedObject)+ 1 more | 8.8.0 | -| | [saved_dashboard.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts#:~:text=SavedObjectClass) | 8.8.0 | -| | [types.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/types.ts#:~:text=onAppLeave), [dashboard_router.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/dashboard_router.tsx#:~:text=onAppLeave), [plugin.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/plugin.tsx#:~:text=onAppLeave) | 8.8.0 | -| | [migrations_730.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/server/saved_objects/migrations_730.ts#:~:text=warning), [migrations_730.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/server/saved_objects/migrations_730.ts#:~:text=warning) | 8.8.0 | +| | [sync_dashboard_filter_state.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/application/lib/sync_dashboard_filter_state.ts#:~:text=syncQueryStateWithUrl), [sync_dashboard_filter_state.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/application/lib/sync_dashboard_filter_state.ts#:~:text=syncQueryStateWithUrl), [dashboard_listing.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/application/listing/dashboard_listing.tsx#:~:text=syncQueryStateWithUrl), [dashboard_listing.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/application/listing/dashboard_listing.tsx#:~:text=syncQueryStateWithUrl) | - | +| | [export_csv_action.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/application/actions/export_csv_action.tsx#:~:text=fieldFormats) | - | +| | [kibana_react.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/kibana_react.ts#:~:text=ExitFullScreenButton), [plugin.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/plugin.tsx#:~:text=ExitFullScreenButton), [plugin.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/plugin.tsx#:~:text=ExitFullScreenButton), [plugin.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/plugin.tsx#:~:text=ExitFullScreenButton) | - | +| | [saved_objects.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/saved_objects.ts#:~:text=SavedObjectSaveModal), [save_modal.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/application/top_nav/save_modal.tsx#:~:text=SavedObjectSaveModal), [save_modal.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/application/top_nav/save_modal.tsx#:~:text=SavedObjectSaveModal) | 8.8.0 | +| | [saved_object_loader.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/saved_object_loader.ts#:~:text=SavedObject), [saved_object_loader.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/saved_object_loader.ts#:~:text=SavedObject), [saved_object_loader.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/saved_object_loader.ts#:~:text=SavedObject), [saved_objects.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/saved_objects.ts#:~:text=SavedObject), [saved_dashboard.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts#:~:text=SavedObject), [saved_dashboard.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts#:~:text=SavedObject), [dashboard_tagging.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/application/lib/dashboard_tagging.ts#:~:text=SavedObject), [dashboard_tagging.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/application/lib/dashboard_tagging.ts#:~:text=SavedObject), [clone_panel_action.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/application/actions/clone_panel_action.tsx#:~:text=SavedObject), [clone_panel_action.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/application/actions/clone_panel_action.tsx#:~:text=SavedObject)+ 1 more | 8.8.0 | +| | [saved_dashboard.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts#:~:text=SavedObjectClass) | 8.8.0 | +| | [types.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/types.ts#:~:text=onAppLeave), [dashboard_router.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/application/dashboard_router.tsx#:~:text=onAppLeave), [plugin.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/plugin.tsx#:~:text=onAppLeave) | 8.8.0 | +| | [migrations_730.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/server/saved_objects/migrations_730.ts#:~:text=warning), [migrations_730.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/server/saved_objects/migrations_730.ts#:~:text=warning) | 8.8.0 | @@ -186,9 +194,9 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [get_columns.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data/public/search/session/sessions_mgmt/lib/get_columns.tsx#:~:text=RedirectAppLinks), [get_columns.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data/public/search/session/sessions_mgmt/lib/get_columns.tsx#:~:text=RedirectAppLinks), [get_columns.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data/public/search/session/sessions_mgmt/lib/get_columns.tsx#:~:text=RedirectAppLinks), [connected_search_session_indicator.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data/public/search/session/session_indicator/connected_search_session_indicator/connected_search_session_indicator.tsx#:~:text=RedirectAppLinks), [connected_search_session_indicator.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data/public/search/session/session_indicator/connected_search_session_indicator/connected_search_session_indicator.tsx#:~:text=RedirectAppLinks), [connected_search_session_indicator.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data/public/search/session/session_indicator/connected_search_session_indicator/connected_search_session_indicator.tsx#:~:text=RedirectAppLinks) | - | -| | [data_table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data/public/utils/table_inspector_view/components/data_table.tsx#:~:text=executeTriggerActions), [data_table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data/public/utils/table_inspector_view/components/data_table.tsx#:~:text=executeTriggerActions) | - | -| | [session_service.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data/server/search/session/session_service.ts#:~:text=authc) | - | +| | [get_columns.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/sessions_mgmt/lib/get_columns.tsx#:~:text=RedirectAppLinks), [get_columns.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/sessions_mgmt/lib/get_columns.tsx#:~:text=RedirectAppLinks), [get_columns.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/sessions_mgmt/lib/get_columns.tsx#:~:text=RedirectAppLinks), [connected_search_session_indicator.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/session_indicator/connected_search_session_indicator/connected_search_session_indicator.tsx#:~:text=RedirectAppLinks), [connected_search_session_indicator.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/session_indicator/connected_search_session_indicator/connected_search_session_indicator.tsx#:~:text=RedirectAppLinks), [connected_search_session_indicator.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/search/session/session_indicator/connected_search_session_indicator/connected_search_session_indicator.tsx#:~:text=RedirectAppLinks) | - | +| | [data_table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/utils/table_inspector_view/components/data_table.tsx#:~:text=executeTriggerActions), [data_table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data/public/utils/table_inspector_view/components/data_table.tsx#:~:text=executeTriggerActions) | - | +| | [session_service.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data/server/search/session/session_service.ts#:~:text=authc) | - | @@ -196,15 +204,15 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=removeScriptedField), [field_editor.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/field_editor/field_editor.tsx#:~:text=removeScriptedField), [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=removeScriptedField), [field_editor.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/field_editor/field_editor.tsx#:~:text=removeScriptedField) | - | -| | [table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/source_filters_table/components/table/table.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/source_filters_table/components/table/table.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields) | - | -| | [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=getScriptedFields), [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=getScriptedFields) | - | -| | [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=removeScriptedField), [field_editor.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/field_editor/field_editor.tsx#:~:text=removeScriptedField), [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=removeScriptedField), [field_editor.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/field_editor/field_editor.tsx#:~:text=removeScriptedField) | - | -| | [table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/source_filters_table/components/table/table.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/source_filters_table/components/table/table.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields) | - | -| | [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=getScriptedFields), [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=getScriptedFields) | - | -| | [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=removeScriptedField), [field_editor.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/field_editor/field_editor.tsx#:~:text=removeScriptedField) | - | -| | [table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/source_filters_table/components/table/table.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields) | - | -| | [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=getScriptedFields) | - | +| | [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=removeScriptedField), [field_editor.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/field_editor/field_editor.tsx#:~:text=removeScriptedField), [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=removeScriptedField), [field_editor.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/field_editor/field_editor.tsx#:~:text=removeScriptedField) | - | +| | [table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/source_filters_table/components/table/table.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/source_filters_table/components/table/table.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields) | - | +| | [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=getScriptedFields), [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=getScriptedFields) | - | +| | [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=removeScriptedField), [field_editor.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/field_editor/field_editor.tsx#:~:text=removeScriptedField), [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=removeScriptedField), [field_editor.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/field_editor/field_editor.tsx#:~:text=removeScriptedField) | - | +| | [table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/source_filters_table/components/table/table.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/source_filters_table/components/table/table.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields) | - | +| | [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=getScriptedFields), [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=getScriptedFields) | - | +| | [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=removeScriptedField), [field_editor.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/field_editor/field_editor.tsx#:~:text=removeScriptedField) | - | +| | [table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/source_filters_table/components/table/table.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields), [edit_index_pattern.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/edit_index_pattern.tsx#:~:text=getNonScriptedFields) | - | +| | [scripted_fields_table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/data_view_management/public/components/edit_index_pattern/scripted_fields_table/scripted_fields_table.tsx#:~:text=getScriptedFields) | - | @@ -212,14 +220,14 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [data_view.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.ts#:~:text=flattenHit) | - | -| | [data_view.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=removeScriptedField) | - | -| | [data_view.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getNonScriptedFields) | - | -| | [data_view.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.ts#:~:text=getScriptedFields), [data_view.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.ts#:~:text=getScriptedFields), [data_views.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_views.ts#:~:text=getScriptedFields), [register_index_pattern_usage_collection.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/server/register_index_pattern_usage_collection.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields) | - | -| | [data_view.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.ts#:~:text=flattenHit) | - | -| | [data_view.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=removeScriptedField) | - | -| | [data_view.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getNonScriptedFields) | - | -| | [data_view.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.ts#:~:text=getScriptedFields), [data_view.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.ts#:~:text=getScriptedFields), [data_views.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_views.ts#:~:text=getScriptedFields), [register_index_pattern_usage_collection.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/server/register_index_pattern_usage_collection.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields) | - | +| | [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=flattenHit) | - | +| | [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=removeScriptedField) | - | +| | [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getNonScriptedFields) | - | +| | [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=getScriptedFields), [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=getScriptedFields), [data_views.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_views.ts#:~:text=getScriptedFields), [register_index_pattern_usage_collection.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/server/register_index_pattern_usage_collection.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields) | - | +| | [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=flattenHit) | - | +| | [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=removeScriptedField) | - | +| | [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getNonScriptedFields) | - | +| | [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=getScriptedFields), [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=getScriptedFields), [data_views.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_views.ts#:~:text=getScriptedFields), [register_index_pattern_usage_collection.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/server/register_index_pattern_usage_collection.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields) | - | @@ -227,7 +235,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [results_links.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx#:~:text=indexPatternId), [actions_panel.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/components/actions_panel/actions_panel.tsx#:~:text=indexPatternId) | - | +| | [results_links.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx#:~:text=indexPatternId), [actions_panel.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/components/actions_panel/actions_panel.tsx#:~:text=indexPatternId) | - | @@ -235,14 +243,14 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [saved_search_embeddable.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/embeddable/saved_search_embeddable.tsx#:~:text=create), [saved_search_embeddable.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/embeddable/saved_search_embeddable.tsx#:~:text=create) | - | -| | [discover_state.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/main/services/discover_state.ts#:~:text=syncQueryStateWithUrl), [discover_state.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/main/services/discover_state.ts#:~:text=syncQueryStateWithUrl) | - | -| | [plugin.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/plugin.tsx#:~:text=indexPatterns) | - | -| | [saved_search_embeddable.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/embeddable/saved_search_embeddable.tsx#:~:text=create), [saved_search_embeddable.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/embeddable/saved_search_embeddable.tsx#:~:text=create) | - | -| | [on_save_search.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/main/components/top_nav/on_save_search.tsx#:~:text=SavedObjectSaveModal), [on_save_search.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/main/components/top_nav/on_save_search.tsx#:~:text=SavedObjectSaveModal) | 8.8.0 | -| | [saved_search_embeddable.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/embeddable/saved_search_embeddable.tsx#:~:text=executeTriggerActions), [search_embeddable_factory.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/embeddable/search_embeddable_factory.ts#:~:text=executeTriggerActions), [plugin.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/plugin.tsx#:~:text=executeTriggerActions) | - | -| | [ui_settings.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/server/ui_settings.ts#:~:text=metric), [ui_settings.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/server/ui_settings.ts#:~:text=metric), [ui_settings.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/server/ui_settings.ts#:~:text=metric) | - | -| | [ui_settings.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/server/ui_settings.ts#:~:text=metric), [ui_settings.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/server/ui_settings.ts#:~:text=metric), [ui_settings.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/server/ui_settings.ts#:~:text=metric) | - | +| | [saved_search_embeddable.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/discover/public/embeddable/saved_search_embeddable.tsx#:~:text=create), [saved_search_embeddable.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/discover/public/embeddable/saved_search_embeddable.tsx#:~:text=create) | - | +| | [discover_state.ts](https://github.com/elastic/kibana/tree/main/src/plugins/discover/public/application/main/services/discover_state.ts#:~:text=syncQueryStateWithUrl), [discover_state.ts](https://github.com/elastic/kibana/tree/main/src/plugins/discover/public/application/main/services/discover_state.ts#:~:text=syncQueryStateWithUrl) | - | +| | [plugin.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/discover/public/plugin.tsx#:~:text=indexPatterns) | - | +| | [saved_search_embeddable.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/discover/public/embeddable/saved_search_embeddable.tsx#:~:text=create), [saved_search_embeddable.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/discover/public/embeddable/saved_search_embeddable.tsx#:~:text=create) | - | +| | [on_save_search.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/discover/public/application/main/components/top_nav/on_save_search.tsx#:~:text=SavedObjectSaveModal), [on_save_search.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/discover/public/application/main/components/top_nav/on_save_search.tsx#:~:text=SavedObjectSaveModal) | 8.8.0 | +| | [saved_search_embeddable.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/discover/public/embeddable/saved_search_embeddable.tsx#:~:text=executeTriggerActions), [search_embeddable_factory.ts](https://github.com/elastic/kibana/tree/main/src/plugins/discover/public/embeddable/search_embeddable_factory.ts#:~:text=executeTriggerActions), [plugin.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/discover/public/plugin.tsx#:~:text=executeTriggerActions) | - | +| | [ui_settings.ts](https://github.com/elastic/kibana/tree/main/src/plugins/discover/server/ui_settings.ts#:~:text=metric), [ui_settings.ts](https://github.com/elastic/kibana/tree/main/src/plugins/discover/server/ui_settings.ts#:~:text=metric), [ui_settings.ts](https://github.com/elastic/kibana/tree/main/src/plugins/discover/server/ui_settings.ts#:~:text=metric) | - | +| | [ui_settings.ts](https://github.com/elastic/kibana/tree/main/src/plugins/discover/server/ui_settings.ts#:~:text=metric), [ui_settings.ts](https://github.com/elastic/kibana/tree/main/src/plugins/discover/server/ui_settings.ts#:~:text=metric), [ui_settings.ts](https://github.com/elastic/kibana/tree/main/src/plugins/discover/server/ui_settings.ts#:~:text=metric) | - | @@ -250,7 +258,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [explore_data_context_menu_action.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_context_menu_action.ts#:~:text=indexPatternId), [explore_data_chart_action.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_chart_action.ts#:~:text=indexPatternId) | - | +| | [explore_data_context_menu_action.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_context_menu_action.ts#:~:text=indexPatternId), [explore_data_chart_action.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_chart_action.ts#:~:text=indexPatternId) | - | @@ -258,8 +266,8 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [attribute_service.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx#:~:text=SavedObjectSaveModal), [attribute_service.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx#:~:text=SavedObjectSaveModal) | 8.8.0 | -| | [container.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/embeddable/public/tests/container.test.ts#:~:text=executeTriggerActions), [container.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/embeddable/public/tests/container.test.ts#:~:text=executeTriggerActions), [container.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/embeddable/public/tests/container.test.ts#:~:text=executeTriggerActions), [container.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/embeddable/public/tests/container.test.ts#:~:text=executeTriggerActions), [explicit_input.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/embeddable/public/tests/explicit_input.test.ts#:~:text=executeTriggerActions) | - | +| | [attribute_service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx#:~:text=SavedObjectSaveModal), [attribute_service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx#:~:text=SavedObjectSaveModal) | 8.8.0 | +| | [container.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/embeddable/public/tests/container.test.ts#:~:text=executeTriggerActions), [container.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/embeddable/public/tests/container.test.ts#:~:text=executeTriggerActions), [container.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/embeddable/public/tests/container.test.ts#:~:text=executeTriggerActions), [container.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/embeddable/public/tests/container.test.ts#:~:text=executeTriggerActions), [explicit_input.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/embeddable/public/tests/explicit_input.test.ts#:~:text=executeTriggerActions) | - | @@ -267,7 +275,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [encryption_key_rotation_service.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/encrypted_saved_objects/server/crypto/encryption_key_rotation_service.ts#:~:text=authc), [index.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/encrypted_saved_objects/server/saved_objects/index.ts#:~:text=authc) | - | +| | [encryption_key_rotation_service.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/encrypted_saved_objects/server/crypto/encryption_key_rotation_service.ts#:~:text=authc), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/encrypted_saved_objects/server/saved_objects/index.ts#:~:text=authc) | - | @@ -275,8 +283,8 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [account_settings.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/enterprise_search/public/applications/workplace_search/views/account_settings/account_settings.tsx#:~:text=uiApi), [account_settings.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/enterprise_search/public/applications/workplace_search/views/account_settings/account_settings.tsx#:~:text=uiApi), [account_settings.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/enterprise_search/public/applications/workplace_search/views/account_settings/account_settings.tsx#:~:text=uiApi), [account_settings.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/enterprise_search/public/applications/workplace_search/views/account_settings/account_settings.tsx#:~:text=uiApi) | - | -| | [check_access.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/enterprise_search/server/lib/check_access.ts#:~:text=authz), [check_access.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/enterprise_search/server/lib/check_access.ts#:~:text=authz), [check_access.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/enterprise_search/server/lib/check_access.ts#:~:text=authz) | - | +| | [account_settings.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/enterprise_search/public/applications/workplace_search/views/account_settings/account_settings.tsx#:~:text=uiApi), [account_settings.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/enterprise_search/public/applications/workplace_search/views/account_settings/account_settings.tsx#:~:text=uiApi), [account_settings.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/enterprise_search/public/applications/workplace_search/views/account_settings/account_settings.tsx#:~:text=uiApi), [account_settings.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/enterprise_search/public/applications/workplace_search/views/account_settings/account_settings.tsx#:~:text=uiApi) | - | +| | [check_access.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/enterprise_search/server/lib/check_access.ts#:~:text=authz), [check_access.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/enterprise_search/server/lib/check_access.ts#:~:text=authz), [check_access.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/enterprise_search/server/lib/check_access.ts#:~:text=authz) | - | @@ -284,7 +292,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [view_api_request_flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/es_ui_shared/public/components/view_api_request_flyout/view_api_request_flyout.tsx#:~:text=RedirectAppLinks), [view_api_request_flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/es_ui_shared/public/components/view_api_request_flyout/view_api_request_flyout.tsx#:~:text=RedirectAppLinks), [view_api_request_flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/es_ui_shared/public/components/view_api_request_flyout/view_api_request_flyout.tsx#:~:text=RedirectAppLinks) | - | +| | [view_api_request_flyout.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/es_ui_shared/public/components/view_api_request_flyout/view_api_request_flyout.tsx#:~:text=RedirectAppLinks), [view_api_request_flyout.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/es_ui_shared/public/components/view_api_request_flyout/view_api_request_flyout.tsx#:~:text=RedirectAppLinks), [view_api_request_flyout.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/es_ui_shared/public/components/view_api_request_flyout/view_api_request_flyout.tsx#:~:text=RedirectAppLinks) | - | @@ -292,7 +300,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [get_layers.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/chart_expressions/expression_partition_vis/public/utils/layers/get_layers.test.ts#:~:text=fieldFormats), [get_layers.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/chart_expressions/expression_partition_vis/public/utils/layers/get_layers.test.ts#:~:text=fieldFormats), [get_layers.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/chart_expressions/expression_partition_vis/public/utils/layers/get_layers.test.ts#:~:text=fieldFormats), [get_layers.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/chart_expressions/expression_partition_vis/public/utils/layers/get_layers.test.ts#:~:text=fieldFormats), [get_layers.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/chart_expressions/expression_partition_vis/public/utils/layers/get_layers.test.ts#:~:text=fieldFormats), [get_layers.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/chart_expressions/expression_partition_vis/public/utils/layers/get_layers.test.ts#:~:text=fieldFormats), [get_layers.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/chart_expressions/expression_partition_vis/public/utils/layers/get_layers.test.ts#:~:text=fieldFormats), [get_layers.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/chart_expressions/expression_partition_vis/public/utils/layers/get_layers.test.ts#:~:text=fieldFormats) | - | +| | [get_layers.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/chart_expressions/expression_partition_vis/public/utils/layers/get_layers.test.ts#:~:text=fieldFormats), [get_layers.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/chart_expressions/expression_partition_vis/public/utils/layers/get_layers.test.ts#:~:text=fieldFormats), [get_layers.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/chart_expressions/expression_partition_vis/public/utils/layers/get_layers.test.ts#:~:text=fieldFormats), [get_layers.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/chart_expressions/expression_partition_vis/public/utils/layers/get_layers.test.ts#:~:text=fieldFormats), [get_layers.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/chart_expressions/expression_partition_vis/public/utils/layers/get_layers.test.ts#:~:text=fieldFormats), [get_layers.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/chart_expressions/expression_partition_vis/public/utils/layers/get_layers.test.ts#:~:text=fieldFormats), [get_layers.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/chart_expressions/expression_partition_vis/public/utils/layers/get_layers.test.ts#:~:text=fieldFormats), [get_layers.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/chart_expressions/expression_partition_vis/public/utils/layers/get_layers.test.ts#:~:text=fieldFormats) | - | @@ -300,12 +308,12 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [use_get_logs_discover_link.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/multi_page_layout/hooks/use_get_logs_discover_link.tsx#:~:text=indexPatternId) | - | -| | [tutorial_directory_header_link.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/components/home_integration/tutorial_directory_header_link.tsx#:~:text=RedirectAppLinks), [tutorial_directory_header_link.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/components/home_integration/tutorial_directory_header_link.tsx#:~:text=RedirectAppLinks), [tutorial_directory_header_link.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/components/home_integration/tutorial_directory_header_link.tsx#:~:text=RedirectAppLinks), [custom_assets_accordion.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx#:~:text=RedirectAppLinks), [custom_assets_accordion.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx#:~:text=RedirectAppLinks), [custom_assets_accordion.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx#:~:text=RedirectAppLinks), [agent_logs.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/agent_logs.tsx#:~:text=RedirectAppLinks), [agent_logs.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/agent_logs.tsx#:~:text=RedirectAppLinks), [agent_logs.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/agent_logs.tsx#:~:text=RedirectAppLinks), [app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/applications/integrations/app.tsx#:~:text=RedirectAppLinks)+ 5 more | - | -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/server/plugin.ts#:~:text=disabled) | 8.8.0 | -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/server/plugin.ts#:~:text=disabled) | 8.8.0 | -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/server/plugin.ts#:~:text=disabled) | 8.8.0 | -| | [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/applications/integrations/index.tsx#:~:text=appBasePath) | 8.8.0 | +| | [use_get_logs_discover_link.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/multi_page_layout/hooks/use_get_logs_discover_link.tsx#:~:text=indexPatternId) | - | +| | [tutorial_directory_header_link.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/components/home_integration/tutorial_directory_header_link.tsx#:~:text=RedirectAppLinks), [tutorial_directory_header_link.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/components/home_integration/tutorial_directory_header_link.tsx#:~:text=RedirectAppLinks), [tutorial_directory_header_link.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/components/home_integration/tutorial_directory_header_link.tsx#:~:text=RedirectAppLinks), [custom_assets_accordion.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx#:~:text=RedirectAppLinks), [custom_assets_accordion.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx#:~:text=RedirectAppLinks), [custom_assets_accordion.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx#:~:text=RedirectAppLinks), [agent_logs.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/agent_logs.tsx#:~:text=RedirectAppLinks), [agent_logs.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/agent_logs.tsx#:~:text=RedirectAppLinks), [agent_logs.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/agent_logs.tsx#:~:text=RedirectAppLinks), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/applications/integrations/app.tsx#:~:text=RedirectAppLinks)+ 5 more | - | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/plugin.ts#:~:text=disabled) | 8.8.0 | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/plugin.ts#:~:text=disabled) | 8.8.0 | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/plugin.ts#:~:text=disabled) | 8.8.0 | +| | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/applications/integrations/index.tsx#:~:text=appBasePath) | 8.8.0 | @@ -313,12 +321,12 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/plugin.ts#:~:text=indexPatterns) | - | -| | [deserialize.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/services/persistence/deserialize.ts#:~:text=getNonScriptedFields), [datasource.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/state_management/datasource.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields), [deserialize.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/services/persistence/deserialize.ts#:~:text=getNonScriptedFields), [datasource.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/state_management/datasource.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields) | - | -| | [deserialize.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/services/persistence/deserialize.ts#:~:text=getNonScriptedFields), [datasource.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/state_management/datasource.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields), [deserialize.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/services/persistence/deserialize.ts#:~:text=getNonScriptedFields), [datasource.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/state_management/datasource.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields) | - | -| | [deserialize.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/services/persistence/deserialize.ts#:~:text=getNonScriptedFields), [datasource.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/state_management/datasource.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields) | - | -| | [save_modal.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/components/save_modal.tsx#:~:text=SavedObjectSaveModal), [save_modal.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/components/save_modal.tsx#:~:text=SavedObjectSaveModal) | 8.8.0 | -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/server/plugin.ts#:~:text=license%24) | 8.8.0 | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/plugin.ts#:~:text=indexPatterns) | - | +| | [deserialize.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/services/persistence/deserialize.ts#:~:text=getNonScriptedFields), [datasource.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/state_management/datasource.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields), [deserialize.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/services/persistence/deserialize.ts#:~:text=getNonScriptedFields), [datasource.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/state_management/datasource.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields) | - | +| | [deserialize.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/services/persistence/deserialize.ts#:~:text=getNonScriptedFields), [datasource.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/state_management/datasource.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields), [deserialize.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/services/persistence/deserialize.ts#:~:text=getNonScriptedFields), [datasource.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/state_management/datasource.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields) | - | +| | [deserialize.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/services/persistence/deserialize.ts#:~:text=getNonScriptedFields), [datasource.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/state_management/datasource.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields), [deserialize.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/services/persistence/deserialize.test.ts#:~:text=getNonScriptedFields) | - | +| | [save_modal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/components/save_modal.tsx#:~:text=SavedObjectSaveModal), [save_modal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/components/save_modal.tsx#:~:text=SavedObjectSaveModal) | 8.8.0 | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/server/plugin.ts#:~:text=license%24) | 8.8.0 | @@ -326,8 +334,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [home.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/home/public/application/components/home.tsx#:~:text=KibanaPageTemplate), [home.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/home/public/application/components/home.tsx#:~:text=KibanaPageTemplate), [home.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/home/public/application/components/home.tsx#:~:text=KibanaPageTemplate) | - | -| | [application.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/home/public/application/application.tsx#:~:text=RedirectAppLinks), [application.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/home/public/application/application.tsx#:~:text=RedirectAppLinks), [application.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/home/public/application/application.tsx#:~:text=RedirectAppLinks), [add_data.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/home/public/application/components/add_data/add_data.tsx#:~:text=RedirectAppLinks), [add_data.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/home/public/application/components/add_data/add_data.tsx#:~:text=RedirectAppLinks), [add_data.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/home/public/application/components/add_data/add_data.tsx#:~:text=RedirectAppLinks), [manage_data.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/home/public/application/components/manage_data/manage_data.tsx#:~:text=RedirectAppLinks), [manage_data.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/home/public/application/components/manage_data/manage_data.tsx#:~:text=RedirectAppLinks), [manage_data.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/home/public/application/components/manage_data/manage_data.tsx#:~:text=RedirectAppLinks), [manage_data.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/home/public/application/components/manage_data/manage_data.tsx#:~:text=RedirectAppLinks)+ 1 more | - | +| | [application.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/home/public/application/application.tsx#:~:text=RedirectAppLinks), [application.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/home/public/application/application.tsx#:~:text=RedirectAppLinks), [application.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/home/public/application/application.tsx#:~:text=RedirectAppLinks), [add_data.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/home/public/application/components/add_data/add_data.tsx#:~:text=RedirectAppLinks), [add_data.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/home/public/application/components/add_data/add_data.tsx#:~:text=RedirectAppLinks), [add_data.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/home/public/application/components/add_data/add_data.tsx#:~:text=RedirectAppLinks), [manage_data.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/home/public/application/components/manage_data/manage_data.tsx#:~:text=RedirectAppLinks), [manage_data.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/home/public/application/components/manage_data/manage_data.tsx#:~:text=RedirectAppLinks), [manage_data.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/home/public/application/components/manage_data/manage_data.tsx#:~:text=RedirectAppLinks), [manage_data.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/home/public/application/components/manage_data/manage_data.tsx#:~:text=RedirectAppLinks)+ 1 more | - | @@ -335,8 +342,8 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [shared_imports.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_lifecycle_management/public/shared_imports.ts#:~:text=RedirectAppLinks), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_lifecycle_management/public/application/index.tsx#:~:text=RedirectAppLinks), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_lifecycle_management/public/application/index.tsx#:~:text=RedirectAppLinks), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_lifecycle_management/public/application/index.tsx#:~:text=RedirectAppLinks) | - | -| | [license.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_lifecycle_management/server/services/license.ts#:~:text=license%24) | 8.8.0 | +| | [shared_imports.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/index_lifecycle_management/public/shared_imports.ts#:~:text=RedirectAppLinks), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/index_lifecycle_management/public/application/index.tsx#:~:text=RedirectAppLinks), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/index_lifecycle_management/public/application/index.tsx#:~:text=RedirectAppLinks), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/index_lifecycle_management/public/application/index.tsx#:~:text=RedirectAppLinks) | - | +| | [license.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/index_lifecycle_management/server/services/license.ts#:~:text=license%24) | 8.8.0 | @@ -344,7 +351,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [use_kibana_index_patterns.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/infra/public/hooks/use_kibana_index_patterns.ts#:~:text=indexPatterns) | - | +| | [use_kibana_index_patterns.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/infra/public/hooks/use_kibana_index_patterns.ts#:~:text=indexPatterns) | - | @@ -352,9 +359,9 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [list_control_factory.ts](https://github.com/elastic/kibana/tree/master/src/plugins/input_control_vis/public/control/list_control_factory.ts#:~:text=fetch), [range_control_factory.ts](https://github.com/elastic/kibana/tree/master/src/plugins/input_control_vis/public/control/range_control_factory.ts#:~:text=fetch) | - | -| | [list_control_factory.ts](https://github.com/elastic/kibana/tree/master/src/plugins/input_control_vis/public/control/list_control_factory.ts#:~:text=indexPatterns), [range_control_factory.ts](https://github.com/elastic/kibana/tree/master/src/plugins/input_control_vis/public/control/range_control_factory.ts#:~:text=indexPatterns), [controls_tab.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/input_control_vis/public/components/editor/controls_tab.tsx#:~:text=indexPatterns) | - | -| | [list_control_factory.ts](https://github.com/elastic/kibana/tree/master/src/plugins/input_control_vis/public/control/list_control_factory.ts#:~:text=fetch), [range_control_factory.ts](https://github.com/elastic/kibana/tree/master/src/plugins/input_control_vis/public/control/range_control_factory.ts#:~:text=fetch) | - | +| | [list_control_factory.ts](https://github.com/elastic/kibana/tree/main/src/plugins/input_control_vis/public/control/list_control_factory.ts#:~:text=fetch), [range_control_factory.ts](https://github.com/elastic/kibana/tree/main/src/plugins/input_control_vis/public/control/range_control_factory.ts#:~:text=fetch) | - | +| | [list_control_factory.ts](https://github.com/elastic/kibana/tree/main/src/plugins/input_control_vis/public/control/list_control_factory.ts#:~:text=indexPatterns), [range_control_factory.ts](https://github.com/elastic/kibana/tree/main/src/plugins/input_control_vis/public/control/range_control_factory.ts#:~:text=indexPatterns), [controls_tab.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/input_control_vis/public/components/editor/controls_tab.tsx#:~:text=indexPatterns) | - | +| | [list_control_factory.ts](https://github.com/elastic/kibana/tree/main/src/plugins/input_control_vis/public/control/list_control_factory.ts#:~:text=fetch), [range_control_factory.ts](https://github.com/elastic/kibana/tree/main/src/plugins/input_control_vis/public/control/range_control_factory.ts#:~:text=fetch) | - | @@ -362,8 +369,8 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [add_data.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/kibana_overview/public/components/add_data/add_data.tsx#:~:text=RedirectAppLinks), [add_data.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/kibana_overview/public/components/add_data/add_data.tsx#:~:text=RedirectAppLinks), [add_data.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/kibana_overview/public/components/add_data/add_data.tsx#:~:text=RedirectAppLinks), [manage_data.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/kibana_overview/public/components/manage_data/manage_data.tsx#:~:text=RedirectAppLinks), [manage_data.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/kibana_overview/public/components/manage_data/manage_data.tsx#:~:text=RedirectAppLinks), [manage_data.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/kibana_overview/public/components/manage_data/manage_data.tsx#:~:text=RedirectAppLinks) | - | -| | [application.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/kibana_overview/public/application.tsx#:~:text=appBasePath) | 8.8.0 | +| | [add_data.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/kibana_overview/public/components/add_data/add_data.tsx#:~:text=RedirectAppLinks), [add_data.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/kibana_overview/public/components/add_data/add_data.tsx#:~:text=RedirectAppLinks), [add_data.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/kibana_overview/public/components/add_data/add_data.tsx#:~:text=RedirectAppLinks), [manage_data.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/kibana_overview/public/components/manage_data/manage_data.tsx#:~:text=RedirectAppLinks), [manage_data.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/kibana_overview/public/components/manage_data/manage_data.tsx#:~:text=RedirectAppLinks), [manage_data.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/kibana_overview/public/components/manage_data/manage_data.tsx#:~:text=RedirectAppLinks) | - | +| | [application.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/kibana_overview/public/application.tsx#:~:text=appBasePath) | 8.8.0 | @@ -371,7 +378,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [ops_stats_collector.ts](https://github.com/elastic/kibana/tree/master/src/plugins/kibana_usage_collection/server/collectors/ops_stats/ops_stats_collector.ts#:~:text=process) | 8.8.0 | +| | [ops_stats_collector.ts](https://github.com/elastic/kibana/tree/main/src/plugins/kibana_usage_collection/server/collectors/ops_stats/ops_stats_collector.ts#:~:text=process) | 8.8.0 | @@ -379,8 +386,8 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [lens_top_nav.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/app_plugin/lens_top_nav.tsx#:~:text=indexPatternId) | - | -| | [types.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/app_plugin/types.ts#:~:text=onAppLeave), [types.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/app_plugin/types.ts#:~:text=onAppLeave), [mounter.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/app_plugin/mounter.tsx#:~:text=onAppLeave) | 8.8.0 | +| | [lens_top_nav.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/app_plugin/lens_top_nav.tsx#:~:text=indexPatternId) | - | +| | [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/app_plugin/types.ts#:~:text=onAppLeave), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/app_plugin/types.ts#:~:text=onAppLeave), [mounter.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/app_plugin/mounter.tsx#:~:text=onAppLeave) | 8.8.0 | @@ -388,7 +395,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/license_management/public/plugin.ts#:~:text=license%24) | 8.8.0 | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/license_management/public/plugin.ts#:~:text=license%24) | 8.8.0 | @@ -396,8 +403,8 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/logstash/public/plugin.ts#:~:text=license%24) | 8.8.0 | -| | [save.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/logstash/server/routes/pipeline/save.ts#:~:text=authc) | - | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/logstash/public/plugin.ts#:~:text=license%24) | 8.8.0 | +| | [save.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/logstash/server/routes/pipeline/save.ts#:~:text=authc) | - | @@ -405,9 +412,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [management_app.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/management/public/components/management_app/management_app.tsx#:~:text=KibanaPageTemplateProps), [management_app.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/management/public/components/management_app/management_app.tsx#:~:text=KibanaPageTemplateProps) | - | -| | [management_app.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/management/public/components/management_app/management_app.tsx#:~:text=KibanaPageTemplate), [management_app.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/management/public/components/management_app/management_app.tsx#:~:text=KibanaPageTemplate), [management_app.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/management/public/components/management_app/management_app.tsx#:~:text=KibanaPageTemplate) | - | -| | [application.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/management/public/application.tsx#:~:text=appBasePath) | 8.8.0 | +| | [application.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/management/public/application.tsx#:~:text=appBasePath) | 8.8.0 | @@ -415,13 +420,13 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [global_sync.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/routes/map_page/url_state/global_sync.ts#:~:text=syncQueryStateWithUrl), [global_sync.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/routes/map_page/url_state/global_sync.ts#:~:text=syncQueryStateWithUrl) | - | -| | [kibana_services.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/kibana_services.ts#:~:text=indexPatterns) | - | -| | [es_search_source.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit), [es_search_source.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit), [es_search_source.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit), [es_search_source.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit) | - | -| | [es_search_source.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit), [es_search_source.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit), [es_search_source.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit), [es_search_source.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit) | - | -| | [es_search_source.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit), [es_search_source.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit) | - | -| | [render_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/render_app.tsx#:~:text=onAppLeave), [map_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/routes/map_page/map_app/map_app.tsx#:~:text=onAppLeave), [map_page.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/routes/map_page/map_page.tsx#:~:text=onAppLeave) | 8.8.0 | -| | [saved_object_migrations.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/server/saved_objects/saved_object_migrations.ts#:~:text=warning) | 8.8.0 | +| | [global_sync.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/public/routes/map_page/url_state/global_sync.ts#:~:text=syncQueryStateWithUrl), [global_sync.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/public/routes/map_page/url_state/global_sync.ts#:~:text=syncQueryStateWithUrl) | - | +| | [kibana_services.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/public/kibana_services.ts#:~:text=indexPatterns) | - | +| | [es_search_source.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit), [es_search_source.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit), [es_search_source.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit), [es_search_source.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit) | - | +| | [es_search_source.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit), [es_search_source.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit), [es_search_source.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit), [es_search_source.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit) | - | +| | [es_search_source.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit), [es_search_source.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/public/classes/sources/es_search_source/es_search_source.tsx#:~:text=flattenHit) | - | +| | [render_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/public/render_app.tsx#:~:text=onAppLeave), [map_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/public/routes/map_page/map_app/map_app.tsx#:~:text=onAppLeave), [map_page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/public/routes/map_page/map_page.tsx#:~:text=onAppLeave) | 8.8.0 | +| | [saved_object_migrations.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/server/saved_objects/saved_object_migrations.ts#:~:text=warning) | 8.8.0 | @@ -429,8 +434,8 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [index.ts](https://github.com/elastic/kibana/tree/master/src/plugins/maps_ems/server/index.ts#:~:text=license%24) | 8.8.0 | -| | [index.ts](https://github.com/elastic/kibana/tree/master/src/plugins/maps_ems/server/index.ts#:~:text=refresh) | 8.8.0 | +| | [index.ts](https://github.com/elastic/kibana/tree/main/src/plugins/maps_ems/server/index.ts#:~:text=license%24) | 8.8.0 | +| | [index.ts](https://github.com/elastic/kibana/tree/main/src/plugins/maps_ems/server/index.ts#:~:text=refresh) | 8.8.0 | @@ -438,14 +443,14 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [ml_page.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/public/application/components/ml_page/ml_page.tsx#:~:text=KibanaPageTemplate), [ml_page.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/public/application/components/ml_page/ml_page.tsx#:~:text=KibanaPageTemplate), [ml_page.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/public/application/components/ml_page/ml_page.tsx#:~:text=KibanaPageTemplate) | - | -| | [ml_page.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/public/application/components/ml_page/ml_page.tsx#:~:text=RedirectAppLinks), [ml_page.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/public/application/components/ml_page/ml_page.tsx#:~:text=RedirectAppLinks), [ml_page.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/public/application/components/ml_page/ml_page.tsx#:~:text=RedirectAppLinks), [jobs_list_page.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx#:~:text=RedirectAppLinks), [jobs_list_page.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx#:~:text=RedirectAppLinks), [jobs_list_page.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx#:~:text=RedirectAppLinks) | - | -| | [check_license.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/public/application/license/check_license.tsx#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/public/plugin.ts#:~:text=license%24) | 8.8.0 | -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/server/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/server/plugin.ts#:~:text=license%24) | 8.8.0 | -| | [annotations.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/server/routes/annotations.ts#:~:text=authc) | - | -| | [initialization.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/server/saved_objects/initialization/initialization.ts#:~:text=authz), [sync_task.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/server/saved_objects/sync_task.ts#:~:text=authz), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/server/plugin.ts#:~:text=authz), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/server/plugin.ts#:~:text=authz) | - | -| | [app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/public/application/app.tsx#:~:text=onAppLeave) | 8.8.0 | -| | [errors.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/common/util/errors/errors.test.ts#:~:text=req), [errors.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/common/util/errors/errors.test.ts#:~:text=req) | 8.8.0 +| | [ml_page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/components/ml_page/ml_page.tsx#:~:text=KibanaPageTemplate), [ml_page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/components/ml_page/ml_page.tsx#:~:text=KibanaPageTemplate), [ml_page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/components/ml_page/ml_page.tsx#:~:text=KibanaPageTemplate) | - | +| | [ml_page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/components/ml_page/ml_page.tsx#:~:text=RedirectAppLinks), [ml_page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/components/ml_page/ml_page.tsx#:~:text=RedirectAppLinks), [ml_page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/components/ml_page/ml_page.tsx#:~:text=RedirectAppLinks), [jobs_list_page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx#:~:text=RedirectAppLinks), [jobs_list_page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx#:~:text=RedirectAppLinks), [jobs_list_page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/management/jobs_list/components/jobs_list_page/jobs_list_page.tsx#:~:text=RedirectAppLinks) | - | +| | [check_license.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/license/check_license.tsx#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/plugin.ts#:~:text=license%24) | 8.8.0 | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/plugin.ts#:~:text=license%24) | 8.8.0 | +| | [annotations.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/routes/annotations.ts#:~:text=authc) | - | +| | [initialization.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/saved_objects/initialization/initialization.ts#:~:text=authz), [sync_task.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/saved_objects/sync_task.ts#:~:text=authz), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/plugin.ts#:~:text=authz), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/plugin.ts#:~:text=authz) | - | +| | [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/app.tsx#:~:text=onAppLeave) | 8.8.0 | +| | [errors.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/common/util/errors/errors.test.ts#:~:text=req), [errors.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/common/util/errors/errors.test.ts#:~:text=req) | 8.8.0 Note to maintainers: when looking at usages, mind that typical use could be inside a `catch` block, so TS and code-reference navigation might not highlight them. | @@ -456,8 +461,8 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [url_state.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/monitoring/public/url_state.ts#:~:text=syncQueryStateWithUrl), [url_state.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/monitoring/public/url_state.ts#:~:text=syncQueryStateWithUrl) | - | -| | [bulk_uploader.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/monitoring/server/kibana_monitoring/bulk_uploader.ts#:~:text=process) | 8.8.0 | +| | [url_state.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/monitoring/public/url_state.ts#:~:text=syncQueryStateWithUrl), [url_state.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/monitoring/public/url_state.ts#:~:text=syncQueryStateWithUrl) | - | +| | [bulk_uploader.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/monitoring/server/kibana_monitoring/bulk_uploader.ts#:~:text=process) | 8.8.0 | @@ -465,8 +470,8 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [use_discover_link.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/hooks/use_discover_link.tsx#:~:text=indexPatternId) | - | -| | [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/application/index.tsx#:~:text=RedirectAppLinks), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/application/index.tsx#:~:text=RedirectAppLinks), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/application/index.tsx#:~:text=RedirectAppLinks) | - | +| | [use_discover_link.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/components/shared/exploratory_view/hooks/use_discover_link.tsx#:~:text=indexPatternId) | - | +| | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/application/index.tsx#:~:text=RedirectAppLinks), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/application/index.tsx#:~:text=RedirectAppLinks), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/observability/public/application/index.tsx#:~:text=RedirectAppLinks) | - | @@ -474,8 +479,8 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [pack_queries_status_table.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/osquery/public/packs/pack_queries_status_table.tsx#:~:text=indexPatternId), [pack_queries_status_table.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/osquery/public/live_queries/form/pack_queries_status_table.tsx#:~:text=indexPatternId), [use_discover_link.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/osquery/public/common/hooks/use_discover_link.tsx#:~:text=indexPatternId) | - | -| | [empty_state.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/osquery/public/components/empty_state.tsx#:~:text=KibanaPageTemplate), [empty_state.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/osquery/public/components/empty_state.tsx#:~:text=KibanaPageTemplate) | - | +| | [pack_queries_status_table.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/osquery/public/packs/pack_queries_status_table.tsx#:~:text=indexPatternId), [pack_queries_status_table.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/osquery/public/live_queries/form/pack_queries_status_table.tsx#:~:text=indexPatternId), [use_discover_link.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/osquery/public/common/hooks/use_discover_link.tsx#:~:text=indexPatternId) | - | +| | [empty_state.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/osquery/public/components/empty_state.tsx#:~:text=KibanaPageTemplate), [empty_state.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/osquery/public/components/empty_state.tsx#:~:text=KibanaPageTemplate) | - | @@ -483,8 +488,8 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [plugin.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/painless_lab/public/plugin.tsx#:~:text=license%24), [plugin.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/painless_lab/public/plugin.tsx#:~:text=license%24) | 8.8.0 | -| | [license.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/painless_lab/server/services/license.ts#:~:text=license%24) | 8.8.0 | +| | [plugin.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/painless_lab/public/plugin.tsx#:~:text=license%24), [plugin.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/painless_lab/public/plugin.tsx#:~:text=license%24) | 8.8.0 | +| | [license.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/painless_lab/server/services/license.ts#:~:text=license%24) | 8.8.0 | @@ -492,7 +497,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [saved_object_save_modal_dashboard.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/presentation_util/public/components/saved_object_save_modal_dashboard.tsx#:~:text=SavedObjectSaveModal), [saved_object_save_modal_dashboard.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/presentation_util/public/components/saved_object_save_modal_dashboard.tsx#:~:text=SavedObjectSaveModal) | 8.8.0 | +| | [saved_object_save_modal_dashboard.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/presentation_util/public/components/saved_object_save_modal_dashboard.tsx#:~:text=SavedObjectSaveModal), [saved_object_save_modal_dashboard.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/presentation_util/public/components/saved_object_save_modal_dashboard.tsx#:~:text=SavedObjectSaveModal) | 8.8.0 | @@ -500,7 +505,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/remote_clusters/server/plugin.ts#:~:text=license%24) | 8.8.0 | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/remote_clusters/server/plugin.ts#:~:text=license%24) | 8.8.0 | @@ -508,7 +513,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [license.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/rollup/server/services/license.ts#:~:text=license%24) | 8.8.0 | +| | [license.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/rollup/server/services/license.ts#:~:text=license%24) | 8.8.0 | @@ -516,7 +521,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [saved_object.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects/public/saved_object/saved_object.test.ts#:~:text=indexPatterns), [saved_object.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects/public/saved_object/saved_object.test.ts#:~:text=indexPatterns) | - | +| | [saved_object.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects/public/saved_object/saved_object.test.ts#:~:text=indexPatterns), [saved_object.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects/public/saved_object/saved_object.test.ts#:~:text=indexPatterns) | - | @@ -524,9 +529,9 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [saved_objects_edition_page.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/saved_objects_edition_page.tsx#:~:text=RedirectAppLinks), [saved_objects_edition_page.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/saved_objects_edition_page.tsx#:~:text=RedirectAppLinks), [saved_objects_edition_page.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/saved_objects_edition_page.tsx#:~:text=RedirectAppLinks), [saved_objects_table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/objects_table/saved_objects_table.tsx#:~:text=RedirectAppLinks), [saved_objects_table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/objects_table/saved_objects_table.tsx#:~:text=RedirectAppLinks), [saved_objects_table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/objects_table/saved_objects_table.tsx#:~:text=RedirectAppLinks) | - | -| | [resolve_import_errors.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/lib/resolve_import_errors.ts#:~:text=createNewCopy) | - | -| | [resolve_import_errors.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/lib/resolve_import_errors.ts#:~:text=createNewCopy) | - | +| | [saved_objects_edition_page.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_management/public/management_section/saved_objects_edition_page.tsx#:~:text=RedirectAppLinks), [saved_objects_edition_page.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_management/public/management_section/saved_objects_edition_page.tsx#:~:text=RedirectAppLinks), [saved_objects_edition_page.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_management/public/management_section/saved_objects_edition_page.tsx#:~:text=RedirectAppLinks), [saved_objects_table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_management/public/management_section/objects_table/saved_objects_table.tsx#:~:text=RedirectAppLinks), [saved_objects_table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_management/public/management_section/objects_table/saved_objects_table.tsx#:~:text=RedirectAppLinks), [saved_objects_table.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_management/public/management_section/objects_table/saved_objects_table.tsx#:~:text=RedirectAppLinks) | - | +| | [resolve_import_errors.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_management/public/lib/resolve_import_errors.ts#:~:text=createNewCopy) | - | +| | [resolve_import_errors.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_management/public/lib/resolve_import_errors.ts#:~:text=createNewCopy) | - | @@ -534,7 +539,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [request_handler_context.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/saved_objects_tagging/server/request_handler_context.ts#:~:text=authz) | - | +| | [request_handler_context.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/saved_objects_tagging/server/request_handler_context.ts#:~:text=authz) | - | @@ -542,7 +547,7 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [api.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject), [types.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_tagging_oss/public/decorator/types.ts#:~:text=SavedObject), [types.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_tagging_oss/public/decorator/types.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject) | 8.8.0 | +| | [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/types.ts#:~:text=SavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/types.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject) | 8.8.0 | @@ -550,8 +555,8 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/searchprofiler/public/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/searchprofiler/public/plugin.ts#:~:text=license%24) | 8.8.0 | -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/searchprofiler/server/plugin.ts#:~:text=license%24) | 8.8.0 | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/searchprofiler/public/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/searchprofiler/public/plugin.ts#:~:text=license%24) | 8.8.0 | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/searchprofiler/server/plugin.ts#:~:text=license%24) | 8.8.0 | @@ -559,25 +564,25 @@ so TS and code-reference navigation might not highlight them. | | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [elasticsearch_role.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [primary_feature_privilege.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/public/management/roles/model/primary_feature_privilege.ts#:~:text=disabled), [elasticsearch_role.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.test.ts#:~:text=disabled), [kibana_features.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/public/management/roles/__fixtures__/kibana_features.ts#:~:text=disabled), [put.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/routes/authorization/roles/put.test.ts#:~:text=disabled), [put_payload.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/routes/authorization/roles/model/put_payload.test.ts#:~:text=disabled) | 8.8.0 | -| | [disable_ui_capabilities.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/disable_ui_capabilities.ts#:~:text=requiredRoles) | 8.8.0 +| | [elasticsearch_role.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [primary_feature_privilege.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/public/management/roles/model/primary_feature_privilege.ts#:~:text=disabled), [elasticsearch_role.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.test.ts#:~:text=disabled), [kibana_features.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/public/management/roles/__fixtures__/kibana_features.ts#:~:text=disabled), [put.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/routes/authorization/roles/put.test.ts#:~:text=disabled), [put_payload.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/routes/authorization/roles/model/put_payload.test.ts#:~:text=disabled) | 8.8.0 | +| | [disable_ui_capabilities.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/disable_ui_capabilities.ts#:~:text=requiredRoles) | 8.8.0 This is relied on by the reporting feature, and should be removed once reporting migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/issues/19914 | -| | [elasticsearch_role.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [primary_feature_privilege.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/public/management/roles/model/primary_feature_privilege.ts#:~:text=disabled), [elasticsearch_role.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.test.ts#:~:text=disabled), [kibana_features.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/public/management/roles/__fixtures__/kibana_features.ts#:~:text=disabled), [put.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/routes/authorization/roles/put.test.ts#:~:text=disabled), [put_payload.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/routes/authorization/roles/model/put_payload.test.ts#:~:text=disabled) | 8.8.0 | -| | [elasticsearch_role.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [primary_feature_privilege.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/public/management/roles/model/primary_feature_privilege.ts#:~:text=disabled), [elasticsearch_role.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.test.ts#:~:text=disabled), [kibana_features.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/public/management/roles/__fixtures__/kibana_features.ts#:~:text=disabled), [put.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/routes/authorization/roles/put.test.ts#:~:text=disabled), [put_payload.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/routes/authorization/roles/model/put_payload.test.ts#:~:text=disabled) | 8.8.0 | -| | [disable_ui_capabilities.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/disable_ui_capabilities.ts#:~:text=requiredRoles) | 8.8.0 +| | [elasticsearch_role.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [primary_feature_privilege.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/public/management/roles/model/primary_feature_privilege.ts#:~:text=disabled), [elasticsearch_role.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.test.ts#:~:text=disabled), [kibana_features.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/public/management/roles/__fixtures__/kibana_features.ts#:~:text=disabled), [put.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/routes/authorization/roles/put.test.ts#:~:text=disabled), [put_payload.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/routes/authorization/roles/model/put_payload.test.ts#:~:text=disabled) | 8.8.0 | +| | [elasticsearch_role.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [primary_feature_privilege.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/public/management/roles/model/primary_feature_privilege.ts#:~:text=disabled), [elasticsearch_role.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.test.ts#:~:text=disabled), [kibana_features.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/public/management/roles/__fixtures__/kibana_features.ts#:~:text=disabled), [put.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/routes/authorization/roles/put.test.ts#:~:text=disabled), [put_payload.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/routes/authorization/roles/model/put_payload.test.ts#:~:text=disabled) | 8.8.0 | +| | [disable_ui_capabilities.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/disable_ui_capabilities.ts#:~:text=requiredRoles) | 8.8.0 This is relied on by the reporting feature, and should be removed once reporting migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/issues/19914 | -| | [app_authorization.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/app_authorization.ts#:~:text=getKibanaFeatures), [privileges.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/privileges/privileges.ts#:~:text=getKibanaFeatures), [authorization_service.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/authorization_service.tsx#:~:text=getKibanaFeatures), [app_authorization.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/app_authorization.test.ts#:~:text=getKibanaFeatures), [privileges.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts#:~:text=getKibanaFeatures), [privileges.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts#:~:text=getKibanaFeatures), [privileges.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts#:~:text=getKibanaFeatures), [privileges.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts#:~:text=getKibanaFeatures), [privileges.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts#:~:text=getKibanaFeatures), [privileges.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts#:~:text=getKibanaFeatures)+ 14 more | 8.8.0 | -| | [authorization_service.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/authorization_service.tsx#:~:text=getElasticsearchFeatures) | 8.8.0 | -| | [license_service.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/common/licensing/license_service.test.ts#:~:text=mode), [license_service.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/common/licensing/license_service.test.ts#:~:text=mode) | 8.8.0 | -| | [plugin.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/public/plugin.tsx#:~:text=license%24) | 8.8.0 | -| | [license_service.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/common/licensing/license_service.test.ts#:~:text=mode), [license_service.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/common/licensing/license_service.test.ts#:~:text=mode) | 8.8.0 | -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/plugin.ts#:~:text=license%24) | 8.8.0 | -| | [logout_app.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/public/authentication/logout/logout_app.test.ts#:~:text=appBasePath) | 8.8.0 | -| | [logout_app.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/public/authentication/logout/logout_app.test.ts#:~:text=onAppLeave) | 8.8.0 | +| | [app_authorization.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/app_authorization.ts#:~:text=getKibanaFeatures), [privileges.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/privileges/privileges.ts#:~:text=getKibanaFeatures), [authorization_service.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/authorization_service.tsx#:~:text=getKibanaFeatures), [app_authorization.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/app_authorization.test.ts#:~:text=getKibanaFeatures), [privileges.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts#:~:text=getKibanaFeatures), [privileges.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts#:~:text=getKibanaFeatures), [privileges.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts#:~:text=getKibanaFeatures), [privileges.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts#:~:text=getKibanaFeatures), [privileges.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts#:~:text=getKibanaFeatures), [privileges.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts#:~:text=getKibanaFeatures)+ 14 more | 8.8.0 | +| | [authorization_service.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/authorization_service.tsx#:~:text=getElasticsearchFeatures) | 8.8.0 | +| | [license_service.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/common/licensing/license_service.test.ts#:~:text=mode), [license_service.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/common/licensing/license_service.test.ts#:~:text=mode) | 8.8.0 | +| | [plugin.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/public/plugin.tsx#:~:text=license%24) | 8.8.0 | +| | [license_service.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/common/licensing/license_service.test.ts#:~:text=mode), [license_service.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/common/licensing/license_service.test.ts#:~:text=mode) | 8.8.0 | +| | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/plugin.ts#:~:text=license%24) | 8.8.0 | +| | [logout_app.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/public/authentication/logout/logout_app.test.ts#:~:text=appBasePath) | 8.8.0 | +| | [logout_app.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/public/authentication/logout/logout_app.test.ts#:~:text=onAppLeave) | 8.8.0 | @@ -585,16 +590,16 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [wrap_search_source_client.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.ts#:~:text=create) | - | -| | [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.test.ts#:~:text=fetch) | - | -| | [middleware.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=indexPatterns), [dependencies_start_mock.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/mock/endpoint/dependencies_start_mock.ts#:~:text=indexPatterns) | - | -| | [wrap_search_source_client.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.ts#:~:text=create) | - | -| | [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.test.ts#:~:text=fetch) | - | -| | [policy_config.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [license_watch.test.ts](https://github.com/elastic/kibana/tree/master/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/master/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/master/x-pack/plugins/security_solution/server/endpoint/lib/policy/license_watch.test.ts#:~:text=mode), [list.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/endpoint/routes/actions/list.test.ts#:~:text=mode), [response_actions.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/endpoint/routes/actions/response_actions.test.ts#:~:text=mode)+ 3 more | 8.8.0 | -| | [policy_config.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [license_watch.test.ts](https://github.com/elastic/kibana/tree/master/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/master/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/master/x-pack/plugins/security_solution/server/endpoint/lib/policy/license_watch.test.ts#:~:text=mode), [list.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/endpoint/routes/actions/list.test.ts#:~:text=mode), [response_actions.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/endpoint/routes/actions/response_actions.test.ts#:~:text=mode)+ 3 more | 8.8.0 | -| | [request_context_factory.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/request_context_factory.ts#:~:text=authc), [request_context_factory.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/request_context_factory.ts#:~:text=authc), [create_signals_migration_route.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/create_signals_migration_route.ts#:~:text=authc), [delete_signals_migration_route.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/delete_signals_migration_route.ts#:~:text=authc), [finalize_signals_migration_route.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/finalize_signals_migration_route.ts#:~:text=authc), [open_close_signals_route.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/open_close_signals_route.ts#:~:text=authc), [preview_rules_route.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/preview_rules_route.ts#:~:text=authc), [common.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/timeline/utils/common.ts#:~:text=authc) | - | -| | [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/index.tsx#:~:text=onAppLeave), [plugin.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/plugin.tsx#:~:text=onAppLeave) | 8.8.0 | -| | [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/components/flyout/index.tsx#:~:text=AppLeaveHandler), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/components/flyout/index.tsx#:~:text=AppLeaveHandler), [types.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/types.ts#:~:text=AppLeaveHandler), [types.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/types.ts#:~:text=AppLeaveHandler), [routes.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/routes.tsx#:~:text=AppLeaveHandler), [routes.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/routes.tsx#:~:text=AppLeaveHandler), [app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/app.tsx#:~:text=AppLeaveHandler), [app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/app.tsx#:~:text=AppLeaveHandler), [app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/app.tsx#:~:text=AppLeaveHandler) | 8.8.0 | +| | [wrap_search_source_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.ts#:~:text=create) | - | +| | [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.test.ts#:~:text=fetch) | - | +| | [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=indexPatterns), [dependencies_start_mock.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/mock/endpoint/dependencies_start_mock.ts#:~:text=indexPatterns) | - | +| | [wrap_search_source_client.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.ts#:~:text=create) | - | +| | [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.test.ts#:~:text=fetch), [wrap_search_source_client.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/utils/wrap_search_source_client.test.ts#:~:text=fetch) | - | +| | [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), [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), [list.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/routes/actions/list.test.ts#:~:text=mode), [response_actions.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/routes/actions/response_actions.test.ts#:~:text=mode)+ 3 more | 8.8.0 | +| | [policy_config.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [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), [list.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/routes/actions/list.test.ts#:~:text=mode), [response_actions.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/routes/actions/response_actions.test.ts#:~:text=mode)+ 3 more | 8.8.0 | +| | [request_context_factory.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/request_context_factory.ts#:~:text=authc), [request_context_factory.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/request_context_factory.ts#:~:text=authc), [create_signals_migration_route.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/create_signals_migration_route.ts#:~:text=authc), [delete_signals_migration_route.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/delete_signals_migration_route.ts#:~:text=authc), [finalize_signals_migration_route.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/finalize_signals_migration_route.ts#:~:text=authc), [open_close_signals_route.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/open_close_signals_route.ts#:~:text=authc), [preview_rules_route.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/detection_engine/routes/rules/preview_rules_route.ts#:~:text=authc), [common.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/lib/timeline/utils/common.ts#:~:text=authc) | - | +| | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/app/index.tsx#:~:text=onAppLeave), [plugin.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/plugin.tsx#:~:text=onAppLeave) | 8.8.0 | +| | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/timelines/components/flyout/index.tsx#:~:text=AppLeaveHandler), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/timelines/components/flyout/index.tsx#:~:text=AppLeaveHandler), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/types.ts#:~:text=AppLeaveHandler), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/types.ts#:~:text=AppLeaveHandler), [routes.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/app/routes.tsx#:~:text=AppLeaveHandler), [routes.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/app/routes.tsx#:~:text=AppLeaveHandler), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/app/app.tsx#:~:text=AppLeaveHandler), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/app/app.tsx#:~:text=AppLeaveHandler), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/app/app.tsx#:~:text=AppLeaveHandler) | 8.8.0 | @@ -602,7 +607,7 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [license.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/snapshot_restore/server/services/license.ts#:~:text=license%24) | 8.8.0 | +| | [license.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/snapshot_restore/server/services/license.ts#:~:text=license%24) | 8.8.0 | @@ -610,12 +615,12 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [space_selector.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/public/space_selector/space_selector.tsx#:~:text=KibanaPageTemplate), [space_selector.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/public/space_selector/space_selector.tsx#:~:text=KibanaPageTemplate), [space_selector.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/public/space_selector/space_selector.tsx#:~:text=KibanaPageTemplate) | - | -| | [spaces_management_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/public/management/spaces_management_app.tsx#:~:text=RedirectAppLinks), [spaces_management_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/public/management/spaces_management_app.tsx#:~:text=RedirectAppLinks), [spaces_management_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/public/management/spaces_management_app.tsx#:~:text=RedirectAppLinks) | - | -| | [on_post_auth_interceptor.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/server/lib/request_interceptors/on_post_auth_interceptor.ts#:~:text=getKibanaFeatures), [spaces_usage_collector.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/server/usage_collection/spaces_usage_collector.ts#:~:text=getKibanaFeatures), [on_post_auth_interceptor.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/server/lib/request_interceptors/on_post_auth_interceptor.test.ts#:~:text=getKibanaFeatures) | 8.8.0 | -| | [spaces_usage_collector.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/server/usage_collection/spaces_usage_collector.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/server/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/server/plugin.ts#:~:text=license%24), [spaces_usage_collector.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/server/usage_collection/spaces_usage_collector.test.ts#:~:text=license%24) | 8.8.0 | -| | [copy_to_space_flyout_internal.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/public/copy_saved_objects_to_space/components/copy_to_space_flyout_internal.tsx#:~:text=createNewCopy) | - | -| | [copy_to_space_flyout_internal.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/public/copy_saved_objects_to_space/components/copy_to_space_flyout_internal.tsx#:~:text=createNewCopy) | - | +| | [space_selector.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/public/space_selector/space_selector.tsx#:~:text=KibanaPageTemplate), [space_selector.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/public/space_selector/space_selector.tsx#:~:text=KibanaPageTemplate), [space_selector.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/public/space_selector/space_selector.tsx#:~:text=KibanaPageTemplate) | - | +| | [spaces_management_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/public/management/spaces_management_app.tsx#:~:text=RedirectAppLinks), [spaces_management_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/public/management/spaces_management_app.tsx#:~:text=RedirectAppLinks), [spaces_management_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/public/management/spaces_management_app.tsx#:~:text=RedirectAppLinks) | - | +| | [on_post_auth_interceptor.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/server/lib/request_interceptors/on_post_auth_interceptor.ts#:~:text=getKibanaFeatures), [spaces_usage_collector.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/server/usage_collection/spaces_usage_collector.ts#:~:text=getKibanaFeatures), [on_post_auth_interceptor.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/server/lib/request_interceptors/on_post_auth_interceptor.test.ts#:~:text=getKibanaFeatures) | 8.8.0 | +| | [spaces_usage_collector.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/server/usage_collection/spaces_usage_collector.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/server/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/server/plugin.ts#:~:text=license%24), [spaces_usage_collector.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/server/usage_collection/spaces_usage_collector.test.ts#:~:text=license%24) | 8.8.0 | +| | [copy_to_space_flyout_internal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/public/copy_saved_objects_to_space/components/copy_to_space_flyout_internal.tsx#:~:text=createNewCopy) | - | +| | [copy_to_space_flyout_internal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/public/copy_saved_objects_to_space/components/copy_to_space_flyout_internal.tsx#:~:text=createNewCopy) | - | @@ -623,10 +628,10 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [fetch_search_source_query.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/server/alert_types/es_query/lib/fetch_search_source_query.ts#:~:text=fetch), [rule_type.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/server/alert_types/es_query/rule_type.test.ts#:~:text=fetch), [rule_type.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/server/alert_types/es_query/rule_type.test.ts#:~:text=fetch) | - | -| | [entity_index_expression.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_index_expression.tsx#:~:text=indexPatterns), [boundary_index_expression.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/boundary_index_expression.tsx#:~:text=indexPatterns), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/index.tsx#:~:text=indexPatterns), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/index.tsx#:~:text=indexPatterns), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/index.tsx#:~:text=indexPatterns) | - | -| | [expression.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/public/alert_types/threshold/expression.tsx#:~:text=fieldFormats) | - | -| | [fetch_search_source_query.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/server/alert_types/es_query/lib/fetch_search_source_query.ts#:~:text=fetch), [rule_type.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/server/alert_types/es_query/rule_type.test.ts#:~:text=fetch), [rule_type.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/stack_alerts/server/alert_types/es_query/rule_type.test.ts#:~:text=fetch) | - | +| | [fetch_search_source_query.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/stack_alerts/server/alert_types/es_query/lib/fetch_search_source_query.ts#:~:text=fetch), [rule_type.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/stack_alerts/server/alert_types/es_query/rule_type.test.ts#:~:text=fetch), [rule_type.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/stack_alerts/server/alert_types/es_query/rule_type.test.ts#:~:text=fetch) | - | +| | [entity_index_expression.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/entity_index_expression.tsx#:~:text=indexPatterns), [boundary_index_expression.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/expressions/boundary_index_expression.tsx#:~:text=indexPatterns), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/index.tsx#:~:text=indexPatterns), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/index.tsx#:~:text=indexPatterns), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/stack_alerts/public/alert_types/geo_containment/query_builder/index.tsx#:~:text=indexPatterns) | - | +| | [expression.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/stack_alerts/public/alert_types/threshold/expression.tsx#:~:text=fieldFormats) | - | +| | [fetch_search_source_query.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/stack_alerts/server/alert_types/es_query/lib/fetch_search_source_query.ts#:~:text=fetch), [rule_type.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/stack_alerts/server/alert_types/es_query/rule_type.test.ts#:~:text=fetch), [rule_type.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/stack_alerts/server/alert_types/es_query/rule_type.test.ts#:~:text=fetch) | - | @@ -634,8 +639,8 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [stderr_logs.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/legacy_uptime/components/synthetics/check_steps/stderr_logs.tsx#:~:text=indexPatternId) | - | -| | [alert_messages.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/alert_messages.tsx#:~:text=RedirectAppLinks), [alert_messages.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/alert_messages.tsx#:~:text=RedirectAppLinks), [alert_messages.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/alert_messages.tsx#:~:text=RedirectAppLinks), [uptime_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/legacy_uptime/app/uptime_app.tsx#:~:text=RedirectAppLinks), [uptime_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/legacy_uptime/app/uptime_app.tsx#:~:text=RedirectAppLinks), [uptime_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/legacy_uptime/app/uptime_app.tsx#:~:text=RedirectAppLinks), [synthetics_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/apps/synthetics/synthetics_app.tsx#:~:text=RedirectAppLinks), [synthetics_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/apps/synthetics/synthetics_app.tsx#:~:text=RedirectAppLinks), [synthetics_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/apps/synthetics/synthetics_app.tsx#:~:text=RedirectAppLinks) | - | +| | [stderr_logs.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/components/synthetics/check_steps/stderr_logs.tsx#:~:text=indexPatternId) | - | +| | [alert_messages.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/alert_messages.tsx#:~:text=RedirectAppLinks), [alert_messages.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/alert_messages.tsx#:~:text=RedirectAppLinks), [alert_messages.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/alert_messages.tsx#:~:text=RedirectAppLinks), [uptime_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/app/uptime_app.tsx#:~:text=RedirectAppLinks), [uptime_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/app/uptime_app.tsx#:~:text=RedirectAppLinks), [uptime_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/app/uptime_app.tsx#:~:text=RedirectAppLinks), [synthetics_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/synthetics_app.tsx#:~:text=RedirectAppLinks), [synthetics_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/synthetics_app.tsx#:~:text=RedirectAppLinks), [synthetics_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/synthetics_app.tsx#:~:text=RedirectAppLinks) | - | @@ -643,7 +648,7 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [license.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/transform/server/services/license.ts#:~:text=license%24) | 8.8.0 | +| | [license.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/server/services/license.ts#:~:text=license%24) | 8.8.0 | @@ -651,9 +656,9 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [query_string_input.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/unified_search/public/query_string_input/query_string_input.tsx#:~:text=indexPatterns) | - | -| | [terms_enum.ts](https://github.com/elastic/kibana/tree/master/src/plugins/unified_search/server/autocomplete/terms_enum.ts#:~:text=getFieldByName), [terms_enum.ts](https://github.com/elastic/kibana/tree/master/src/plugins/unified_search/server/autocomplete/terms_enum.ts#:~:text=getFieldByName), [terms_agg.ts](https://github.com/elastic/kibana/tree/master/src/plugins/unified_search/server/autocomplete/terms_agg.ts#:~:text=getFieldByName), [terms_agg.ts](https://github.com/elastic/kibana/tree/master/src/plugins/unified_search/server/autocomplete/terms_agg.ts#:~:text=getFieldByName) | - | -| | [terms_enum.ts](https://github.com/elastic/kibana/tree/master/src/plugins/unified_search/server/autocomplete/terms_enum.ts#:~:text=findIndexPatternById), [terms_enum.ts](https://github.com/elastic/kibana/tree/master/src/plugins/unified_search/server/autocomplete/terms_enum.ts#:~:text=findIndexPatternById), [terms_agg.ts](https://github.com/elastic/kibana/tree/master/src/plugins/unified_search/server/autocomplete/terms_agg.ts#:~:text=findIndexPatternById), [terms_agg.ts](https://github.com/elastic/kibana/tree/master/src/plugins/unified_search/server/autocomplete/terms_agg.ts#:~:text=findIndexPatternById) | - | +| | [query_string_input.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/unified_search/public/query_string_input/query_string_input.tsx#:~:text=indexPatterns) | - | +| | [terms_enum.ts](https://github.com/elastic/kibana/tree/main/src/plugins/unified_search/server/autocomplete/terms_enum.ts#:~:text=getFieldByName), [terms_enum.ts](https://github.com/elastic/kibana/tree/main/src/plugins/unified_search/server/autocomplete/terms_enum.ts#:~:text=getFieldByName), [terms_agg.ts](https://github.com/elastic/kibana/tree/main/src/plugins/unified_search/server/autocomplete/terms_agg.ts#:~:text=getFieldByName), [terms_agg.ts](https://github.com/elastic/kibana/tree/main/src/plugins/unified_search/server/autocomplete/terms_agg.ts#:~:text=getFieldByName) | - | +| | [terms_enum.ts](https://github.com/elastic/kibana/tree/main/src/plugins/unified_search/server/autocomplete/terms_enum.ts#:~:text=findIndexPatternById), [terms_enum.ts](https://github.com/elastic/kibana/tree/main/src/plugins/unified_search/server/autocomplete/terms_enum.ts#:~:text=findIndexPatternById), [terms_agg.ts](https://github.com/elastic/kibana/tree/main/src/plugins/unified_search/server/autocomplete/terms_agg.ts#:~:text=findIndexPatternById), [terms_agg.ts](https://github.com/elastic/kibana/tree/main/src/plugins/unified_search/server/autocomplete/terms_agg.ts#:~:text=findIndexPatternById) | - | @@ -661,8 +666,8 @@ 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/master/x-pack/plugins/upgrade_assistant/public/shared_imports.ts#:~:text=RedirectAppLinks), [app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/upgrade_assistant/public/application/app.tsx#:~:text=RedirectAppLinks), [app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/upgrade_assistant/public/application/app.tsx#:~:text=RedirectAppLinks), [app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/upgrade_assistant/public/application/app.tsx#:~:text=RedirectAppLinks) | - | -| | [reindex_service.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/upgrade_assistant/server/lib/reindexing/reindex_service.ts#:~:text=license%24), [reindex_service.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/upgrade_assistant/server/lib/reindexing/reindex_service.test.ts#:~:text=license%24), [reindex_service.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/upgrade_assistant/server/lib/reindexing/reindex_service.test.ts#:~:text=license%24) | 8.8.0 | +| | [shared_imports.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/upgrade_assistant/public/shared_imports.ts#:~:text=RedirectAppLinks), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/upgrade_assistant/public/application/app.tsx#:~:text=RedirectAppLinks), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/upgrade_assistant/public/application/app.tsx#:~:text=RedirectAppLinks), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/upgrade_assistant/public/application/app.tsx#:~:text=RedirectAppLinks) | - | +| | [reindex_service.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/upgrade_assistant/server/lib/reindexing/reindex_service.ts#:~:text=license%24), [reindex_service.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/upgrade_assistant/server/lib/reindexing/reindex_service.test.ts#:~:text=license%24), [reindex_service.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/upgrade_assistant/server/lib/reindexing/reindex_service.test.ts#:~:text=license%24) | 8.8.0 | @@ -670,7 +675,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/master/x-pack/plugins/ux/public/application/ux_app.tsx#:~:text=RedirectAppLinks), [ux_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ux/public/application/ux_app.tsx#:~:text=RedirectAppLinks), [ux_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ux/public/application/ux_app.tsx#:~:text=RedirectAppLinks) | - | +| | [ux_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ux/public/application/ux_app.tsx#:~:text=RedirectAppLinks), [ux_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ux/public/application/ux_app.tsx#:~:text=RedirectAppLinks), [ux_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ux/public/application/ux_app.tsx#:~:text=RedirectAppLinks) | - | @@ -678,7 +683,7 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [to_ast.ts](https://github.com/elastic/kibana/tree/master/src/plugins/vis_types/gauge/public/to_ast.ts#:~:text=percentageMode) | - | +| | [to_ast.ts](https://github.com/elastic/kibana/tree/main/src/plugins/vis_types/gauge/public/to_ast.ts#:~:text=percentageMode) | - | @@ -686,8 +691,8 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [to_ast.ts](https://github.com/elastic/kibana/tree/master/src/plugins/vis_types/pie/public/to_ast.ts#:~:text=truncate), [pie.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/vis_types/pie/public/editor/components/pie.tsx#:~:text=truncate) | - | -| | [to_ast.ts](https://github.com/elastic/kibana/tree/master/src/plugins/vis_types/pie/public/to_ast.ts#:~:text=last_level), [pie.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/vis_types/pie/public/editor/components/pie.tsx#:~:text=last_level) | - | +| | [to_ast.ts](https://github.com/elastic/kibana/tree/main/src/plugins/vis_types/pie/public/to_ast.ts#:~:text=truncate), [pie.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/vis_types/pie/public/editor/components/pie.tsx#:~:text=truncate) | - | +| | [to_ast.ts](https://github.com/elastic/kibana/tree/main/src/plugins/vis_types/pie/public/to_ast.ts#:~:text=last_level), [pie.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/vis_types/pie/public/editor/components/pie.tsx#:~:text=last_level) | - | @@ -695,9 +700,9 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [abstract_search_strategy.ts](https://github.com/elastic/kibana/tree/master/src/plugins/vis_types/timeseries/server/lib/search_strategies/strategies/abstract_search_strategy.ts#:~:text=getNonScriptedFields), [fetch_fields.ts](https://github.com/elastic/kibana/tree/master/src/plugins/vis_types/timeseries/public/application/lib/fetch_fields.ts#:~:text=getNonScriptedFields), [abstract_search_strategy.ts](https://github.com/elastic/kibana/tree/master/src/plugins/vis_types/timeseries/server/lib/search_strategies/strategies/abstract_search_strategy.ts#:~:text=getNonScriptedFields), [fetch_fields.ts](https://github.com/elastic/kibana/tree/master/src/plugins/vis_types/timeseries/public/application/lib/fetch_fields.ts#:~:text=getNonScriptedFields) | - | -| | [abstract_search_strategy.ts](https://github.com/elastic/kibana/tree/master/src/plugins/vis_types/timeseries/server/lib/search_strategies/strategies/abstract_search_strategy.ts#:~:text=getNonScriptedFields), [fetch_fields.ts](https://github.com/elastic/kibana/tree/master/src/plugins/vis_types/timeseries/public/application/lib/fetch_fields.ts#:~:text=getNonScriptedFields), [abstract_search_strategy.ts](https://github.com/elastic/kibana/tree/master/src/plugins/vis_types/timeseries/server/lib/search_strategies/strategies/abstract_search_strategy.ts#:~:text=getNonScriptedFields), [fetch_fields.ts](https://github.com/elastic/kibana/tree/master/src/plugins/vis_types/timeseries/public/application/lib/fetch_fields.ts#:~:text=getNonScriptedFields) | - | -| | [abstract_search_strategy.ts](https://github.com/elastic/kibana/tree/master/src/plugins/vis_types/timeseries/server/lib/search_strategies/strategies/abstract_search_strategy.ts#:~:text=getNonScriptedFields), [fetch_fields.ts](https://github.com/elastic/kibana/tree/master/src/plugins/vis_types/timeseries/public/application/lib/fetch_fields.ts#:~:text=getNonScriptedFields) | - | +| | [abstract_search_strategy.ts](https://github.com/elastic/kibana/tree/main/src/plugins/vis_types/timeseries/server/lib/search_strategies/strategies/abstract_search_strategy.ts#:~:text=getNonScriptedFields), [fetch_fields.ts](https://github.com/elastic/kibana/tree/main/src/plugins/vis_types/timeseries/public/application/lib/fetch_fields.ts#:~:text=getNonScriptedFields), [abstract_search_strategy.ts](https://github.com/elastic/kibana/tree/main/src/plugins/vis_types/timeseries/server/lib/search_strategies/strategies/abstract_search_strategy.ts#:~:text=getNonScriptedFields), [fetch_fields.ts](https://github.com/elastic/kibana/tree/main/src/plugins/vis_types/timeseries/public/application/lib/fetch_fields.ts#:~:text=getNonScriptedFields) | - | +| | [abstract_search_strategy.ts](https://github.com/elastic/kibana/tree/main/src/plugins/vis_types/timeseries/server/lib/search_strategies/strategies/abstract_search_strategy.ts#:~:text=getNonScriptedFields), [fetch_fields.ts](https://github.com/elastic/kibana/tree/main/src/plugins/vis_types/timeseries/public/application/lib/fetch_fields.ts#:~:text=getNonScriptedFields), [abstract_search_strategy.ts](https://github.com/elastic/kibana/tree/main/src/plugins/vis_types/timeseries/server/lib/search_strategies/strategies/abstract_search_strategy.ts#:~:text=getNonScriptedFields), [fetch_fields.ts](https://github.com/elastic/kibana/tree/main/src/plugins/vis_types/timeseries/public/application/lib/fetch_fields.ts#:~:text=getNonScriptedFields) | - | +| | [abstract_search_strategy.ts](https://github.com/elastic/kibana/tree/main/src/plugins/vis_types/timeseries/server/lib/search_strategies/strategies/abstract_search_strategy.ts#:~:text=getNonScriptedFields), [fetch_fields.ts](https://github.com/elastic/kibana/tree/main/src/plugins/vis_types/timeseries/public/application/lib/fetch_fields.ts#:~:text=getNonScriptedFields) | - | @@ -705,7 +710,7 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [visualize_top_nav.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/visualize_app/components/visualize_top_nav.tsx#:~:text=onAppLeave), [visualize_editor_common.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/visualize_app/components/visualize_editor_common.tsx#:~:text=onAppLeave), [app.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/visualize_app/app.tsx#:~:text=onAppLeave), [index.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/visualize_app/index.tsx#:~:text=onAppLeave) | 8.8.0 | +| | [visualize_top_nav.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/visualize_app/components/visualize_top_nav.tsx#:~:text=onAppLeave), [visualize_editor_common.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/visualize_app/components/visualize_editor_common.tsx#:~:text=onAppLeave), [app.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/visualize_app/app.tsx#:~:text=onAppLeave), [index.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/visualize_app/index.tsx#:~:text=onAppLeave) | 8.8.0 | @@ -713,4 +718,4 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| -| | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/watcher/public/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/master/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 | \ No newline at end of file diff --git a/api_docs/deprecations_by_team.mdx b/api_docs/deprecations_by_team.mdx index 5bd81a70f0649..3027321eb6245 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana'] --- @@ -16,10 +16,10 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Plugin | Deprecated API | Reference location(s) | Remove By | | --------|-------|-----------|-----------| -| apm | | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/public/plugin.ts#:~:text=environment) | 8.8.0 | -| apm | | [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/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/master/x-pack/plugins/apm/public/context/license/license_context.tsx#:~:text=license%24) | 8.8.0 | -| apm | | [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode), [license_check.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/apm/common/license_check.test.ts#:~:text=mode)+ 2 more | 8.8.0 | +| 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) | 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 | @@ -27,7 +27,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Plugin | Deprecated API | Reference location(s) | Remove By | | --------|-------|-----------|-----------| -| embeddable | | [attribute_service.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx#:~:text=SavedObjectSaveModal), [attribute_service.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx#:~:text=SavedObjectSaveModal) | 8.8.0 | +| embeddable | | [attribute_service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx#:~:text=SavedObjectSaveModal), [attribute_service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx#:~:text=SavedObjectSaveModal) | 8.8.0 | @@ -35,8 +35,8 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Plugin | Deprecated API | Reference location(s) | Remove By | | --------|-------|-----------|-----------| -| discover | | [on_save_search.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/main/components/top_nav/on_save_search.tsx#:~:text=SavedObjectSaveModal), [on_save_search.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/main/components/top_nav/on_save_search.tsx#:~:text=SavedObjectSaveModal), [save_modal.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/components/save_modal.tsx#:~:text=SavedObjectSaveModal), [save_modal.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/public/components/save_modal.tsx#:~:text=SavedObjectSaveModal) | 8.8.0 | -| graph | | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/graph/server/plugin.ts#:~:text=license%24) | 8.8.0 | +| discover | | [on_save_search.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/discover/public/application/main/components/top_nav/on_save_search.tsx#:~:text=SavedObjectSaveModal), [on_save_search.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/discover/public/application/main/components/top_nav/on_save_search.tsx#:~:text=SavedObjectSaveModal), [save_modal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/components/save_modal.tsx#:~:text=SavedObjectSaveModal), [save_modal.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/public/components/save_modal.tsx#:~:text=SavedObjectSaveModal) | 8.8.0 | +| graph | | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/graph/server/plugin.ts#:~:text=license%24) | 8.8.0 | @@ -44,10 +44,10 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Plugin | Deprecated API | Reference location(s) | Remove By | | --------|-------|-----------|-----------| -| fleet | | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/server/plugin.ts#:~:text=disabled) | 8.8.0 | -| fleet | | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/server/plugin.ts#:~:text=disabled) | 8.8.0 | -| fleet | | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/server/plugin.ts#:~:text=disabled) | 8.8.0 | -| fleet | | [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/applications/integrations/index.tsx#:~:text=appBasePath) | 8.8.0 | +| fleet | | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/plugin.ts#:~:text=disabled) | 8.8.0 | +| fleet | | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/plugin.ts#:~:text=disabled) | 8.8.0 | +| fleet | | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/server/plugin.ts#:~:text=disabled) | 8.8.0 | +| fleet | | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/fleet/public/applications/integrations/index.tsx#:~:text=appBasePath) | 8.8.0 | @@ -55,10 +55,10 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Plugin | Deprecated API | Reference location(s) | Remove By | | --------|-------|-----------|-----------| -| maps | | [render_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/render_app.tsx#:~:text=onAppLeave), [map_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/routes/map_page/map_app/map_app.tsx#:~:text=onAppLeave), [map_page.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/public/routes/map_page/map_page.tsx#:~:text=onAppLeave) | 8.8.0 | -| maps | | [saved_object_migrations.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/maps/server/saved_objects/saved_object_migrations.ts#:~:text=warning) | 8.8.0 | -| mapsEms | | [index.ts](https://github.com/elastic/kibana/tree/master/src/plugins/maps_ems/server/index.ts#:~:text=license%24) | 8.8.0 | -| mapsEms | | [index.ts](https://github.com/elastic/kibana/tree/master/src/plugins/maps_ems/server/index.ts#:~:text=refresh) | 8.8.0 | +| maps | | [render_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/public/render_app.tsx#:~:text=onAppLeave), [map_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/public/routes/map_page/map_app/map_app.tsx#:~:text=onAppLeave), [map_page.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/public/routes/map_page/map_page.tsx#:~:text=onAppLeave) | 8.8.0 | +| maps | | [saved_object_migrations.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/maps/server/saved_objects/saved_object_migrations.ts#:~:text=warning) | 8.8.0 | +| mapsEms | | [index.ts](https://github.com/elastic/kibana/tree/main/src/plugins/maps_ems/server/index.ts#:~:text=license%24) | 8.8.0 | +| mapsEms | | [index.ts](https://github.com/elastic/kibana/tree/main/src/plugins/maps_ems/server/index.ts#:~:text=refresh) | 8.8.0 | @@ -66,21 +66,21 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | Plugin | Deprecated API | Reference location(s) | Remove By | | --------|-------|-----------|-----------| -| cloud | | [plugin.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/cloud/public/plugin.tsx#:~:text=environment) | 8.8.0 | -| kibanaOverview | | [application.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/kibana_overview/public/application.tsx#:~:text=appBasePath), [app_container.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/ui/app_container.tsx#:~:text=appBasePath), [application_service.mock.ts](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-mocks/src/application_service.mock.ts#:~:text=appBasePath) | 8.8.0 | -| savedObjectsTaggingOss | | [api.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject), [types.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_tagging_oss/public/decorator/types.ts#:~:text=SavedObject), [types.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_tagging_oss/public/decorator/types.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject) | 8.8.0 | -| @kbn/core-application-browser-internal | | [app_container.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/ui/app_container.tsx#:~:text=onAppLeave), [application_service.mock.ts](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-mocks/src/application_service.mock.ts#:~:text=onAppLeave) | 8.8.0 | -| @kbn/core-application-browser-internal | | [app_container.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/ui/app_container.tsx#:~:text=AppLeaveHandler), [app_container.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/ui/app_container.tsx#:~:text=AppLeaveHandler), [app_router.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/ui/app_router.tsx#:~:text=AppLeaveHandler), [app_router.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/ui/app_router.tsx#:~:text=AppLeaveHandler), [application_leave.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/application_leave.tsx#:~:text=AppLeaveHandler), [application_leave.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/application_leave.tsx#:~:text=AppLeaveHandler), [application_service.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/application_service.tsx#:~:text=AppLeaveHandler), [application_service.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/application_service.tsx#:~:text=AppLeaveHandler), [application_service.tsx](https://github.com/elastic/kibana/tree/master/packages/core/application/core-application-browser-internal/src/application_service.tsx#:~:text=AppLeaveHandler) | 8.8.0 | -| @kbn/core-http-browser-internal | | [http_fetch_error.ts](https://github.com/elastic/kibana/tree/master/packages/core/http/core-http-browser-internal/src/http_fetch_error.ts#:~:text=req), [http_fetch_error.ts](https://github.com/elastic/kibana/tree/master/packages/core/http/core-http-browser-internal/src/http_fetch_error.ts#:~:text=req) | 8.8.0 +| cloud | | [plugin.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/cloud/public/plugin.tsx#:~:text=environment) | 8.8.0 | +| kibanaOverview | | [application.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/kibana_overview/public/application.tsx#:~:text=appBasePath), [app_container.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/ui/app_container.tsx#:~:text=appBasePath), [application_service.mock.ts](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-mocks/src/application_service.mock.ts#:~:text=appBasePath) | 8.8.0 | +| savedObjectsTaggingOss | | [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/types.ts#:~:text=SavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/decorator/types.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/src/plugins/saved_objects_tagging_oss/public/api.ts#:~:text=SavedObject) | 8.8.0 | +| @kbn/core-application-browser-internal | | [app_container.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/ui/app_container.tsx#:~:text=onAppLeave), [application_service.mock.ts](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-mocks/src/application_service.mock.ts#:~:text=onAppLeave) | 8.8.0 | +| @kbn/core-application-browser-internal | | [app_container.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/ui/app_container.tsx#:~:text=AppLeaveHandler), [app_container.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/ui/app_container.tsx#:~:text=AppLeaveHandler), [app_router.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/ui/app_router.tsx#:~:text=AppLeaveHandler), [app_router.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/ui/app_router.tsx#:~:text=AppLeaveHandler), [application_leave.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/application_leave.tsx#:~:text=AppLeaveHandler), [application_leave.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/application_leave.tsx#:~:text=AppLeaveHandler), [application_service.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/application_service.tsx#:~:text=AppLeaveHandler), [application_service.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/application_service.tsx#:~:text=AppLeaveHandler), [application_service.tsx](https://github.com/elastic/kibana/tree/main/packages/core/application/core-application-browser-internal/src/application_service.tsx#:~:text=AppLeaveHandler) | 8.8.0 | +| @kbn/core-http-browser-internal | | [http_fetch_error.ts](https://github.com/elastic/kibana/tree/main/packages/core/http/core-http-browser-internal/src/http_fetch_error.ts#:~:text=req), [http_fetch_error.ts](https://github.com/elastic/kibana/tree/main/packages/core/http/core-http-browser-internal/src/http_fetch_error.ts#:~:text=req) | 8.8.0 Note to maintainers: when looking at usages, mind that typical use could be inside a `catch` block, so TS and code-reference navigation might not highlight them. | -| @kbn/core-http-browser-internal | | [http_fetch_error.ts](https://github.com/elastic/kibana/tree/master/packages/core/http/core-http-browser-internal/src/http_fetch_error.ts#:~:text=res), [http_fetch_error.ts](https://github.com/elastic/kibana/tree/master/packages/core/http/core-http-browser-internal/src/http_fetch_error.ts#:~:text=res) | 8.8.0 +| @kbn/core-http-browser-internal | | [http_fetch_error.ts](https://github.com/elastic/kibana/tree/main/packages/core/http/core-http-browser-internal/src/http_fetch_error.ts#:~:text=res), [http_fetch_error.ts](https://github.com/elastic/kibana/tree/main/packages/core/http/core-http-browser-internal/src/http_fetch_error.ts#:~:text=res) | 8.8.0 Note to maintainers: when looking at usages, mind that typical use could be inside a `catch` block, so TS and code-reference navigation might not highlight them. | -| @kbn/core-saved-objects-migration-server-internal | | [document_migrator.test.ts](https://github.com/elastic/kibana/tree/master/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/document_migrator.test.ts#:~:text=warning), [migration_logger.ts](https://github.com/elastic/kibana/tree/master/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/migration_logger.ts#:~:text=warning) | 8.8.0 | -| @kbn/core-metrics-server-internal | | [ops_metrics_collector.ts](https://github.com/elastic/kibana/tree/master/packages/core/metrics/core-metrics-server-internal/src/ops_metrics_collector.ts#:~:text=process), [get_ops_metrics_log.ts](https://github.com/elastic/kibana/tree/master/packages/core/metrics/core-metrics-server-internal/src/logging/get_ops_metrics_log.ts#:~:text=process), [get_ops_metrics_log.test.ts](https://github.com/elastic/kibana/tree/master/packages/core/metrics/core-metrics-server-internal/src/logging/get_ops_metrics_log.test.ts#:~:text=process) | 8.8.0 | +| @kbn/core-saved-objects-migration-server-internal | | [document_migrator.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/document_migrator.test.ts#:~:text=warning), [migration_logger.ts](https://github.com/elastic/kibana/tree/main/packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/migration_logger.ts#:~:text=warning) | 8.8.0 | +| @kbn/core-metrics-server-internal | | [ops_metrics_collector.ts](https://github.com/elastic/kibana/tree/main/packages/core/metrics/core-metrics-server-internal/src/ops_metrics_collector.ts#:~:text=process), [get_ops_metrics_log.ts](https://github.com/elastic/kibana/tree/main/packages/core/metrics/core-metrics-server-internal/src/logging/get_ops_metrics_log.ts#:~:text=process), [get_ops_metrics_log.test.ts](https://github.com/elastic/kibana/tree/main/packages/core/metrics/core-metrics-server-internal/src/logging/get_ops_metrics_log.test.ts#:~:text=process), [core_usage_data_service.ts](https://github.com/elastic/kibana/tree/main/packages/core/usage-data/core-usage-data-server-internal/src/core_usage_data_service.ts#:~:text=process), [core_usage_data_service.ts](https://github.com/elastic/kibana/tree/main/packages/core/usage-data/core-usage-data-server-internal/src/core_usage_data_service.ts#:~:text=process), [core_usage_data_service.ts](https://github.com/elastic/kibana/tree/main/packages/core/usage-data/core-usage-data-server-internal/src/core_usage_data_service.ts#:~:text=process) | 8.8.0 | @@ -88,11 +88,11 @@ so TS and code-reference navigation might not highlight them. | | Plugin | Deprecated API | Reference location(s) | Remove By | | --------|-------|-----------|-----------| -| dashboard | | [saved_objects.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/services/saved_objects.ts#:~:text=SavedObjectSaveModal), [save_modal.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/top_nav/save_modal.tsx#:~:text=SavedObjectSaveModal), [save_modal.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/top_nav/save_modal.tsx#:~:text=SavedObjectSaveModal), [saved_object_save_modal_dashboard.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/presentation_util/public/components/saved_object_save_modal_dashboard.tsx#:~:text=SavedObjectSaveModal), [saved_object_save_modal_dashboard.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/presentation_util/public/components/saved_object_save_modal_dashboard.tsx#:~:text=SavedObjectSaveModal) | 8.8.0 | -| dashboard | | [saved_object_loader.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/services/saved_object_loader.ts#:~:text=SavedObject), [saved_object_loader.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/services/saved_object_loader.ts#:~:text=SavedObject), [saved_object_loader.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/services/saved_object_loader.ts#:~:text=SavedObject), [saved_objects.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/services/saved_objects.ts#:~:text=SavedObject), [saved_dashboard.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts#:~:text=SavedObject), [saved_dashboard.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts#:~:text=SavedObject), [dashboard_tagging.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/lib/dashboard_tagging.ts#:~:text=SavedObject), [dashboard_tagging.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/lib/dashboard_tagging.ts#:~:text=SavedObject), [clone_panel_action.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/actions/clone_panel_action.tsx#:~:text=SavedObject), [clone_panel_action.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/actions/clone_panel_action.tsx#:~:text=SavedObject)+ 1 more | 8.8.0 | -| dashboard | | [saved_dashboard.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts#:~:text=SavedObjectClass) | 8.8.0 | -| dashboard | | [types.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/types.ts#:~:text=onAppLeave), [dashboard_router.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/application/dashboard_router.tsx#:~:text=onAppLeave), [plugin.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/public/plugin.tsx#:~:text=onAppLeave) | 8.8.0 | -| dashboard | | [migrations_730.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/server/saved_objects/migrations_730.ts#:~:text=warning), [migrations_730.ts](https://github.com/elastic/kibana/tree/master/src/plugins/dashboard/server/saved_objects/migrations_730.ts#:~:text=warning) | 8.8.0 | +| dashboard | | [saved_objects.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/saved_objects.ts#:~:text=SavedObjectSaveModal), [save_modal.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/application/top_nav/save_modal.tsx#:~:text=SavedObjectSaveModal), [save_modal.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/application/top_nav/save_modal.tsx#:~:text=SavedObjectSaveModal), [saved_object_save_modal_dashboard.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/presentation_util/public/components/saved_object_save_modal_dashboard.tsx#:~:text=SavedObjectSaveModal), [saved_object_save_modal_dashboard.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/presentation_util/public/components/saved_object_save_modal_dashboard.tsx#:~:text=SavedObjectSaveModal) | 8.8.0 | +| dashboard | | [saved_object_loader.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/saved_object_loader.ts#:~:text=SavedObject), [saved_object_loader.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/saved_object_loader.ts#:~:text=SavedObject), [saved_object_loader.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/saved_object_loader.ts#:~:text=SavedObject), [saved_objects.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/services/saved_objects.ts#:~:text=SavedObject), [saved_dashboard.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts#:~:text=SavedObject), [saved_dashboard.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts#:~:text=SavedObject), [dashboard_tagging.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/application/lib/dashboard_tagging.ts#:~:text=SavedObject), [dashboard_tagging.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/application/lib/dashboard_tagging.ts#:~:text=SavedObject), [clone_panel_action.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/application/actions/clone_panel_action.tsx#:~:text=SavedObject), [clone_panel_action.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/application/actions/clone_panel_action.tsx#:~:text=SavedObject)+ 1 more | 8.8.0 | +| dashboard | | [saved_dashboard.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/saved_dashboards/saved_dashboard.ts#:~:text=SavedObjectClass) | 8.8.0 | +| dashboard | | [types.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/types.ts#:~:text=onAppLeave), [dashboard_router.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/application/dashboard_router.tsx#:~:text=onAppLeave), [plugin.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/public/plugin.tsx#:~:text=onAppLeave) | 8.8.0 | +| dashboard | | [migrations_730.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/server/saved_objects/migrations_730.ts#:~:text=warning), [migrations_730.ts](https://github.com/elastic/kibana/tree/main/src/plugins/dashboard/server/saved_objects/migrations_730.ts#:~:text=warning) | 8.8.0 | @@ -100,7 +100,7 @@ so TS and code-reference navigation might not highlight them. | | Plugin | Deprecated API | Reference location(s) | Remove By | | --------|-------|-----------|-----------| -| kibanaUsageCollection | | [ops_stats_collector.ts](https://github.com/elastic/kibana/tree/master/src/plugins/kibana_usage_collection/server/collectors/ops_stats/ops_stats_collector.ts#:~:text=process) | 8.8.0 | +| kibanaUsageCollection | | [ops_stats_collector.ts](https://github.com/elastic/kibana/tree/main/src/plugins/kibana_usage_collection/server/collectors/ops_stats/ops_stats_collector.ts#:~:text=process) | 8.8.0 | @@ -108,7 +108,7 @@ so TS and code-reference navigation might not highlight them. | | Plugin | Deprecated API | Reference location(s) | Remove By | | --------|-------|-----------|-----------| -| logstash | | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/logstash/public/plugin.ts#:~:text=license%24) | 8.8.0 | +| logstash | | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/logstash/public/plugin.ts#:~:text=license%24) | 8.8.0 | @@ -116,10 +116,10 @@ so TS and code-reference navigation might not highlight them. | | Plugin | Deprecated API | Reference location(s) | Remove By | | --------|-------|-----------|-----------| -| ml | | [check_license.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/public/application/license/check_license.tsx#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/public/plugin.ts#:~:text=license%24) | 8.8.0 | -| ml | | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/server/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/server/plugin.ts#:~:text=license%24), [license.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/transform/server/services/license.ts#:~:text=license%24) | 8.8.0 | -| ml | | [app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/public/application/app.tsx#:~:text=onAppLeave) | 8.8.0 | -| ml | | [errors.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/common/util/errors/errors.test.ts#:~:text=req), [errors.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/ml/common/util/errors/errors.test.ts#:~:text=req) | 8.8.0 +| ml | | [check_license.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/license/check_license.tsx#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/plugin.ts#:~:text=license%24) | 8.8.0 | +| ml | | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/server/plugin.ts#:~:text=license%24), [license.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/transform/server/services/license.ts#:~:text=license%24) | 8.8.0 | +| ml | | [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/public/application/app.tsx#:~:text=onAppLeave) | 8.8.0 | +| ml | | [errors.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/common/util/errors/errors.test.ts#:~:text=req), [errors.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/ml/common/util/errors/errors.test.ts#:~:text=req) | 8.8.0 Note to maintainers: when looking at usages, mind that typical use could be inside a `catch` block, so TS and code-reference navigation might not highlight them. | @@ -130,25 +130,25 @@ so TS and code-reference navigation might not highlight them. | | Plugin | Deprecated API | Reference location(s) | Remove By | | --------|-------|-----------|-----------| -| spaces | | [on_post_auth_interceptor.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/server/lib/request_interceptors/on_post_auth_interceptor.ts#:~:text=getKibanaFeatures), [spaces_usage_collector.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/server/usage_collection/spaces_usage_collector.ts#:~:text=getKibanaFeatures), [on_post_auth_interceptor.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/server/lib/request_interceptors/on_post_auth_interceptor.test.ts#:~:text=getKibanaFeatures), [app_authorization.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/app_authorization.ts#:~:text=getKibanaFeatures), [privileges.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/privileges/privileges.ts#:~:text=getKibanaFeatures), [authorization_service.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/authorization_service.tsx#:~:text=getKibanaFeatures), [app_authorization.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/app_authorization.test.ts#:~:text=getKibanaFeatures), [privileges.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts#:~:text=getKibanaFeatures), [privileges.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts#:~:text=getKibanaFeatures), [privileges.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts#:~:text=getKibanaFeatures)+ 17 more | 8.8.0 | -| spaces | | [spaces_usage_collector.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/server/usage_collection/spaces_usage_collector.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/server/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/server/plugin.ts#:~:text=license%24), [spaces_usage_collector.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/spaces/server/usage_collection/spaces_usage_collector.test.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/plugin.ts#:~:text=license%24) | 8.8.0 | -| security | | [elasticsearch_role.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [primary_feature_privilege.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/public/management/roles/model/primary_feature_privilege.ts#:~:text=disabled), [elasticsearch_role.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.test.ts#:~:text=disabled), [kibana_features.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/public/management/roles/__fixtures__/kibana_features.ts#:~:text=disabled), [put.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/routes/authorization/roles/put.test.ts#:~:text=disabled), [put_payload.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/routes/authorization/roles/model/put_payload.test.ts#:~:text=disabled) | 8.8.0 | -| security | | [disable_ui_capabilities.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/disable_ui_capabilities.ts#:~:text=requiredRoles) | 8.8.0 +| spaces | | [on_post_auth_interceptor.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/server/lib/request_interceptors/on_post_auth_interceptor.ts#:~:text=getKibanaFeatures), [spaces_usage_collector.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/server/usage_collection/spaces_usage_collector.ts#:~:text=getKibanaFeatures), [on_post_auth_interceptor.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/server/lib/request_interceptors/on_post_auth_interceptor.test.ts#:~:text=getKibanaFeatures), [app_authorization.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/app_authorization.ts#:~:text=getKibanaFeatures), [privileges.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/privileges/privileges.ts#:~:text=getKibanaFeatures), [authorization_service.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/authorization_service.tsx#:~:text=getKibanaFeatures), [app_authorization.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/app_authorization.test.ts#:~:text=getKibanaFeatures), [privileges.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts#:~:text=getKibanaFeatures), [privileges.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts#:~:text=getKibanaFeatures), [privileges.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts#:~:text=getKibanaFeatures)+ 17 more | 8.8.0 | +| spaces | | [spaces_usage_collector.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/server/usage_collection/spaces_usage_collector.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/server/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/server/plugin.ts#:~:text=license%24), [spaces_usage_collector.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/spaces/server/usage_collection/spaces_usage_collector.test.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/plugin.ts#:~:text=license%24) | 8.8.0 | +| security | | [elasticsearch_role.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [primary_feature_privilege.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/public/management/roles/model/primary_feature_privilege.ts#:~:text=disabled), [elasticsearch_role.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.test.ts#:~:text=disabled), [kibana_features.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/public/management/roles/__fixtures__/kibana_features.ts#:~:text=disabled), [put.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/routes/authorization/roles/put.test.ts#:~:text=disabled), [put_payload.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/routes/authorization/roles/model/put_payload.test.ts#:~:text=disabled) | 8.8.0 | +| security | | [disable_ui_capabilities.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/disable_ui_capabilities.ts#:~:text=requiredRoles) | 8.8.0 This is relied on by the reporting feature, and should be removed once reporting migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/issues/19914 | -| security | | [elasticsearch_role.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [primary_feature_privilege.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/public/management/roles/model/primary_feature_privilege.ts#:~:text=disabled), [elasticsearch_role.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.test.ts#:~:text=disabled), [kibana_features.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/public/management/roles/__fixtures__/kibana_features.ts#:~:text=disabled), [put.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/routes/authorization/roles/put.test.ts#:~:text=disabled), [put_payload.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/routes/authorization/roles/model/put_payload.test.ts#:~:text=disabled) | 8.8.0 | -| security | | [elasticsearch_role.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [primary_feature_privilege.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/public/management/roles/model/primary_feature_privilege.ts#:~:text=disabled), [elasticsearch_role.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.test.ts#:~:text=disabled), [kibana_features.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/public/management/roles/__fixtures__/kibana_features.ts#:~:text=disabled), [put.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/routes/authorization/roles/put.test.ts#:~:text=disabled), [put_payload.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/routes/authorization/roles/model/put_payload.test.ts#:~:text=disabled) | 8.8.0 | -| security | | [disable_ui_capabilities.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/disable_ui_capabilities.ts#:~:text=requiredRoles) | 8.8.0 +| security | | [elasticsearch_role.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [primary_feature_privilege.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/public/management/roles/model/primary_feature_privilege.ts#:~:text=disabled), [elasticsearch_role.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.test.ts#:~:text=disabled), [kibana_features.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/public/management/roles/__fixtures__/kibana_features.ts#:~:text=disabled), [put.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/routes/authorization/roles/put.test.ts#:~:text=disabled), [put_payload.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/routes/authorization/roles/model/put_payload.test.ts#:~:text=disabled) | 8.8.0 | +| security | | [elasticsearch_role.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [role_utils.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/lib/role_utils.ts#:~:text=disabled), [primary_feature_privilege.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/public/management/roles/model/primary_feature_privilege.ts#:~:text=disabled), [elasticsearch_role.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/roles/elasticsearch_role.test.ts#:~:text=disabled), [kibana_features.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/public/management/roles/__fixtures__/kibana_features.ts#:~:text=disabled), [put.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/routes/authorization/roles/put.test.ts#:~:text=disabled), [put_payload.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/routes/authorization/roles/model/put_payload.test.ts#:~:text=disabled) | 8.8.0 | +| security | | [disable_ui_capabilities.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/disable_ui_capabilities.ts#:~:text=requiredRoles) | 8.8.0 This is relied on by the reporting feature, and should be removed once reporting migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/issues/19914 | -| security | | [authorization_service.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/server/authorization/authorization_service.tsx#:~:text=getElasticsearchFeatures) | 8.8.0 | -| security | | [license_service.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/common/licensing/license_service.test.ts#:~:text=mode), [license_service.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/common/licensing/license_service.test.ts#:~:text=mode) | 8.8.0 | -| security | | [plugin.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/public/plugin.tsx#:~:text=license%24) | 8.8.0 | -| security | | [license_service.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/common/licensing/license_service.test.ts#:~:text=mode), [license_service.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/common/licensing/license_service.test.ts#:~:text=mode) | 8.8.0 | -| security | | [logout_app.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/public/authentication/logout/logout_app.test.ts#:~:text=appBasePath) | 8.8.0 | -| security | | [logout_app.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security/public/authentication/logout/logout_app.test.ts#:~:text=onAppLeave) | 8.8.0 | +| security | | [authorization_service.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/server/authorization/authorization_service.tsx#:~:text=getElasticsearchFeatures) | 8.8.0 | +| security | | [license_service.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/common/licensing/license_service.test.ts#:~:text=mode), [license_service.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/common/licensing/license_service.test.ts#:~:text=mode) | 8.8.0 | +| security | | [plugin.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/public/plugin.tsx#:~:text=license%24) | 8.8.0 | +| security | | [license_service.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/common/licensing/license_service.test.ts#:~:text=mode), [license_service.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/common/licensing/license_service.test.ts#:~:text=mode) | 8.8.0 | +| security | | [logout_app.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/public/authentication/logout/logout_app.test.ts#:~:text=appBasePath) | 8.8.0 | +| security | | [logout_app.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security/public/authentication/logout/logout_app.test.ts#:~:text=onAppLeave) | 8.8.0 | @@ -156,8 +156,8 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | Plugin | Deprecated API | Reference location(s) | Remove By | | --------|-------|-----------|-----------| -| alerting | | [plugin.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/plugin.test.ts#:~:text=getKibanaFeatures) | 8.8.0 | -| alerting | | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/plugin.ts#:~:text=license%24), [license_state.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/license_state.test.ts#:~:text=license%24), [license_state.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/alerting/server/lib/license_state.test.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/actions/server/plugin.ts#:~:text=license%24), [license_state.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/actions/server/lib/license_state.test.ts#:~:text=license%24), [license_state.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/actions/server/lib/license_state.test.ts#:~:text=license%24) | 8.8.0 | +| alerting | | [plugin.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/plugin.test.ts#:~:text=getKibanaFeatures) | 8.8.0 | +| alerting | | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/plugin.ts#:~:text=license%24), [license_state.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/license_state.test.ts#:~:text=license%24), [license_state.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/alerting/server/lib/license_state.test.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/plugin.ts#:~:text=license%24), [license_state.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/lib/license_state.test.ts#:~:text=license%24), [license_state.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/actions/server/lib/license_state.test.ts#:~:text=license%24) | 8.8.0 | @@ -165,10 +165,10 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | Plugin | Deprecated API | Reference location(s) | Remove By | | --------|-------|-----------|-----------| -| securitySolution | | [policy_config.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [license_watch.test.ts](https://github.com/elastic/kibana/tree/master/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/master/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/master/x-pack/plugins/security_solution/server/endpoint/lib/policy/license_watch.test.ts#:~:text=mode), [list.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/endpoint/routes/actions/list.test.ts#:~:text=mode), [response_actions.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/endpoint/routes/actions/response_actions.test.ts#:~:text=mode)+ 3 more | 8.8.0 | -| securitySolution | | [policy_config.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [license_watch.test.ts](https://github.com/elastic/kibana/tree/master/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/master/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/master/x-pack/plugins/security_solution/server/endpoint/lib/policy/license_watch.test.ts#:~:text=mode), [list.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/endpoint/routes/actions/list.test.ts#:~:text=mode), [response_actions.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/endpoint/routes/actions/response_actions.test.ts#:~:text=mode)+ 3 more | 8.8.0 | -| securitySolution | | [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/index.tsx#:~:text=onAppLeave), [plugin.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/plugin.tsx#:~:text=onAppLeave) | 8.8.0 | -| securitySolution | | [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/components/flyout/index.tsx#:~:text=AppLeaveHandler), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/components/flyout/index.tsx#:~:text=AppLeaveHandler), [types.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/types.ts#:~:text=AppLeaveHandler), [types.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/types.ts#:~:text=AppLeaveHandler), [routes.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/routes.tsx#:~:text=AppLeaveHandler), [routes.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/routes.tsx#:~:text=AppLeaveHandler), [app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/app.tsx#:~:text=AppLeaveHandler), [app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/app.tsx#:~:text=AppLeaveHandler), [app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/app/app.tsx#:~:text=AppLeaveHandler) | 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), [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), [list.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/routes/actions/list.test.ts#:~:text=mode), [response_actions.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/routes/actions/response_actions.test.ts#:~:text=mode)+ 3 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), [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), [list.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/routes/actions/list.test.ts#:~:text=mode), [response_actions.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/endpoint/routes/actions/response_actions.test.ts#:~:text=mode)+ 3 more | 8.8.0 | +| securitySolution | | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/app/index.tsx#:~:text=onAppLeave), [plugin.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/plugin.tsx#:~:text=onAppLeave) | 8.8.0 | +| securitySolution | | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/timelines/components/flyout/index.tsx#:~:text=AppLeaveHandler), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/timelines/components/flyout/index.tsx#:~:text=AppLeaveHandler), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/types.ts#:~:text=AppLeaveHandler), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/types.ts#:~:text=AppLeaveHandler), [routes.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/app/routes.tsx#:~:text=AppLeaveHandler), [routes.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/app/routes.tsx#:~:text=AppLeaveHandler), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/app/app.tsx#:~:text=AppLeaveHandler), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/app/app.tsx#:~:text=AppLeaveHandler), [app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/app/app.tsx#:~:text=AppLeaveHandler) | 8.8.0 | @@ -176,8 +176,8 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | Plugin | Deprecated API | Reference location(s) | Remove By | | --------|-------|-----------|-----------| -| indexLifecycleManagement | | [license.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/index_lifecycle_management/server/services/license.ts#:~:text=license%24), [reindex_service.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/upgrade_assistant/server/lib/reindexing/reindex_service.ts#:~:text=license%24), [reindex_service.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/upgrade_assistant/server/lib/reindexing/reindex_service.test.ts#:~:text=license%24), [reindex_service.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/upgrade_assistant/server/lib/reindexing/reindex_service.test.ts#:~:text=license%24), [license.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/painless_lab/server/services/license.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/searchprofiler/server/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/remote_clusters/server/plugin.ts#:~:text=license%24), [license.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/rollup/server/services/license.ts#:~:text=license%24), [license.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/snapshot_restore/server/services/license.ts#:~:text=license%24) | 8.8.0 | -| licenseManagement | | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/license_management/public/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/cross_cluster_replication/public/plugin.ts#:~:text=license%24), [plugin.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/painless_lab/public/plugin.tsx#:~:text=license%24), [plugin.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/painless_lab/public/plugin.tsx#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/searchprofiler/public/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/searchprofiler/public/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/watcher/public/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/watcher/public/plugin.ts#:~:text=license%24) | 8.8.0 | +| indexLifecycleManagement | | [license.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/index_lifecycle_management/server/services/license.ts#:~:text=license%24), [reindex_service.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/upgrade_assistant/server/lib/reindexing/reindex_service.ts#:~:text=license%24), [reindex_service.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/upgrade_assistant/server/lib/reindexing/reindex_service.test.ts#:~:text=license%24), [reindex_service.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/upgrade_assistant/server/lib/reindexing/reindex_service.test.ts#:~:text=license%24), [license.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/painless_lab/server/services/license.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/searchprofiler/server/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/remote_clusters/server/plugin.ts#:~:text=license%24), [license.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/rollup/server/services/license.ts#:~:text=license%24), [license.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/snapshot_restore/server/services/license.ts#:~:text=license%24) | 8.8.0 | +| licenseManagement | | [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/license_management/public/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/cross_cluster_replication/public/plugin.ts#:~:text=license%24), [plugin.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/painless_lab/public/plugin.tsx#:~:text=license%24), [plugin.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/painless_lab/public/plugin.tsx#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/searchprofiler/public/plugin.ts#:~:text=license%24), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/searchprofiler/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), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/watcher/public/plugin.ts#:~:text=license%24) | 8.8.0 | @@ -185,7 +185,7 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | Plugin | Deprecated API | Reference location(s) | Remove By | | --------|-------|-----------|-----------| -| monitoring | | [bulk_uploader.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/monitoring/server/kibana_monitoring/bulk_uploader.ts#:~:text=process) | 8.8.0 | +| monitoring | | [bulk_uploader.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/monitoring/server/kibana_monitoring/bulk_uploader.ts#:~:text=process) | 8.8.0 | @@ -193,5 +193,5 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/ | Plugin | Deprecated API | Reference location(s) | Remove By | | --------|-------|-----------|-----------| -| lens | | [types.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/app_plugin/types.ts#:~:text=onAppLeave), [types.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/app_plugin/types.ts#:~:text=onAppLeave), [mounter.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/app_plugin/mounter.tsx#:~:text=onAppLeave), [visualize_top_nav.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/visualize_app/components/visualize_top_nav.tsx#:~:text=onAppLeave), [visualize_editor_common.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/visualize_app/components/visualize_editor_common.tsx#:~:text=onAppLeave), [app.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/visualize_app/app.tsx#:~:text=onAppLeave), [index.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/visualize_app/index.tsx#:~:text=onAppLeave) | 8.8.0 | -| management | | [application.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/management/public/application.tsx#:~:text=appBasePath) | 8.8.0 | \ No newline at end of file +| lens | | [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/app_plugin/types.ts#:~:text=onAppLeave), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/app_plugin/types.ts#:~:text=onAppLeave), [mounter.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/app_plugin/mounter.tsx#:~:text=onAppLeave), [visualize_top_nav.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/visualize_app/components/visualize_top_nav.tsx#:~:text=onAppLeave), [visualize_editor_common.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/visualize_app/components/visualize_editor_common.tsx#:~:text=onAppLeave), [app.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/visualize_app/app.tsx#:~:text=onAppLeave), [index.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/visualizations/public/visualize_app/index.tsx#:~:text=onAppLeave) | 8.8.0 | +| management | | [application.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/management/public/application.tsx#:~:text=appBasePath) | 8.8.0 | \ No newline at end of file diff --git a/api_docs/dev_tools.devdocs.json b/api_docs/dev_tools.devdocs.json index 4584d740db125..93dccb6ebc55f 100644 --- a/api_docs/dev_tools.devdocs.json +++ b/api_docs/dev_tools.devdocs.json @@ -37,6 +37,7 @@ ], "path": "src/plugins/dev_tools/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "devTools", @@ -62,6 +63,7 @@ ], "path": "src/plugins/dev_tools/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "devTools", @@ -82,6 +84,7 @@ ], "path": "src/plugins/dev_tools/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -93,6 +96,7 @@ "description": [], "path": "src/plugins/dev_tools/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "devTools", @@ -105,7 +109,8 @@ "{ forwardApp: (legacyAppId: string, newAppId: string, rewritePath?: ((legacyPath: string) => string) | undefined) => void; }" ], "path": "src/plugins/dev_tools/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -124,6 +129,7 @@ ], "path": "src/plugins/dev_tools/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -139,6 +145,7 @@ ], "path": "src/plugins/dev_tools/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -160,6 +167,7 @@ "description": [], "path": "src/plugins/dev_tools/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "devTools", @@ -178,6 +186,7 @@ ], "path": "src/plugins/dev_tools/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "devTools", @@ -193,6 +202,7 @@ ], "path": "src/plugins/dev_tools/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/dev_tools.mdx b/api_docs/dev_tools.mdx index cd20de4016f66..7152c3dbc6e48 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: 2022-09-05 +date: 2022-09-08 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 26647daf615d6..87e0d53a57078 100644 --- a/api_docs/discover.devdocs.json +++ b/api_docs/discover.devdocs.json @@ -23,6 +23,7 @@ ], "path": "src/plugins/saved_search/public/services/saved_searches/get_saved_searches.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discover", @@ -36,6 +37,7 @@ ], "path": "src/plugins/saved_search/public/services/saved_searches/get_saved_searches.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -50,6 +52,7 @@ ], "path": "src/plugins/saved_search/public/services/saved_searches/get_saved_searches.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -68,6 +71,7 @@ ], "path": "src/plugins/saved_search/common/saved_searches_url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discover", @@ -81,6 +85,7 @@ ], "path": "src/plugins/saved_search/common/saved_searches_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -99,6 +104,7 @@ ], "path": "src/plugins/saved_search/common/saved_searches_url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discover", @@ -112,6 +118,7 @@ ], "path": "src/plugins/saved_search/common/saved_searches_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -138,6 +145,7 @@ ], "path": "src/plugins/saved_search/public/services/saved_searches/saved_searches_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discover", @@ -157,6 +165,7 @@ ], "path": "src/plugins/saved_search/public/services/saved_searches/saved_searches_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -177,6 +186,7 @@ ], "path": "src/plugins/discover/public/utils/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -201,6 +211,7 @@ ], "path": "src/plugins/saved_search/public/services/saved_searches/saved_searches_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discover", @@ -220,6 +231,7 @@ ], "path": "src/plugins/saved_search/public/services/saved_searches/saved_searches_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -248,6 +260,7 @@ ], "path": "src/plugins/discover/public/locator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discover", @@ -262,7 +275,8 @@ "string | undefined" ], "path": "src/plugins/discover/public/locator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -277,7 +291,8 @@ "string | undefined" ], "path": "src/plugins/discover/public/locator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -295,6 +310,7 @@ ], "path": "src/plugins/discover/public/locator.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "lens", @@ -360,7 +376,8 @@ " | undefined" ], "path": "src/plugins/discover/public/locator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -385,7 +402,8 @@ ") | undefined" ], "path": "src/plugins/discover/public/locator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -401,7 +419,8 @@ "[] | undefined" ], "path": "src/plugins/discover/public/locator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -419,7 +438,8 @@ " | undefined" ], "path": "src/plugins/discover/public/locator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -434,7 +454,8 @@ "boolean | undefined" ], "path": "src/plugins/discover/public/locator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -449,7 +470,8 @@ "string | undefined" ], "path": "src/plugins/discover/public/locator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -464,7 +486,8 @@ "string[] | undefined" ], "path": "src/plugins/discover/public/locator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -479,7 +502,8 @@ "string | undefined" ], "path": "src/plugins/discover/public/locator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -494,7 +518,8 @@ "string[][] | undefined" ], "path": "src/plugins/discover/public/locator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -509,7 +534,8 @@ "string | undefined" ], "path": "src/plugins/discover/public/locator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -531,7 +557,8 @@ " | undefined" ], "path": "src/plugins/discover/public/locator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -546,7 +573,8 @@ "boolean | undefined" ], "path": "src/plugins/discover/public/locator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -560,6 +588,7 @@ "description": [], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discover", @@ -580,7 +609,8 @@ "> | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -594,6 +624,7 @@ "description": [], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discover", @@ -606,7 +637,8 @@ "number | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -648,6 +680,7 @@ ], "path": "src/plugins/discover/public/embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discover", @@ -668,6 +701,7 @@ ], "path": "src/plugins/discover/public/embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -683,6 +717,7 @@ "description": [], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discover", @@ -917,7 +952,8 @@ "; parseActiveIndexPatternFromQueryString: (queryString: string) => string[]; }" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -930,7 +966,8 @@ "string | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -943,7 +980,8 @@ "string | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -957,7 +995,8 @@ "[] | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -970,7 +1009,8 @@ "string[] | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -983,7 +1023,8 @@ "string | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -996,7 +1037,8 @@ "string[] | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -1017,7 +1059,8 @@ "> | undefined; } | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -1030,7 +1073,8 @@ "boolean | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -1043,7 +1087,8 @@ "{ outcome?: \"exactMatch\" | \"aliasMatch\" | \"conflict\" | undefined; aliasTargetId?: string | undefined; aliasPurpose?: \"savedObjectConversion\" | \"savedObjectImport\" | undefined; errorJSON?: string | undefined; } | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -1063,7 +1108,8 @@ " | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -1076,7 +1122,8 @@ "boolean | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -1089,7 +1136,8 @@ "number | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -1102,7 +1150,8 @@ "boolean | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -1115,7 +1164,8 @@ "boolean | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -1135,7 +1185,8 @@ " | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -1155,7 +1206,8 @@ " | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -1168,7 +1220,8 @@ "number | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1199,6 +1252,7 @@ ], "path": "src/plugins/discover/public/embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discover", @@ -1211,7 +1265,22 @@ "{ from: string; to: string; mode?: \"absolute\" | \"relative\" | undefined; }" ], "path": "src/plugins/discover/public/embeddable/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "discover", + "id": "def-public.SearchInput.timeslice", + "type": "Object", + "tags": [], + "label": "timeslice", + "description": [], + "signature": [ + "[number, number] | undefined" + ], + "path": "src/plugins/discover/public/embeddable/types.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -1225,7 +1294,8 @@ " | undefined" ], "path": "src/plugins/discover/public/embeddable/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -1239,7 +1309,8 @@ "[] | undefined" ], "path": "src/plugins/discover/public/embeddable/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -1252,7 +1323,8 @@ "boolean | undefined" ], "path": "src/plugins/discover/public/embeddable/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -1265,7 +1337,8 @@ "string[] | undefined" ], "path": "src/plugins/discover/public/embeddable/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -1279,7 +1352,8 @@ "[] | undefined" ], "path": "src/plugins/discover/public/embeddable/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -1292,7 +1366,8 @@ "number | undefined" ], "path": "src/plugins/discover/public/embeddable/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -1305,7 +1380,8 @@ "number | undefined" ], "path": "src/plugins/discover/public/embeddable/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1321,6 +1397,7 @@ "description": [], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1337,6 +1414,7 @@ ], "path": "src/plugins/discover/public/locator.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1366,6 +1444,7 @@ ], "path": "src/plugins/discover/public/locator.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1380,6 +1459,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1393,6 +1473,7 @@ "description": [], "path": "src/plugins/discover/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discover", @@ -1409,7 +1490,8 @@ "): void; }" ], "path": "src/plugins/discover/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discover", @@ -1431,7 +1513,8 @@ " | undefined" ], "path": "src/plugins/discover/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -1446,6 +1529,7 @@ "description": [], "path": "src/plugins/discover/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discover", @@ -1467,7 +1551,8 @@ " | undefined" ], "path": "src/plugins/discover/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", @@ -1500,6 +1585,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1514,6 +1600,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1528,6 +1615,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1542,6 +1630,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1556,6 +1645,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1570,6 +1660,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1584,6 +1675,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1598,6 +1690,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1612,6 +1705,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1626,6 +1720,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1640,6 +1735,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1654,6 +1750,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1668,6 +1765,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1682,6 +1780,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1696,6 +1795,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1710,6 +1810,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1724,6 +1825,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1738,6 +1840,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1752,6 +1855,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1766,6 +1870,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1780,6 +1885,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1794,6 +1900,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1808,6 +1915,7 @@ ], "path": "src/plugins/discover/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/discover.mdx b/api_docs/discover.mdx index becc1a323b489..1964aab8a60e7 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'discover'] --- import discoverObj from './discover.devdocs.json'; @@ -21,7 +21,7 @@ Contact [Data Discovery](https://github.com/orgs/elastic/teams/kibana-data-disco | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 94 | 0 | 77 | 4 | +| 95 | 0 | 78 | 4 | ## Client diff --git a/api_docs/discover_enhanced.devdocs.json b/api_docs/discover_enhanced.devdocs.json index 6b305f6cc1d6a..1157e6df86988 100644 --- a/api_docs/discover_enhanced.devdocs.json +++ b/api_docs/discover_enhanced.devdocs.json @@ -45,6 +45,7 @@ ], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discoverEnhanced", @@ -63,7 +64,8 @@ } ], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discoverEnhanced", @@ -77,6 +79,7 @@ ], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discoverEnhanced", @@ -97,6 +100,7 @@ ], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -138,6 +142,7 @@ ], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discoverEnhanced", @@ -166,6 +171,7 @@ ], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -186,6 +192,7 @@ ], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -219,6 +226,7 @@ ], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discoverEnhanced", @@ -238,6 +246,7 @@ ], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -258,6 +267,7 @@ ], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -275,6 +285,7 @@ ], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -316,6 +327,7 @@ ], "path": "x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_chart_action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discoverEnhanced", @@ -328,7 +340,8 @@ "\"ACTION_EXPLORE_DATA_CHART\"" ], "path": "x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_chart_action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discoverEnhanced", @@ -341,7 +354,8 @@ "\"ACTION_EXPLORE_DATA_CHART\"" ], "path": "x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_chart_action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discoverEnhanced", @@ -354,7 +368,8 @@ "200" ], "path": "x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_chart_action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discoverEnhanced", @@ -370,6 +385,7 @@ ], "path": "x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_chart_action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discoverEnhanced", @@ -383,6 +399,7 @@ ], "path": "x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_chart_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -404,6 +421,7 @@ ], "path": "x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_chart_action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discoverEnhanced", @@ -417,6 +435,7 @@ ], "path": "x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_chart_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -456,6 +475,7 @@ ], "path": "x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_context_menu_action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discoverEnhanced", @@ -468,7 +488,8 @@ "\"ACTION_EXPLORE_DATA\"" ], "path": "x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_context_menu_action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discoverEnhanced", @@ -481,7 +502,8 @@ "\"ACTION_EXPLORE_DATA\"" ], "path": "x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_context_menu_action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discoverEnhanced", @@ -494,7 +516,8 @@ "200" ], "path": "x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_context_menu_action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discoverEnhanced", @@ -510,6 +533,7 @@ ], "path": "x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_context_menu_action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discoverEnhanced", @@ -523,6 +547,7 @@ ], "path": "x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_context_menu_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -543,6 +568,7 @@ "description": [], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discoverEnhanced", @@ -561,7 +587,8 @@ } ], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discoverEnhanced", @@ -580,7 +607,8 @@ } ], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discoverEnhanced", @@ -600,7 +628,8 @@ " | undefined" ], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discoverEnhanced", @@ -647,7 +676,8 @@ ") => void; readonly unregisterAction: (actionId: string) => void; }" ], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -661,6 +691,7 @@ "description": [], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discoverEnhanced", @@ -679,7 +710,8 @@ } ], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discoverEnhanced", @@ -698,7 +730,8 @@ } ], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discoverEnhanced", @@ -718,7 +751,8 @@ " | undefined" ], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "discoverEnhanced", @@ -809,7 +843,8 @@ "; }" ], "path": "x-pack/plugins/discover_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -840,6 +875,7 @@ "description": [], "path": "x-pack/plugins/discover_enhanced/common/config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "discoverEnhanced", @@ -852,7 +888,8 @@ "{ exploreDataInChart: { enabled: boolean; }; exploreDataInContextMenu: { enabled: boolean; }; }" ], "path": "x-pack/plugins/discover_enhanced/common/config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/discover_enhanced.mdx b/api_docs/discover_enhanced.mdx index a2d7a07ae49a5..5811b914930df 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'discoverEnhanced'] --- import discoverEnhancedObj from './discover_enhanced.devdocs.json'; diff --git a/api_docs/embeddable.devdocs.json b/api_docs/embeddable.devdocs.json index 8c4eb685a096d..939fe8507b095 100644 --- a/api_docs/embeddable.devdocs.json +++ b/api_docs/embeddable.devdocs.json @@ -29,6 +29,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -41,7 +42,8 @@ "\"ACTION_ADD_PANEL\"" ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -54,7 +56,8 @@ "\"ACTION_ADD_PANEL\"" ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -68,6 +71,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -139,6 +143,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -203,6 +208,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -217,6 +223,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -231,6 +238,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -245,6 +253,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -259,6 +268,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -273,6 +283,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -290,6 +301,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -305,6 +317,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -328,6 +341,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -348,6 +362,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -373,6 +388,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -393,6 +409,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -420,6 +437,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -433,6 +451,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -446,6 +465,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -460,6 +480,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -474,6 +495,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -488,6 +510,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -503,6 +526,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -567,6 +591,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -586,6 +611,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -599,6 +625,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -616,6 +643,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -629,6 +657,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -643,6 +672,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -657,6 +687,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -674,6 +705,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -687,6 +719,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -704,6 +737,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -717,6 +751,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -734,6 +769,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -747,6 +783,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -761,6 +798,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -804,6 +842,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -813,7 +852,8 @@ "label": "isContainer", "description": [], "path": "src/plugins/embeddable/public/lib/containers/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -824,6 +864,7 @@ "description": [], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -838,6 +879,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -851,6 +893,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -865,6 +908,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -937,6 +981,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -974,6 +1019,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -995,6 +1041,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1036,6 +1083,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -1072,6 +1120,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1105,6 +1154,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -1118,6 +1168,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1132,6 +1183,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1149,6 +1201,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1220,6 +1273,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -1233,6 +1287,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1247,6 +1302,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1312,6 +1368,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -1325,6 +1382,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1339,6 +1397,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1353,6 +1412,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1370,6 +1430,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -1383,6 +1444,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1418,6 +1480,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -1431,6 +1494,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1448,6 +1512,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1487,6 +1552,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -1500,6 +1566,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1533,6 +1600,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -1546,11 +1614,30 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], "returnComment": [] }, + { + "parentPluginId": "embeddable", + "id": "def-public.Container.getAnyChildOutputChange$", + "type": "Function", + "tags": [], + "label": "getAnyChildOutputChange$", + "description": [], + "signature": [ + "() => ", + "Observable", + "" + ], + "path": "src/plugins/embeddable/public/lib/containers/container.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [] + }, { "parentPluginId": "embeddable", "id": "def-public.Container.destroy", @@ -1563,6 +1650,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1610,6 +1698,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -1623,6 +1712,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1640,6 +1730,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -1653,6 +1744,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1704,6 +1796,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -1726,6 +1819,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1740,6 +1834,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1781,6 +1876,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -1794,6 +1890,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1813,6 +1910,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -1826,6 +1924,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1861,6 +1960,7 @@ ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -1873,7 +1973,8 @@ "\"editPanel\"" ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -1886,7 +1987,8 @@ "\"editPanel\"" ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -1896,7 +1998,8 @@ "label": "order", "description": [], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -1909,7 +2012,8 @@ "string | undefined" ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -1923,6 +2027,7 @@ ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -1994,6 +2099,7 @@ ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2008,6 +2114,7 @@ ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2029,6 +2136,7 @@ ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2043,6 +2151,7 @@ ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2060,6 +2169,7 @@ ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -2073,6 +2183,7 @@ ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2090,6 +2201,7 @@ ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2105,6 +2217,7 @@ ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -2118,6 +2231,7 @@ ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2135,6 +2249,7 @@ ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -2148,6 +2263,7 @@ ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2165,6 +2281,7 @@ ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -2178,6 +2295,7 @@ ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2195,6 +2313,7 @@ ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -2208,6 +2327,7 @@ ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2243,6 +2363,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -2252,7 +2373,8 @@ "label": "runtimeId", "description": [], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -2262,7 +2384,8 @@ "label": "runtimeId", "description": [], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -2298,7 +2421,8 @@ "> | undefined" ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -2308,7 +2432,8 @@ "label": "isContainer", "description": [], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -2318,7 +2443,8 @@ "label": "deferEmbeddableLoad", "description": [], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -2328,7 +2454,8 @@ "label": "type", "description": [], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -2338,7 +2465,8 @@ "label": "id", "description": [], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -2351,7 +2479,8 @@ "Error | undefined" ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -2364,7 +2493,8 @@ "TEmbeddableOutput" ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -2377,7 +2507,8 @@ "TEmbeddableInput" ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -2396,7 +2527,8 @@ } ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -2406,7 +2538,8 @@ "label": "destroyed", "description": [], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -2420,6 +2553,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -2433,6 +2567,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2447,6 +2582,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2484,6 +2620,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2501,6 +2638,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2516,6 +2654,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2555,6 +2694,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2572,6 +2712,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2591,6 +2732,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2608,6 +2750,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2625,6 +2768,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2640,6 +2784,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2655,6 +2800,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -2668,6 +2814,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2685,6 +2832,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2700,6 +2848,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2715,6 +2864,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2730,6 +2880,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2795,6 +2946,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2810,6 +2962,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -2823,6 +2976,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2840,6 +2994,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -2853,6 +3008,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2882,6 +3038,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "Inspector adapters that will be used to open an inspector for." @@ -2901,6 +3058,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2918,6 +3076,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2933,6 +3092,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -2946,6 +3106,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2963,6 +3124,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -2976,6 +3138,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2993,6 +3156,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -3028,6 +3192,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3037,7 +3202,8 @@ "label": "mounted", "description": [], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -3080,7 +3246,8 @@ } ], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -3094,6 +3261,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3113,6 +3281,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3130,6 +3299,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3145,6 +3315,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3160,6 +3331,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -3185,6 +3357,7 @@ ], "path": "src/plugins/embeddable/public/lib/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3194,7 +3367,8 @@ "label": "code", "description": [], "path": "src/plugins/embeddable/public/lib/errors.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -3208,6 +3382,7 @@ ], "path": "src/plugins/embeddable/public/lib/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3221,6 +3396,7 @@ ], "path": "src/plugins/embeddable/public/lib/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3248,6 +3424,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3261,6 +3438,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3274,6 +3452,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3291,6 +3470,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3304,6 +3484,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3318,6 +3499,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3335,6 +3517,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3350,6 +3533,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3365,6 +3549,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3378,6 +3563,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3395,6 +3581,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3408,6 +3595,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3425,6 +3613,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3440,6 +3629,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3455,6 +3645,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -3480,6 +3671,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_root.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3493,6 +3685,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_root.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3506,6 +3699,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_root.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3523,6 +3717,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_root.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3538,6 +3733,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_root.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3551,6 +3747,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_root.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3568,6 +3765,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_root.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3581,6 +3779,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_root.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3598,6 +3797,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_root.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -3615,6 +3815,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3624,7 +3825,8 @@ "label": "isTransferInProgress", "description": [], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -3638,6 +3840,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3653,6 +3856,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3668,6 +3872,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3684,6 +3889,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -3705,6 +3911,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3724,6 +3931,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3739,6 +3947,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3766,6 +3975,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3781,6 +3991,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3797,6 +4008,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3816,6 +4028,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3831,6 +4044,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3858,6 +4072,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3873,6 +4088,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3889,6 +4105,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3916,6 +4133,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3929,6 +4147,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3940,6 +4159,7 @@ "description": [], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -3952,7 +4172,8 @@ "string | undefined" ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -3965,7 +4186,8 @@ "boolean | undefined" ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -3978,7 +4200,8 @@ "boolean | undefined" ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -3997,7 +4220,8 @@ } ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -4026,6 +4250,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -4039,6 +4264,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4050,6 +4276,7 @@ "description": [], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -4062,7 +4289,8 @@ "string | undefined" ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -4081,7 +4309,8 @@ } ], "path": "src/plugins/embeddable/public/lib/state_transfer/embeddable_state_transfer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -4134,6 +4363,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/error_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -4146,7 +4376,8 @@ "\"error\"" ], "path": "src/plugins/embeddable/public/lib/embeddables/error_embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -4159,7 +4390,8 @@ "string | Error" ], "path": "src/plugins/embeddable/public/lib/embeddables/error_embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -4173,6 +4405,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/error_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -4186,6 +4419,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/error_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4206,6 +4440,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/error_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4243,6 +4478,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/error_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -4257,6 +4493,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/error_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4274,6 +4511,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/error_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4289,6 +4527,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/error_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -4302,6 +4541,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/error_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4319,6 +4559,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/error_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -4344,6 +4585,7 @@ ], "path": "src/plugins/embeddable/public/lib/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -4353,7 +4595,8 @@ "label": "code", "description": [], "path": "src/plugins/embeddable/public/lib/errors.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -4367,6 +4610,7 @@ ], "path": "src/plugins/embeddable/public/lib/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -4455,6 +4699,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/default_embeddable_factory_provider.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -4475,6 +4720,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/default_embeddable_factory_provider.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4511,6 +4757,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -4533,6 +4780,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4567,6 +4815,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/diff_embeddable_input.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -4588,6 +4837,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/diff_embeddable_input.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4610,6 +4860,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/diff_embeddable_input.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4660,6 +4911,7 @@ ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -4673,6 +4925,7 @@ ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4715,6 +4968,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/is_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -4728,6 +4982,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/is_embeddable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4754,6 +5009,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/error_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -4774,6 +5030,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/error_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4794,6 +5051,7 @@ ], "path": "src/plugins/embeddable/public/lib/filterable_embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -4809,6 +5067,7 @@ ], "path": "src/plugins/embeddable/public/lib/filterable_embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4893,6 +5152,7 @@ ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -4937,6 +5197,7 @@ ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4955,6 +5216,7 @@ ], "path": "src/plugins/embeddable/public/lib/reference_or_value_embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -4968,6 +5230,7 @@ ], "path": "src/plugins/embeddable/public/lib/reference_or_value_embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5025,6 +5288,7 @@ ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -5069,6 +5333,7 @@ ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5103,6 +5368,7 @@ ], "path": "src/plugins/embeddable/common/lib/saved_object_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -5130,6 +5396,7 @@ ], "path": "src/plugins/embeddable/common/lib/saved_object_embeddable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5212,6 +5479,7 @@ ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -5256,6 +5524,7 @@ ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5298,6 +5567,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/diff_embeddable_input.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -5311,6 +5581,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/diff_embeddable_input.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5468,6 +5739,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -5478,6 +5750,7 @@ "description": [], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -5513,7 +5786,8 @@ ">" ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -5585,6 +5859,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -5595,7 +5870,8 @@ "label": "embeddableFactoryId", "description": [], "path": "src/plugins/embeddable/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -5661,6 +5937,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -5675,7 +5952,8 @@ "OverlayStart" ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -5688,7 +5966,8 @@ "NotificationsStart" ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -5701,7 +5980,8 @@ "React.ComponentClass | React.FunctionComponent" ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -5714,7 +5994,8 @@ "boolean | undefined" ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -5727,7 +6008,8 @@ "((appName: string, type: string, eventNames: string | string[], count?: number | undefined) => void) | undefined" ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -5740,7 +6022,8 @@ "ThemeServiceStart" ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/open_add_panel_flyout.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -5784,6 +6067,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -5797,6 +6081,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5847,6 +6132,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/with_subscription.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -5860,6 +6146,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/with_subscription.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5879,6 +6166,7 @@ ], "path": "src/plugins/inspector/common/adapters/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -5898,7 +6186,8 @@ " | undefined" ], "path": "src/plugins/inspector/common/adapters/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -5911,7 +6200,8 @@ "[key: string]: any" ], "path": "src/plugins/inspector/common/adapters/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5942,6 +6232,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -5954,7 +6245,8 @@ "boolean | undefined" ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -5983,7 +6275,8 @@ " & { id: string; }>; }" ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6014,6 +6307,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -6026,7 +6320,8 @@ "{ [key: string]: boolean; }" ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6040,6 +6335,7 @@ "description": [], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -6049,7 +6345,8 @@ "label": "embeddableId", "description": [], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -6062,7 +6359,8 @@ "number | undefined" ], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -6075,7 +6373,8 @@ "string | undefined" ], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -6111,7 +6410,8 @@ ">" ], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -6157,6 +6457,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6170,7 +6471,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -6183,7 +6485,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -6207,6 +6510,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -6226,6 +6530,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6245,6 +6550,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -6260,6 +6566,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/embeddable_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -6275,6 +6582,7 @@ "description": [], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -6289,7 +6597,8 @@ "boolean | undefined" ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -6304,7 +6613,8 @@ "string[] | undefined" ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6328,6 +6638,7 @@ ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -6340,7 +6651,8 @@ "T" ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6356,6 +6668,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -6365,7 +6678,8 @@ "label": "originatingApp", "description": [], "path": "src/plugins/embeddable/public/lib/state_transfer/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -6378,7 +6692,8 @@ "string | undefined" ], "path": "src/plugins/embeddable/public/lib/state_transfer/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -6391,7 +6706,8 @@ "string | undefined" ], "path": "src/plugins/embeddable/public/lib/state_transfer/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -6411,7 +6727,8 @@ " | undefined" ], "path": "src/plugins/embeddable/public/lib/state_transfer/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -6426,7 +6743,8 @@ "string | undefined" ], "path": "src/plugins/embeddable/public/lib/state_transfer/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6468,6 +6786,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -6477,7 +6796,8 @@ "label": "type", "description": [], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -6493,6 +6813,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6514,7 +6835,8 @@ " | undefined" ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -6536,7 +6858,8 @@ " | undefined" ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -6548,7 +6871,8 @@ "\nTrue if is this factory create embeddables that are Containers. Used in the add panel to\nconditionally show whether these can be added to another container. It's just not\nsupported right now, but once nested containers are officially supported we can probably get\nrid of this interface." ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -6564,6 +6888,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6581,6 +6906,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6598,6 +6924,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6615,6 +6942,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6632,6 +6960,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -6645,6 +6974,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6664,6 +6994,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6713,6 +7044,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -6726,6 +7058,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6742,6 +7075,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6779,6 +7113,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -6830,6 +7165,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -6843,6 +7179,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6880,6 +7217,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -6897,6 +7235,7 @@ "description": [], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -6906,7 +7245,8 @@ "label": "id", "description": [], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -6919,7 +7259,8 @@ "string | undefined" ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6933,6 +7274,7 @@ "description": [], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -6945,7 +7287,8 @@ "boolean | undefined" ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -6958,7 +7301,8 @@ "boolean | undefined" ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -6978,7 +7322,8 @@ " | undefined" ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -6991,7 +7336,8 @@ "string | undefined" ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -7004,7 +7350,8 @@ "string | undefined" ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -7017,7 +7364,8 @@ "string | undefined" ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -7030,7 +7378,8 @@ "string | undefined" ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -7043,7 +7392,8 @@ "string | undefined" ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -7056,7 +7406,8 @@ "boolean | undefined" ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -7069,7 +7420,8 @@ "string | undefined" ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7085,6 +7437,7 @@ ], "path": "src/plugins/embeddable/public/lib/state_transfer/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -7094,7 +7447,8 @@ "label": "type", "description": [], "path": "src/plugins/embeddable/public/lib/state_transfer/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -7126,7 +7480,8 @@ ", \"id\">" ], "path": "src/plugins/embeddable/public/lib/state_transfer/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -7139,7 +7494,8 @@ "string | undefined" ], "path": "src/plugins/embeddable/public/lib/state_transfer/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -7154,7 +7510,8 @@ "string | undefined" ], "path": "src/plugins/embeddable/public/lib/state_transfer/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7168,6 +7525,7 @@ "description": [], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -7177,7 +7535,8 @@ "label": "id", "description": [], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -7190,7 +7549,8 @@ "\"loading\" | \"error\" | \"loaded\" | \"rendered\"" ], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -7210,7 +7570,8 @@ " | undefined" ], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -7220,7 +7581,8 @@ "label": "timeToEvent", "description": [], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7234,6 +7596,7 @@ "description": [], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -7280,7 +7643,8 @@ ") => void; readonly unregisterAction: (actionId: string) => void; }" ], "path": "src/plugins/embeddable/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7294,6 +7658,7 @@ "description": [], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -7384,7 +7749,8 @@ "; }" ], "path": "src/plugins/embeddable/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -7403,7 +7769,8 @@ } ], "path": "src/plugins/embeddable/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7435,6 +7802,7 @@ ], "path": "src/plugins/embeddable/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -7444,7 +7812,8 @@ "label": "id", "description": [], "path": "src/plugins/embeddable/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7460,6 +7829,7 @@ ], "path": "src/plugins/embeddable/public/lib/filterable_embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -7477,6 +7847,7 @@ ], "path": "src/plugins/embeddable/public/lib/filterable_embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -7498,6 +7869,7 @@ ], "path": "src/plugins/embeddable/public/lib/filterable_embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -7531,6 +7903,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -7578,6 +7951,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -7591,6 +7965,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7618,6 +7993,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -7631,6 +8007,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7658,6 +8035,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -7671,6 +8049,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7685,6 +8064,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7752,6 +8132,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -7765,6 +8146,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7832,6 +8214,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -7847,6 +8230,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7866,6 +8250,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -7879,6 +8264,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7954,6 +8340,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -7967,6 +8354,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7981,6 +8369,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8046,6 +8435,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -8059,6 +8449,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8073,6 +8464,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8087,6 +8479,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/i_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -8114,6 +8507,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -8125,7 +8519,8 @@ "\nIs this embeddable an instance of a Container class, can it contain\nnested embeddables?" ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -8163,7 +8558,8 @@ "> | undefined" ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -8175,7 +8571,8 @@ "\nThe type of embeddable, this is what will be used to take a serialized\nembeddable and find the correct factory for which to create an instance of it." ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -8187,7 +8584,8 @@ "\nA unique identifier for this embeddable. Mainly only used by containers to map their\nPanel States to a child embeddable instance." ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -8199,7 +8597,8 @@ "\nIf set to true, defer embeddable load tells the container that this embeddable\ntype isn't completely loaded when the constructor returns. This embeddable\nwill have to manually call setChildLoaded on its parent when all of its initial\noutput is finalized. For instance, after loading a saved object." ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -8214,7 +8613,8 @@ "number | undefined" ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -8229,7 +8629,8 @@ "object | undefined" ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -8244,7 +8645,8 @@ "Error | undefined" ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -8260,6 +8662,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8301,6 +8704,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8318,6 +8722,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8335,6 +8740,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8352,6 +8758,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8369,6 +8776,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8386,6 +8794,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -8399,6 +8808,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8418,6 +8828,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -8431,6 +8842,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8452,6 +8864,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8471,6 +8884,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8488,6 +8902,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8553,6 +8968,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8570,6 +8986,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -8583,6 +9000,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8610,6 +9028,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -8623,6 +9042,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8643,6 +9063,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8664,6 +9085,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8691,6 +9113,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "Inspector adapters that will be used to open an inspector for." @@ -8710,6 +9133,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8727,6 +9151,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8744,6 +9169,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -8757,6 +9183,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8774,6 +9201,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/i_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -8789,6 +9217,7 @@ "description": [], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -8808,7 +9237,8 @@ } ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8832,6 +9262,7 @@ ], "path": "src/plugins/embeddable/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -8841,7 +9272,8 @@ "label": "type", "description": [], "path": "src/plugins/embeddable/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -8854,7 +9286,8 @@ "Partial & { id: string; }" ], "path": "src/plugins/embeddable/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8868,6 +9301,7 @@ "description": [], "path": "src/plugins/embeddable/public/lib/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -8877,7 +9311,8 @@ "label": "displayName", "description": [], "path": "src/plugins/embeddable/public/lib/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -8887,7 +9322,8 @@ "label": "accessPath", "description": [], "path": "src/plugins/embeddable/public/lib/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -8897,7 +9333,8 @@ "label": "id", "description": [], "path": "src/plugins/embeddable/public/lib/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -8907,7 +9344,8 @@ "label": "description", "description": [], "path": "src/plugins/embeddable/public/lib/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -8920,7 +9358,8 @@ "string | undefined" ], "path": "src/plugins/embeddable/public/lib/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8944,6 +9383,7 @@ ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -8956,7 +9396,8 @@ "T | undefined" ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -8977,7 +9418,8 @@ "; column: number; range: number[]; timeFieldName?: string | undefined; }" ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9003,6 +9445,7 @@ ], "path": "src/plugins/embeddable/public/lib/reference_or_value_embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -9018,6 +9461,7 @@ ], "path": "src/plugins/embeddable/public/lib/reference_or_value_embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -9031,6 +9475,7 @@ ], "path": "src/plugins/embeddable/public/lib/reference_or_value_embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9050,6 +9495,7 @@ ], "path": "src/plugins/embeddable/public/lib/reference_or_value_embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -9067,6 +9513,7 @@ ], "path": "src/plugins/embeddable/public/lib/reference_or_value_embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -9099,6 +9546,7 @@ ], "path": "src/plugins/embeddable/common/lib/saved_object_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -9108,7 +9556,8 @@ "label": "savedObjectId", "description": [], "path": "src/plugins/embeddable/common/lib/saved_object_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9124,6 +9573,7 @@ ], "path": "src/plugins/embeddable/public/lib/self_styled_embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -9140,6 +9590,7 @@ ], "path": "src/plugins/embeddable/public/lib/self_styled_embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -9165,6 +9616,7 @@ ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -9177,7 +9629,8 @@ "T | undefined" ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -9198,7 +9651,8 @@ ", \"rows\" | \"columns\">; column: number; row: number; value: any; }[]; timeFieldName?: string | undefined; negate?: boolean | undefined; }" ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9214,6 +9668,7 @@ "description": [], "path": "src/plugins/embeddable/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -9230,6 +9685,7 @@ ], "path": "src/plugins/embeddable/public/lib/panel/panel_header/panel_actions/add_panel/add_panel_action.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9244,6 +9700,7 @@ ], "path": "src/plugins/embeddable/public/lib/actions/edit_panel_action.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9260,6 +9717,7 @@ ], "path": "src/plugins/embeddable/public/lib/attribute_service/attribute_service.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9296,6 +9754,7 @@ ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9310,6 +9769,7 @@ ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9340,6 +9800,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_factory_definition.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9366,6 +9827,7 @@ ], "path": "src/plugins/embeddable/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9412,6 +9874,7 @@ ], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -9425,7 +9888,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -9438,7 +9902,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9455,6 +9920,7 @@ ], "path": "src/plugins/embeddable/public/lib/containers/embeddable_child_panel.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9471,6 +9937,7 @@ ], "path": "src/plugins/embeddable/public/lib/embeddables/embeddable_renderer.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9485,6 +9952,7 @@ ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9499,6 +9967,7 @@ ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9513,6 +9982,7 @@ ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9527,6 +9997,7 @@ ], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -9540,6 +10011,7 @@ "description": [], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -9549,7 +10021,8 @@ "label": "id", "description": [], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -9559,7 +10032,8 @@ "label": "title", "description": [], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -9569,7 +10043,8 @@ "label": "description", "description": [], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9583,6 +10058,7 @@ "description": [], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -9592,7 +10068,8 @@ "label": "id", "description": [], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -9602,7 +10079,8 @@ "label": "title", "description": [], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -9612,7 +10090,8 @@ "label": "description", "description": [], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9626,6 +10105,7 @@ "description": [], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -9635,7 +10115,8 @@ "label": "id", "description": [], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -9645,7 +10126,8 @@ "label": "title", "description": [], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -9655,7 +10137,8 @@ "label": "description", "description": [], "path": "src/plugins/embeddable/public/lib/triggers/triggers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9670,6 +10153,7 @@ "description": [], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -9735,6 +10219,7 @@ ], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -9748,6 +10233,7 @@ ], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9771,6 +10257,7 @@ ], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9798,6 +10285,7 @@ ], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -9820,6 +10308,7 @@ ], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9839,6 +10328,7 @@ ], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -9852,6 +10342,7 @@ ], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9896,6 +10387,7 @@ ], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -9967,6 +10459,7 @@ ], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -9980,6 +10473,7 @@ ], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10047,6 +10541,7 @@ ], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -10094,6 +10589,7 @@ ], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10107,7 +10603,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -10120,7 +10617,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -10151,6 +10649,7 @@ ], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -10171,6 +10670,7 @@ ], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -10230,6 +10730,7 @@ ], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -10243,6 +10744,7 @@ ], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10258,6 +10760,7 @@ ], "path": "src/plugins/embeddable/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10299,6 +10802,7 @@ ], "path": "src/plugins/embeddable/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -10308,7 +10812,8 @@ "label": "id", "description": [], "path": "src/plugins/embeddable/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10340,6 +10845,7 @@ ], "path": "src/plugins/embeddable/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -10349,7 +10855,8 @@ "label": "id", "description": [], "path": "src/plugins/embeddable/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10393,6 +10900,7 @@ ], "path": "src/plugins/embeddable/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -10422,6 +10930,7 @@ ], "path": "src/plugins/embeddable/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -10450,6 +10959,7 @@ ], "path": "src/plugins/embeddable/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10477,6 +10987,7 @@ ], "path": "src/plugins/embeddable/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -10499,6 +11010,7 @@ ], "path": "src/plugins/embeddable/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10523,6 +11035,7 @@ ], "path": "src/plugins/embeddable/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -10557,6 +11070,7 @@ ], "path": "src/plugins/embeddable/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -10592,6 +11106,7 @@ ], "path": "src/plugins/embeddable/common/lib/saved_object_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -10619,6 +11134,7 @@ ], "path": "src/plugins/embeddable/common/lib/saved_object_embeddable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10636,6 +11152,7 @@ "description": [], "path": "src/plugins/embeddable/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -10659,6 +11176,7 @@ ], "path": "src/plugins/embeddable/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -10672,6 +11190,7 @@ ], "path": "src/plugins/embeddable/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10699,6 +11218,7 @@ ], "path": "src/plugins/embeddable/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -10712,6 +11232,7 @@ ], "path": "src/plugins/embeddable/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10747,6 +11268,7 @@ ], "path": "src/plugins/embeddable/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -10756,7 +11278,8 @@ "label": "id", "description": [], "path": "src/plugins/embeddable/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10780,6 +11303,7 @@ ], "path": "src/plugins/embeddable/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -10789,7 +11313,8 @@ "label": "type", "description": [], "path": "src/plugins/embeddable/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddable", @@ -10802,7 +11327,8 @@ "Partial & { id: string; }" ], "path": "src/plugins/embeddable/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10833,6 +11359,7 @@ ], "path": "src/plugins/embeddable/common/lib/saved_object_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddable", @@ -10842,7 +11369,8 @@ "label": "savedObjectId", "description": [], "path": "src/plugins/embeddable/common/lib/saved_object_embeddable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10858,6 +11386,7 @@ "description": [], "path": "src/plugins/embeddable/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -10886,6 +11415,7 @@ ], "path": "src/plugins/embeddable/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10915,6 +11445,7 @@ ], "path": "src/plugins/embeddable/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10936,6 +11467,7 @@ ], "path": "src/plugins/embeddable/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/embeddable.mdx b/api_docs/embeddable.mdx index 1393f240b688c..70caf3a3423d2 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'embeddable'] --- import embeddableObj from './embeddable.devdocs.json'; @@ -21,7 +21,7 @@ Contact [App Services](https://github.com/orgs/elastic/teams/kibana-app-services | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 514 | 0 | 414 | 4 | +| 515 | 0 | 415 | 4 | ## Client diff --git a/api_docs/embeddable_enhanced.devdocs.json b/api_docs/embeddable_enhanced.devdocs.json index aa0281ce5cc9c..0ec7cfbd87676 100644 --- a/api_docs/embeddable_enhanced.devdocs.json +++ b/api_docs/embeddable_enhanced.devdocs.json @@ -47,6 +47,7 @@ ], "path": "x-pack/plugins/embeddable_enhanced/public/embeddables/is_enhanced_embeddable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddableEnhanced", @@ -60,6 +61,7 @@ ], "path": "x-pack/plugins/embeddable_enhanced/public/embeddables/is_enhanced_embeddable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -77,6 +79,7 @@ "description": [], "path": "x-pack/plugins/embeddable_enhanced/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddableEnhanced", @@ -120,7 +123,8 @@ "; }; }" ], "path": "x-pack/plugins/embeddable_enhanced/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -134,6 +138,7 @@ "description": [], "path": "x-pack/plugins/embeddable_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddableEnhanced", @@ -152,7 +157,8 @@ } ], "path": "x-pack/plugins/embeddable_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddableEnhanced", @@ -171,7 +177,8 @@ } ], "path": "x-pack/plugins/embeddable_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -185,6 +192,7 @@ "description": [], "path": "x-pack/plugins/embeddable_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "embeddableEnhanced", @@ -203,7 +211,8 @@ } ], "path": "x-pack/plugins/embeddable_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "embeddableEnhanced", @@ -222,7 +231,8 @@ } ], "path": "x-pack/plugins/embeddable_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -267,6 +277,7 @@ ], "path": "x-pack/plugins/embeddable_enhanced/public/actions/drilldown_grouping.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -289,6 +300,7 @@ ], "path": "x-pack/plugins/embeddable_enhanced/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -302,6 +314,7 @@ "description": [], "path": "x-pack/plugins/embeddable_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -315,6 +328,7 @@ "description": [], "path": "x-pack/plugins/embeddable_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true diff --git a/api_docs/embeddable_enhanced.mdx b/api_docs/embeddable_enhanced.mdx index a5a4d99cd995f..96d0b7e56b548 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'embeddableEnhanced'] --- import embeddableEnhancedObj from './embeddable_enhanced.devdocs.json'; diff --git a/api_docs/encrypted_saved_objects.devdocs.json b/api_docs/encrypted_saved_objects.devdocs.json index bb8b59ba6941c..b4f1b14017924 100644 --- a/api_docs/encrypted_saved_objects.devdocs.json +++ b/api_docs/encrypted_saved_objects.devdocs.json @@ -29,6 +29,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/crypto/encryption_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "encryptedSavedObjects", @@ -42,6 +43,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/crypto/encryption_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "encryptedSavedObjects", @@ -55,6 +57,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/crypto/encryption_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -69,6 +72,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/crypto/encryption_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -89,6 +93,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/crypto/encryption_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -103,6 +108,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/crypto/encryption_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -120,6 +126,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/crypto/encryption_error.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -140,6 +147,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/crypto/encrypted_saved_objects_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "encryptedSavedObjects", @@ -149,7 +157,8 @@ "label": "key", "description": [], "path": "x-pack/plugins/encrypted_saved_objects/server/crypto/encrypted_saved_objects_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "encryptedSavedObjects", @@ -162,7 +171,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/encrypted_saved_objects/server/crypto/encrypted_saved_objects_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -186,6 +196,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/create_migration.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "encryptedSavedObjects", @@ -205,6 +216,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/create_migration.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -221,7 +233,8 @@ "" ], "path": "x-pack/plugins/encrypted_saved_objects/server/create_migration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -243,6 +256,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/create_migration.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -259,7 +273,8 @@ "[] | undefined; }" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "encryptedSavedObjects", @@ -272,7 +287,8 @@ "SavedObjectMigrationContext" ], "path": "node_modules/@types/kbn__core-saved-objects-server/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -287,7 +303,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/encrypted_saved_objects/server/create_migration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "encryptedSavedObjects", @@ -307,7 +324,8 @@ " | undefined" ], "path": "x-pack/plugins/encrypted_saved_objects/server/create_migration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "encryptedSavedObjects", @@ -327,7 +345,8 @@ " | undefined" ], "path": "x-pack/plugins/encrypted_saved_objects/server/create_migration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -341,6 +360,7 @@ "description": [], "path": "x-pack/plugins/encrypted_saved_objects/server/saved_objects/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "encryptedSavedObjects", @@ -358,6 +378,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/saved_objects/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "encryptedSavedObjects", @@ -371,6 +392,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/saved_objects/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -385,6 +407,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/saved_objects/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -400,6 +423,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/saved_objects/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -425,6 +449,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/saved_objects/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "encryptedSavedObjects", @@ -440,6 +465,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/saved_objects/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -457,6 +483,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/saved_objects/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -474,6 +501,7 @@ "description": [], "path": "x-pack/plugins/encrypted_saved_objects/server/saved_objects/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "encryptedSavedObjects", @@ -486,7 +514,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/encrypted_saved_objects/server/saved_objects/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -502,6 +531,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/crypto/encrypted_saved_objects_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "encryptedSavedObjects", @@ -511,7 +541,8 @@ "label": "type", "description": [], "path": "x-pack/plugins/encrypted_saved_objects/server/crypto/encrypted_saved_objects_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "encryptedSavedObjects", @@ -532,7 +563,8 @@ ">" ], "path": "x-pack/plugins/encrypted_saved_objects/server/crypto/encrypted_saved_objects_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "encryptedSavedObjects", @@ -545,7 +577,8 @@ "ReadonlySet | undefined" ], "path": "x-pack/plugins/encrypted_saved_objects/server/crypto/encrypted_saved_objects_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -563,6 +596,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/crypto/encryption_error.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -594,6 +628,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/saved_objects/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -614,7 +649,8 @@ " | undefined" ], "path": "x-pack/plugins/encrypted_saved_objects/server/saved_objects/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -639,6 +675,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/create_migration.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -659,7 +696,8 @@ "" ], "path": "x-pack/plugins/encrypted_saved_objects/server/create_migration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -682,6 +720,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/create_migration.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -698,7 +737,8 @@ "" ], "path": "x-pack/plugins/encrypted_saved_objects/server/create_migration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -714,6 +754,7 @@ "description": [], "path": "x-pack/plugins/encrypted_saved_objects/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "encryptedSavedObjects", @@ -725,7 +766,8 @@ "\nIndicates if Saved Object encryption is possible. Requires an encryption key to be explicitly set via `xpack.encryptedSavedObjects.encryptionKey`." ], "path": "x-pack/plugins/encrypted_saved_objects/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "encryptedSavedObjects", @@ -747,6 +789,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "encryptedSavedObjects", @@ -766,6 +809,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -791,6 +835,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -811,7 +856,8 @@ "" ], "path": "x-pack/plugins/encrypted_saved_objects/server/create_migration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -828,6 +874,7 @@ "description": [], "path": "x-pack/plugins/encrypted_saved_objects/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "encryptedSavedObjects", @@ -841,6 +888,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "encryptedSavedObjects", @@ -854,6 +902,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -886,6 +935,7 @@ ], "path": "x-pack/plugins/encrypted_saved_objects/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -906,7 +956,8 @@ " | undefined" ], "path": "x-pack/plugins/encrypted_saved_objects/server/saved_objects/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/encrypted_saved_objects.mdx b/api_docs/encrypted_saved_objects.mdx index 3ce9a0ec247ad..3b1f766d5d43f 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'encryptedSavedObjects'] --- import encryptedSavedObjectsObj from './encrypted_saved_objects.devdocs.json'; diff --git a/api_docs/enterprise_search.devdocs.json b/api_docs/enterprise_search.devdocs.json index 7cf19747bfb19..8ee7ecbb68c9a 100644 --- a/api_docs/enterprise_search.devdocs.json +++ b/api_docs/enterprise_search.devdocs.json @@ -26,6 +26,7 @@ ], "path": "x-pack/plugins/enterprise_search/server/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -40,6 +41,7 @@ ], "path": "x-pack/plugins/enterprise_search/server/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -54,6 +56,7 @@ ], "path": "x-pack/plugins/enterprise_search/server/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -68,6 +71,7 @@ ], "path": "x-pack/plugins/enterprise_search/server/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -82,6 +86,7 @@ ], "path": "x-pack/plugins/enterprise_search/server/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -96,6 +101,7 @@ ], "path": "x-pack/plugins/enterprise_search/server/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -110,6 +116,7 @@ ], "path": "x-pack/plugins/enterprise_search/server/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -141,6 +148,7 @@ ], "path": "x-pack/plugins/enterprise_search/server/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/enterprise_search.mdx b/api_docs/enterprise_search.mdx index f7e1687260975..322441b1ad852 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'enterpriseSearch'] --- import enterpriseSearchObj from './enterprise_search.devdocs.json'; diff --git a/api_docs/es_ui_shared.devdocs.json b/api_docs/es_ui_shared.devdocs.json index 8cf1ece3e2dbd..45e839be39c55 100644 --- a/api_docs/es_ui_shared.devdocs.json +++ b/api_docs/es_ui_shared.devdocs.json @@ -23,6 +23,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/cron_editor/cron_editor.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -37,6 +38,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/cron_editor/cron_editor.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -50,6 +52,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/cron_editor/cron_editor.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -67,6 +70,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/cron_editor/cron_editor.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -80,6 +84,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/cron_editor/cron_editor.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -105,6 +110,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/cron_editor/cron_editor.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -124,6 +130,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/cron_editor/cron_editor.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -143,6 +150,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/cron_editor/cron_editor.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -156,6 +164,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/cron_editor/cron_editor.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -173,6 +182,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/cron_editor/cron_editor.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -188,6 +198,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/cron_editor/cron_editor.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -208,6 +219,7 @@ ], "path": "src/plugins/es_ui_shared/public/url/attempt_to_uri_decode.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -221,6 +233,7 @@ ], "path": "src/plugins/es_ui_shared/public/url/attempt_to_uri_decode.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -239,6 +252,7 @@ ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/authorization_provider.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -252,6 +266,7 @@ ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/authorization_provider.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -278,6 +293,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/code_editor/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -297,6 +313,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/code_editor/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -317,6 +334,7 @@ ], "path": "src/plugins/es_ui_shared/public/url/extract_query_params.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -330,6 +348,7 @@ ], "path": "src/plugins/es_ui_shared/public/url/extract_query_params.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -348,6 +367,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/json_editor/json_editor.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -361,7 +381,8 @@ "Props" ], "path": "src/plugins/es_ui_shared/public/components/json_editor/json_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -378,6 +399,7 @@ ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/not_authorized_section.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -391,6 +413,7 @@ ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/not_authorized_section.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -409,6 +432,7 @@ ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/page_error.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -422,6 +446,7 @@ ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/page_error.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -440,6 +465,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/page_loading/page_loading.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -453,6 +479,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/page_loading/page_loading.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -471,6 +498,7 @@ ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/section_error.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -484,6 +512,7 @@ ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/section_error.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -502,6 +531,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/section_loading/section_loading.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -515,6 +545,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/section_loading/section_loading.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -551,6 +582,7 @@ ], "path": "src/plugins/es_ui_shared/public/request/send_request.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -564,6 +596,7 @@ ], "path": "src/plugins/es_ui_shared/public/request/send_request.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -584,6 +617,7 @@ ], "path": "src/plugins/es_ui_shared/public/request/send_request.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -603,6 +637,7 @@ ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/authorization_provider.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -637,6 +672,7 @@ ], "path": "src/plugins/es_ui_shared/public/request/use_request.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -650,6 +686,7 @@ ], "path": "src/plugins/es_ui_shared/public/request/use_request.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -670,6 +707,7 @@ ], "path": "src/plugins/es_ui_shared/public/request/use_request.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -688,6 +726,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/view_api_request_flyout/view_api_request_flyout.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -701,6 +740,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/view_api_request_flyout/view_api_request_flyout.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -719,6 +759,7 @@ ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/with_privileges.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -732,6 +773,7 @@ ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/with_privileges.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -749,6 +791,7 @@ "description": [], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/authorization_provider.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -758,7 +801,8 @@ "label": "isLoading", "description": [], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/authorization_provider.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -772,7 +816,8 @@ " | null" ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/authorization_provider.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -791,7 +836,8 @@ } ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/authorization_provider.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -805,6 +851,7 @@ "description": [], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -814,7 +861,8 @@ "label": "error", "description": [], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -827,7 +875,8 @@ "string[] | undefined" ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -840,7 +889,8 @@ "string | undefined" ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -866,6 +916,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/code_editor/code_editor.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -878,7 +929,8 @@ "string | undefined" ], "path": "src/plugins/es_ui_shared/public/components/code_editor/code_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -891,7 +943,8 @@ "string | undefined" ], "path": "src/plugins/es_ui_shared/public/components/code_editor/code_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -906,7 +959,8 @@ " | undefined) => void) | undefined" ], "path": "src/plugins/es_ui_shared/public/components/code_editor/code_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -921,7 +975,8 @@ " | undefined) => void) | undefined" ], "path": "src/plugins/es_ui_shared/public/components/code_editor/code_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -934,7 +989,8 @@ "boolean | undefined" ], "path": "src/plugins/es_ui_shared/public/components/code_editor/code_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -948,7 +1004,8 @@ " | undefined" ], "path": "src/plugins/es_ui_shared/public/components/code_editor/code_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -961,7 +1018,8 @@ "number | undefined" ], "path": "src/plugins/es_ui_shared/public/components/code_editor/code_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -974,7 +1032,8 @@ "string | undefined" ], "path": "src/plugins/es_ui_shared/public/components/code_editor/code_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -989,7 +1048,8 @@ "string | undefined" ], "path": "src/plugins/es_ui_shared/public/components/code_editor/code_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -1004,7 +1064,8 @@ "string | object | undefined" ], "path": "src/plugins/es_ui_shared/public/components/code_editor/code_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -1017,7 +1078,8 @@ "string | undefined" ], "path": "src/plugins/es_ui_shared/public/components/code_editor/code_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -1033,6 +1095,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/code_editor/code_editor.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -1047,6 +1110,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/code_editor/code_editor.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1074,6 +1138,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/json_editor/use_json.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -1086,7 +1151,8 @@ "{ raw: string; format(): T; }" ], "path": "src/plugins/es_ui_shared/public/components/json_editor/use_json.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -1100,6 +1166,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/json_editor/use_json.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1114,7 +1181,8 @@ "boolean | undefined" ], "path": "src/plugins/es_ui_shared/public/components/json_editor/use_json.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1128,6 +1196,7 @@ "description": [], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -1140,7 +1209,8 @@ "[key: string]: string[] | undefined" ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1154,6 +1224,7 @@ "description": [], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -1163,7 +1234,8 @@ "label": "hasAllPrivileges", "description": [], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -1182,7 +1254,8 @@ } ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1196,6 +1269,7 @@ "description": [], "path": "src/plugins/es_ui_shared/public/request/send_request.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -1205,7 +1279,8 @@ "label": "path", "description": [], "path": "src/plugins/es_ui_shared/public/request/send_request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -1218,7 +1293,8 @@ "\"get\" | \"post\" | \"put\" | \"delete\" | \"patch\" | \"head\"" ], "path": "src/plugins/es_ui_shared/public/request/send_request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -1232,7 +1308,8 @@ " | undefined" ], "path": "src/plugins/es_ui_shared/public/request/send_request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -1245,7 +1322,8 @@ "any" ], "path": "src/plugins/es_ui_shared/public/request/send_request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -1260,7 +1338,8 @@ "boolean | undefined" ], "path": "src/plugins/es_ui_shared/public/request/send_request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1284,6 +1363,7 @@ ], "path": "src/plugins/es_ui_shared/public/request/send_request.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -1296,7 +1376,8 @@ "D | null" ], "path": "src/plugins/es_ui_shared/public/request/send_request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -1309,7 +1390,8 @@ "E | null" ], "path": "src/plugins/es_ui_shared/public/request/send_request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1340,6 +1422,7 @@ ], "path": "src/plugins/es_ui_shared/public/request/use_request.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -1352,7 +1435,8 @@ "number | undefined" ], "path": "src/plugins/es_ui_shared/public/request/use_request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -1365,7 +1449,8 @@ "any" ], "path": "src/plugins/es_ui_shared/public/request/use_request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -1379,6 +1464,7 @@ ], "path": "src/plugins/es_ui_shared/public/request/use_request.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -1392,6 +1478,7 @@ ], "path": "src/plugins/es_ui_shared/public/request/use_request.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1419,6 +1506,7 @@ ], "path": "src/plugins/es_ui_shared/public/request/use_request.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -1428,7 +1516,8 @@ "label": "isInitialRequest", "description": [], "path": "src/plugins/es_ui_shared/public/request/use_request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -1438,7 +1527,8 @@ "label": "isLoading", "description": [], "path": "src/plugins/es_ui_shared/public/request/use_request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -1451,7 +1541,8 @@ "E | null" ], "path": "src/plugins/es_ui_shared/public/request/use_request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -1464,7 +1555,8 @@ "D | null | undefined" ], "path": "src/plugins/es_ui_shared/public/request/use_request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -1478,6 +1570,7 @@ ], "path": "src/plugins/es_ui_shared/public/request/use_request.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1499,6 +1592,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/cron_editor/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1521,6 +1615,7 @@ ], "path": "src/plugins/es_ui_shared/public/components/json_editor/use_json.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1541,7 +1636,8 @@ "" ], "path": "src/plugins/es_ui_shared/public/components/json_editor/use_json.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1562,6 +1658,7 @@ ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/authorization_provider.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1573,6 +1670,7 @@ "description": [], "path": "src/plugins/es_ui_shared/public/indices/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -1585,7 +1683,8 @@ "string[]" ], "path": "src/plugins/es_ui_shared/public/indices/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -1599,6 +1698,7 @@ ], "path": "src/plugins/es_ui_shared/public/indices/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1612,7 +1712,8 @@ "string | undefined" ], "path": "src/plugins/es_ui_shared/public/indices/validate/validate_index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1628,6 +1729,7 @@ ], "path": "src/plugins/es_ui_shared/public/indices/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1638,7 +1740,8 @@ "label": "indexName", "description": [], "path": "src/plugins/es_ui_shared/public/indices/validate/validate_index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1654,6 +1757,7 @@ ], "path": "src/plugins/es_ui_shared/public/indices/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1664,7 +1768,8 @@ "label": "indexName", "description": [], "path": "src/plugins/es_ui_shared/public/indices/validate/validate_index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1694,6 +1799,7 @@ ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/errors/handle_es_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -1707,6 +1813,7 @@ ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/errors/handle_es_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1725,6 +1832,7 @@ ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/errors/es_error_parser.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -1738,6 +1846,7 @@ ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/errors/es_error_parser.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1763,6 +1872,7 @@ "description": [], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -1775,7 +1885,8 @@ "[key: string]: string[] | undefined" ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1789,6 +1900,7 @@ "description": [], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "esUiShared", @@ -1798,7 +1910,8 @@ "label": "hasAllPrivileges", "description": [], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "esUiShared", @@ -1817,7 +1930,8 @@ } ], "path": "src/plugins/es_ui_shared/__packages_do_not_import__/authorization/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/es_ui_shared.mdx b/api_docs/es_ui_shared.mdx index 22e67fffb1b9d..d2b0950778bfe 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'esUiShared'] --- import esUiSharedObj from './es_ui_shared.devdocs.json'; diff --git a/api_docs/event_annotation.devdocs.json b/api_docs/event_annotation.devdocs.json index 73bba6a9a60b3..debcba1bf6599 100644 --- a/api_docs/event_annotation.devdocs.json +++ b/api_docs/event_annotation.devdocs.json @@ -30,6 +30,7 @@ ], "path": "src/plugins/event_annotation/public/event_annotation_service/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -50,6 +51,7 @@ ], "path": "src/plugins/event_annotation/public/event_annotation_service/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -83,6 +85,7 @@ ], "path": "src/plugins/event_annotation/public/event_annotation_service/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -103,6 +106,7 @@ ], "path": "src/plugins/event_annotation/public/event_annotation_service/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -120,6 +124,7 @@ "description": [], "path": "src/plugins/event_annotation/public/event_annotation_service/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -148,6 +153,7 @@ ], "path": "src/plugins/event_annotation/public/event_annotation_service/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -167,6 +173,7 @@ ], "path": "src/plugins/event_annotation/public/event_annotation_service/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -187,6 +194,7 @@ "description": [], "path": "src/plugins/event_annotation/public/event_annotation_service/helpers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -201,6 +209,7 @@ ], "path": "src/plugins/event_annotation/public/event_annotation_service/helpers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -214,6 +223,7 @@ "description": [], "path": "src/plugins/event_annotation/public/event_annotation_service/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -235,6 +245,7 @@ ], "path": "src/plugins/event_annotation/public/event_annotation_service/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -302,6 +313,7 @@ ], "path": "src/plugins/event_annotation/common/event_annotation_group/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -317,6 +329,7 @@ "description": [], "path": "src/plugins/event_annotation/common/event_annotation_group/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -336,7 +349,8 @@ "[]" ], "path": "src/plugins/event_annotation/common/event_annotation_group/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -355,7 +369,8 @@ } ], "path": "src/plugins/event_annotation/common/event_annotation_group/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -369,6 +384,7 @@ "description": [], "path": "src/plugins/event_annotation/common/fetch_event_annotations/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -382,7 +398,8 @@ "[]" ], "path": "src/plugins/event_annotation/common/fetch_event_annotations/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -392,7 +409,8 @@ "label": "interval", "description": [], "path": "src/plugins/event_annotation/common/fetch_event_annotations/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -412,6 +430,7 @@ ], "path": "src/plugins/event_annotation/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -448,6 +467,7 @@ ], "path": "src/plugins/event_annotation/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -484,6 +504,7 @@ ], "path": "src/plugins/event_annotation/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -506,6 +527,7 @@ ], "path": "src/plugins/event_annotation/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -521,6 +543,7 @@ ], "path": "src/plugins/event_annotation/common/manual_event_annotation/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -537,6 +560,7 @@ ], "path": "src/plugins/event_annotation/common/manual_event_annotation/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -552,6 +576,7 @@ ], "path": "src/plugins/event_annotation/common/manual_event_annotation/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -567,6 +592,7 @@ ], "path": "src/plugins/event_annotation/common/manual_event_annotation/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -583,6 +609,7 @@ ], "path": "src/plugins/event_annotation/common/manual_event_annotation/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -598,6 +625,7 @@ ], "path": "src/plugins/event_annotation/common/manual_event_annotation/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -613,6 +641,7 @@ ], "path": "src/plugins/event_annotation/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -636,6 +665,7 @@ ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -659,6 +689,7 @@ ], "path": "src/plugins/event_annotation/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -683,6 +714,7 @@ ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -698,6 +730,7 @@ ], "path": "src/plugins/event_annotation/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -711,6 +744,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -723,7 +757,8 @@ "\"manual_point_event_annotation\"" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -736,7 +771,8 @@ "never[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -749,7 +785,8 @@ "\"manual_point_event_annotation\"" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -759,7 +796,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -772,7 +810,8 @@ "\"null\"[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -783,6 +822,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -793,6 +833,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -805,7 +846,8 @@ "true" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -818,7 +860,8 @@ "\"string\"[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -828,7 +871,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -841,6 +885,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -853,7 +898,8 @@ "\"string\"[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -863,7 +909,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -876,6 +923,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -888,7 +936,8 @@ "\"string\"[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -898,7 +947,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -911,6 +961,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -923,7 +974,8 @@ "\"string\"[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -933,7 +985,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -946,6 +999,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -958,7 +1012,8 @@ "\"string\"[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -971,7 +1026,8 @@ "(\"solid\" | \"dashed\" | \"dotted\")[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -981,7 +1037,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -994,6 +1051,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1006,7 +1064,8 @@ "\"number\"[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1016,7 +1075,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1029,6 +1089,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1041,7 +1102,8 @@ "\"string\"[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1051,7 +1113,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1064,7 +1127,8 @@ "(\"circle\" | \"asterisk\" | \"alert\" | \"bell\" | \"bolt\" | \"bug\" | \"editorComment\" | \"flag\" | \"heart\" | \"mapMarker\" | \"pinFilled\" | \"starEmpty\" | \"tag\" | \"triangle\")[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1077,7 +1141,8 @@ "true" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1090,6 +1155,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1102,7 +1168,8 @@ "\"boolean\"[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1112,7 +1179,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1125,6 +1193,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1137,7 +1206,8 @@ "\"boolean\"[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1147,7 +1217,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1183,6 +1254,7 @@ ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1196,7 +1268,8 @@ "unknown" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1210,7 +1283,8 @@ "PointStyleProps" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1226,6 +1300,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1238,7 +1313,8 @@ "\"manual_range_event_annotation\"" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1251,7 +1327,8 @@ "never[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1264,7 +1341,8 @@ "\"manual_range_event_annotation\"" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1274,7 +1352,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1287,7 +1366,8 @@ "\"null\"[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1298,6 +1378,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1308,6 +1389,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1320,7 +1402,8 @@ "true" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1333,7 +1416,8 @@ "\"string\"[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1343,7 +1427,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1356,6 +1441,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1368,7 +1454,8 @@ "\"string\"[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1378,7 +1465,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1391,6 +1479,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1403,7 +1492,8 @@ "\"string\"[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1413,7 +1503,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1426,7 +1517,8 @@ "false" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1439,6 +1531,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1451,7 +1544,8 @@ "\"boolean\"[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1461,7 +1555,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1474,7 +1569,8 @@ "false" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1487,6 +1583,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1499,7 +1596,8 @@ "\"string\"[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1509,7 +1607,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1522,6 +1621,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1534,7 +1634,8 @@ "\"string\"[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1544,7 +1645,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1557,6 +1659,7 @@ "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1569,7 +1672,8 @@ "\"boolean\"[]" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1579,7 +1683,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1605,6 +1710,7 @@ ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1618,7 +1724,8 @@ "unknown" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1632,7 +1739,8 @@ "RangeStyleProps" ], "path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1648,6 +1756,7 @@ "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1660,7 +1769,8 @@ "\"query_point_event_annotation\"" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1673,7 +1783,8 @@ "never[]" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1686,7 +1797,8 @@ "\"query_point_event_annotation\"" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1696,7 +1808,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1709,7 +1822,8 @@ "\"null\"[]" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1720,6 +1834,7 @@ "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1730,6 +1845,7 @@ "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1742,7 +1858,8 @@ "true" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1755,7 +1872,8 @@ "\"string\"[]" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1765,7 +1883,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1778,6 +1897,7 @@ "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1790,7 +1910,8 @@ "\"kibana_query\"[]" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1800,7 +1921,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1813,7 +1935,8 @@ "true" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1826,6 +1949,7 @@ "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1838,7 +1962,8 @@ "true" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1851,7 +1976,8 @@ "\"string\"[]" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1861,7 +1987,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1874,6 +2001,7 @@ "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1886,7 +2014,8 @@ "true" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1899,7 +2028,8 @@ "\"string\"[]" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1909,7 +2039,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1922,6 +2053,7 @@ "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1934,7 +2066,8 @@ "\"string\"[]" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1944,7 +2077,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1957,6 +2091,7 @@ "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -1969,7 +2104,8 @@ "\"string\"[]" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -1979,7 +2115,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1992,6 +2129,7 @@ "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -2004,7 +2142,8 @@ "\"string\"[]" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -2017,7 +2156,8 @@ "(\"solid\" | \"dashed\" | \"dotted\")[]" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -2027,7 +2167,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2040,6 +2181,7 @@ "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -2052,7 +2194,8 @@ "\"number\"[]" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -2062,7 +2205,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2075,6 +2219,7 @@ "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -2087,7 +2232,8 @@ "\"string\"[]" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -2097,7 +2243,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -2110,7 +2257,8 @@ "(\"circle\" | \"asterisk\" | \"alert\" | \"bell\" | \"bolt\" | \"bug\" | \"editorComment\" | \"flag\" | \"heart\" | \"mapMarker\" | \"pinFilled\" | \"starEmpty\" | \"tag\" | \"triangle\")[]" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -2123,7 +2271,8 @@ "true" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2136,6 +2285,7 @@ "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -2148,7 +2298,8 @@ "\"boolean\"[]" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -2158,7 +2309,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2171,6 +2323,7 @@ "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -2183,7 +2336,8 @@ "\"string\"[]" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -2193,7 +2347,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2206,6 +2361,7 @@ "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventAnnotation", @@ -2218,7 +2374,8 @@ "\"boolean\"[]" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -2228,7 +2385,8 @@ "label": "help", "description": [], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2272,6 +2430,7 @@ ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2285,7 +2444,8 @@ "unknown" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventAnnotation", @@ -2307,7 +2467,8 @@ "PointStyleProps" ], "path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/event_annotation.mdx b/api_docs/event_annotation.mdx index b129e7b45acfd..0b17864905a2e 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'eventAnnotation'] --- import eventAnnotationObj from './event_annotation.devdocs.json'; diff --git a/api_docs/event_log.devdocs.json b/api_docs/event_log.devdocs.json index 319db1013a62d..8e717efd4ad23 100644 --- a/api_docs/event_log.devdocs.json +++ b/api_docs/event_log.devdocs.json @@ -29,6 +29,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -42,6 +43,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -55,6 +57,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -72,6 +75,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -87,6 +91,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -100,6 +105,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -117,6 +123,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -130,6 +137,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -147,6 +155,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -160,6 +169,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -177,6 +187,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -190,6 +201,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -204,6 +216,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -221,6 +234,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -234,6 +248,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -251,6 +266,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -264,6 +280,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -278,6 +295,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -297,6 +315,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -310,6 +329,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -329,6 +349,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -342,6 +363,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -356,6 +378,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -375,6 +398,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -388,6 +412,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -405,6 +430,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -418,6 +444,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -437,6 +464,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -450,6 +478,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -469,6 +498,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -482,6 +512,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -497,6 +528,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -514,6 +546,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -527,6 +560,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -544,6 +578,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -557,6 +592,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -571,6 +607,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -598,6 +635,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -611,6 +649,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -638,6 +677,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -651,6 +691,7 @@ ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -675,6 +716,7 @@ ], "path": "x-pack/plugins/event_log/server/lib/ready_signal.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -691,6 +733,7 @@ ], "path": "x-pack/plugins/event_log/common/lib/millis_to_nanos.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -704,6 +747,7 @@ ], "path": "x-pack/plugins/event_log/common/lib/millis_to_nanos.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -722,6 +766,7 @@ ], "path": "x-pack/plugins/event_log/common/lib/nanos_to_millis.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -735,6 +780,7 @@ ], "path": "x-pack/plugins/event_log/common/lib/nanos_to_millis.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -752,6 +798,7 @@ "description": [], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -766,7 +813,8 @@ "> | undefined" ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -780,6 +828,7 @@ "description": [], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -803,6 +852,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -816,6 +866,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -830,6 +881,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -846,6 +898,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -860,6 +913,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -887,6 +941,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -900,6 +955,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -914,6 +970,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -930,6 +987,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -944,6 +1002,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -961,6 +1020,7 @@ "description": [], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -976,6 +1036,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -989,6 +1050,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1008,6 +1070,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -1021,6 +1084,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1035,6 +1099,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1054,6 +1119,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -1067,6 +1133,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1084,6 +1151,7 @@ "description": [], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -1093,7 +1161,8 @@ "label": "page", "description": [], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventLog", @@ -1103,7 +1172,8 @@ "label": "per_page", "description": [], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventLog", @@ -1113,7 +1183,8 @@ "label": "total", "description": [], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "eventLog", @@ -1126,7 +1197,8 @@ "(Readonly<{ error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; tags?: string[] | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; message?: string | undefined; kibana?: Readonly<{ alert?: Readonly<{ rule?: Readonly<{ consumer?: string | undefined; execution?: Readonly<{ status?: string | undefined; metrics?: Readonly<{ number_of_triggered_actions?: string | number | undefined; number_of_generated_actions?: string | number | undefined; alert_counts?: Readonly<{ recovered?: string | number | undefined; active?: string | number | undefined; new?: string | number | undefined; } & {}> | undefined; number_of_searches?: string | number | undefined; total_indexing_duration_ms?: string | number | undefined; es_search_duration_ms?: string | number | undefined; total_search_duration_ms?: string | number | undefined; execution_gap_duration_s?: string | number | undefined; rule_type_run_duration_ms?: string | number | undefined; process_alerts_duration_ms?: string | number | undefined; trigger_actions_duration_ms?: string | number | undefined; process_rule_duration_ms?: string | number | undefined; claim_to_start_duration_ms?: string | number | undefined; prepare_rule_duration_ms?: string | number | undefined; total_run_duration_ms?: string | number | undefined; } & {}> | undefined; uuid?: string | undefined; status_order?: string | number | undefined; } & {}> | undefined; rule_type_id?: string | undefined; } & {}> | undefined; } & {}> | undefined; version?: string | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ id?: string | undefined; schedule_delay?: string | number | undefined; scheduled?: string | undefined; } & {}> | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; namespace?: string | undefined; rel?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; space_ids?: string[] | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; rule?: Readonly<{ id?: string | undefined; description?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; outcome?: string | undefined; created?: string | undefined; category?: string[] | undefined; end?: string | undefined; original?: string | undefined; duration?: string | number | undefined; code?: string | undefined; url?: string | undefined; action?: string | undefined; kind?: string | undefined; hash?: string | undefined; severity?: string | number | undefined; dataset?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: string | number | undefined; timezone?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; } & {}> | undefined)[]" ], "path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1146,6 +1218,7 @@ ], "path": "x-pack/plugins/event_log/generated/schemas.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1160,6 +1233,7 @@ ], "path": "x-pack/plugins/event_log/generated/schemas.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1174,6 +1248,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1187,6 +1262,7 @@ "description": [], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -1200,6 +1276,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1215,6 +1292,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1230,6 +1308,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -1243,6 +1322,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1257,6 +1337,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1274,6 +1355,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -1287,6 +1369,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1301,6 +1384,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1318,6 +1402,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1335,6 +1420,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -1348,6 +1434,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1362,6 +1449,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1388,6 +1476,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -1401,6 +1490,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1418,6 +1508,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1433,6 +1524,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1449,6 +1541,7 @@ "description": [], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -1471,6 +1564,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -1485,6 +1579,7 @@ ], "path": "x-pack/plugins/event_log/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1510,6 +1605,7 @@ ], "path": "x-pack/plugins/event_log/common/lib/millis_to_nanos.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -1523,6 +1619,7 @@ ], "path": "x-pack/plugins/event_log/common/lib/millis_to_nanos.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1541,6 +1638,7 @@ ], "path": "x-pack/plugins/event_log/common/lib/nanos_to_millis.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "eventLog", @@ -1554,6 +1652,7 @@ ], "path": "x-pack/plugins/event_log/common/lib/nanos_to_millis.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1576,6 +1675,7 @@ ], "path": "x-pack/plugins/event_log/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/event_log.mdx b/api_docs/event_log.mdx index a5f3cdbd69668..cf1ddf2891d12 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'eventLog'] --- import eventLogObj from './event_log.devdocs.json'; diff --git a/api_docs/expression_error.devdocs.json b/api_docs/expression_error.devdocs.json index 0aaad3ae9ff4e..5323fcd26ccd9 100644 --- a/api_docs/expression_error.devdocs.json +++ b/api_docs/expression_error.devdocs.json @@ -31,6 +31,7 @@ ], "path": "src/plugins/expression_error/public/expression_renderers/debug_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionError", @@ -51,6 +52,7 @@ ], "path": "src/plugins/expression_error/public/expression_renderers/debug_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -87,6 +89,7 @@ ], "path": "src/plugins/expression_error/public/expression_renderers/error_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionError", @@ -107,6 +110,7 @@ ], "path": "src/plugins/expression_error/public/expression_renderers/error_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -137,6 +141,7 @@ ], "path": "src/plugins/expression_error/public/expression_renderers/debug_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionError", @@ -153,6 +158,7 @@ ], "path": "src/plugins/expression_error/public/expression_renderers/debug_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -185,6 +191,7 @@ ], "path": "src/plugins/expression_error/public/expression_renderers/error_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionError", @@ -201,6 +208,7 @@ ], "path": "src/plugins/expression_error/public/expression_renderers/error_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -219,6 +227,7 @@ ], "path": "src/plugins/expression_error/public/components/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -232,7 +241,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -253,6 +263,7 @@ ], "path": "src/plugins/expression_error/public/components/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -266,7 +277,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -288,6 +300,7 @@ ], "path": "src/plugins/expression_error/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -318,6 +331,7 @@ ], "path": "src/plugins/expression_error/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -332,6 +346,7 @@ ], "path": "src/plugins/expression_error/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -346,6 +361,7 @@ ], "path": "src/plugins/expression_error/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/expression_error.mdx b/api_docs/expression_error.mdx index 4afc972974d27..06faf9fb410ec 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: 2022-09-05 +date: 2022-09-08 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 67065298ff9a6..1575310553e8e 100644 --- a/api_docs/expression_gauge.devdocs.json +++ b/api_docs/expression_gauge.devdocs.json @@ -31,6 +31,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/public/components/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionGauge", @@ -51,6 +52,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/public/components/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -72,6 +74,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/public/components/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -108,6 +111,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/public/components/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionGauge", @@ -128,6 +132,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/public/components/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -149,6 +154,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/public/components/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -164,6 +170,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/public/components/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -178,6 +185,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/public/components/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -214,6 +222,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/public/components/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionGauge", @@ -234,6 +243,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/public/components/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -255,6 +265,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/public/components/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -270,6 +281,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/public/components/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -284,6 +296,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/public/components/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -310,6 +323,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/public/components/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionGauge", @@ -323,6 +337,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/public/components/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -344,6 +359,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/public/components/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -386,6 +402,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/common/expression_functions/gauge_function.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -401,6 +418,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionGauge", @@ -413,7 +431,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionGauge", @@ -426,7 +445,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionGauge", @@ -439,7 +459,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionGauge", @@ -452,7 +473,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -466,6 +488,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionGauge", @@ -484,7 +507,8 @@ } ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionGauge", @@ -524,7 +548,8 @@ "> | undefined; ariaLabel?: string | undefined; }" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -538,6 +563,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionGauge", @@ -558,7 +584,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionGauge", @@ -579,7 +606,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionGauge", @@ -600,7 +628,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionGauge", @@ -621,7 +650,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionGauge", @@ -634,7 +664,8 @@ "\"auto\" | \"hidden\" | \"bands\"" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionGauge", @@ -647,7 +678,8 @@ "\"none\" | \"auto\" | \"custom\"" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionGauge", @@ -660,7 +692,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionGauge", @@ -673,7 +706,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionGauge", @@ -687,7 +721,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionGauge", @@ -700,7 +735,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionGauge", @@ -714,7 +750,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionGauge", @@ -730,7 +767,8 @@ "> | undefined" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionGauge", @@ -743,7 +781,8 @@ "\"horizontalBullet\" | \"verticalBullet\" | \"arc\" | \"circle\"" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionGauge", @@ -759,6 +798,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "visTypeGauge", @@ -777,7 +817,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionGauge", @@ -790,7 +831,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -810,6 +852,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -841,6 +884,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -863,7 +907,8 @@ "> | undefined" ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -907,6 +952,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -978,6 +1024,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -992,6 +1039,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1033,6 +1081,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1047,6 +1096,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1061,6 +1111,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1075,6 +1126,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1089,6 +1141,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1105,6 +1158,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1119,6 +1173,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1133,6 +1188,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1147,6 +1203,7 @@ ], "path": "src/plugins/chart_expressions/expression_gauge/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/expression_gauge.mdx b/api_docs/expression_gauge.mdx index 140651b1cd629..20e186f5644ce 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: 2022-09-05 +date: 2022-09-08 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 2838d206d03a2..dc63246351b8a 100644 --- a/api_docs/expression_heatmap.devdocs.json +++ b/api_docs/expression_heatmap.devdocs.json @@ -32,6 +32,7 @@ ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_function.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -47,6 +48,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -59,7 +61,8 @@ "\"brush\"" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -80,7 +83,8 @@ "; column: number; range: number[]; timeFieldName?: string | undefined; }" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -94,6 +98,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -106,7 +111,8 @@ "\"filter\"" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -127,7 +133,8 @@ ", \"rows\" | \"columns\">; column: number; row: number; value: any; }[]; timeFieldName?: string | undefined; negate?: boolean | undefined; }" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -141,6 +148,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -153,7 +161,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -166,7 +175,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -179,7 +189,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -192,7 +203,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -214,7 +226,8 @@ "> | undefined" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -235,7 +248,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -256,7 +270,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -277,7 +292,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -298,7 +314,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -319,7 +336,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -333,7 +351,8 @@ " & { type: \"heatmap_legend\"; }" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -347,7 +366,8 @@ " & { type: \"heatmap_grid\"; }" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -360,7 +380,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -374,6 +395,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -392,7 +414,8 @@ } ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -411,7 +434,8 @@ } ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -431,6 +455,7 @@ ], "path": "src/plugins/chart_expressions/expression_heatmap/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -462,6 +487,7 @@ ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -484,7 +510,8 @@ "> | undefined" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -502,6 +529,7 @@ ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -517,6 +545,7 @@ ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -582,6 +611,7 @@ ], "path": "src/plugins/chart_expressions/expression_heatmap/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -596,6 +626,7 @@ ], "path": "src/plugins/chart_expressions/expression_heatmap/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -610,6 +641,7 @@ ], "path": "src/plugins/chart_expressions/expression_heatmap/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -623,6 +655,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -635,7 +668,8 @@ "\"heatmap_grid\"" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -648,7 +682,8 @@ "never[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -661,7 +696,8 @@ "\"heatmap_grid\"" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -671,7 +707,8 @@ "label": "help", "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -684,7 +721,8 @@ "\"null\"[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -695,6 +733,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -707,6 +746,7 @@ ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -719,7 +759,8 @@ "\"number\"[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -729,7 +770,8 @@ "label": "help", "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -742,7 +784,8 @@ "false" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -755,6 +798,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -767,7 +811,8 @@ "\"string\"[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -777,7 +822,8 @@ "label": "help", "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -790,7 +836,8 @@ "false" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -805,6 +852,7 @@ ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -817,7 +865,8 @@ "\"boolean\"[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -827,7 +876,8 @@ "label": "help", "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -842,6 +892,7 @@ ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -854,7 +905,8 @@ "\"boolean\"[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -864,7 +916,8 @@ "label": "help", "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -877,6 +930,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -889,7 +943,8 @@ "\"boolean\"[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -899,7 +954,8 @@ "label": "help", "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -912,6 +968,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -924,7 +981,8 @@ "\"string\"[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -934,7 +992,8 @@ "label": "help", "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -947,7 +1006,8 @@ "false" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -962,6 +1022,7 @@ ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -974,7 +1035,8 @@ "\"boolean\"[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -984,7 +1046,8 @@ "label": "help", "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -997,6 +1060,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -1009,7 +1073,8 @@ "\"boolean\"[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1019,7 +1084,8 @@ "label": "help", "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1032,6 +1098,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -1044,7 +1111,8 @@ "\"string\"[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1054,7 +1122,8 @@ "label": "help", "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1067,7 +1136,8 @@ "false" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1087,6 +1157,7 @@ ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -1100,6 +1171,7 @@ ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1114,6 +1186,7 @@ ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_grid.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1131,6 +1204,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -1143,7 +1217,8 @@ "\"heatmap_legend\"" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1156,7 +1231,8 @@ "never[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1169,7 +1245,8 @@ "\"heatmap_legend\"" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1179,7 +1256,8 @@ "label": "help", "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1192,7 +1270,8 @@ "\"null\"[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1203,6 +1282,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -1213,6 +1293,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -1225,7 +1306,8 @@ "\"boolean\"[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1235,7 +1317,8 @@ "label": "help", "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1248,6 +1331,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -1260,7 +1344,8 @@ "\"string\"[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1273,7 +1358,8 @@ "\"right\"" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1286,7 +1372,8 @@ "(\"top\" | \"bottom\" | \"left\" | \"right\")[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1296,7 +1383,8 @@ "label": "help", "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1309,7 +1397,8 @@ "true" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1322,6 +1411,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -1334,7 +1424,8 @@ "\"number\"[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1344,7 +1435,8 @@ "label": "help", "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1357,6 +1449,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -1369,7 +1462,8 @@ "\"boolean\"[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1382,7 +1476,8 @@ "true" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1392,7 +1487,8 @@ "label": "help", "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1405,6 +1501,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -1417,7 +1514,8 @@ "\"string\"[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1436,7 +1534,8 @@ } ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1446,7 +1545,8 @@ "label": "help", "description": [], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1466,7 +1566,8 @@ "[]" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionHeatmap", @@ -1479,7 +1580,8 @@ "true" ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1509,6 +1611,7 @@ ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionHeatmap", @@ -1522,6 +1625,7 @@ ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1536,6 +1640,7 @@ ], "path": "src/plugins/chart_expressions/expression_heatmap/common/expression_functions/heatmap_legend.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/expression_heatmap.mdx b/api_docs/expression_heatmap.mdx index 79658f01632eb..404f0688b7d1d 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionHeatmap'] --- import expressionHeatmapObj from './expression_heatmap.devdocs.json'; diff --git a/api_docs/expression_image.devdocs.json b/api_docs/expression_image.devdocs.json index d788bcd57b80b..d6c63b9fb7680 100644 --- a/api_docs/expression_image.devdocs.json +++ b/api_docs/expression_image.devdocs.json @@ -35,6 +35,7 @@ ], "path": "src/plugins/expression_image/public/expression_renderers/image_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionImage", @@ -51,6 +52,7 @@ ], "path": "src/plugins/expression_image/public/expression_renderers/image_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -93,6 +95,7 @@ ], "path": "src/plugins/expression_image/public/expression_renderers/image_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionImage", @@ -113,6 +116,7 @@ ], "path": "src/plugins/expression_image/public/expression_renderers/image_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -136,6 +140,7 @@ ], "path": "src/plugins/expression_image/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -159,6 +164,7 @@ ], "path": "src/plugins/expression_image/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -176,6 +182,7 @@ "description": [], "path": "src/plugins/expression_image/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionImage", @@ -188,7 +195,8 @@ "string | null" ], "path": "src/plugins/expression_image/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionImage", @@ -208,7 +216,8 @@ " | null" ], "path": "src/plugins/expression_image/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -222,6 +231,7 @@ "description": [], "path": "src/plugins/expression_image/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionImage", @@ -231,7 +241,8 @@ "label": "width", "description": [], "path": "src/plugins/expression_image/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionImage", @@ -241,7 +252,8 @@ "label": "height", "description": [], "path": "src/plugins/expression_image/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -255,6 +267,7 @@ "description": [], "path": "src/plugins/expression_image/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionImage", @@ -267,7 +280,8 @@ "\"image\"" ], "path": "src/plugins/expression_image/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionImage", @@ -277,7 +291,8 @@ "label": "mode", "description": [], "path": "src/plugins/expression_image/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionImage", @@ -287,7 +302,8 @@ "label": "dataurl", "description": [], "path": "src/plugins/expression_image/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -303,6 +319,7 @@ "description": [], "path": "src/plugins/expression_image/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -319,6 +336,7 @@ ], "path": "src/plugins/expression_image/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -333,6 +351,7 @@ ], "path": "src/plugins/expression_image/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -381,6 +400,7 @@ ], "path": "src/plugins/expression_image/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -397,6 +417,7 @@ ], "path": "src/plugins/expression_image/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -411,6 +432,7 @@ ], "path": "src/plugins/expression_image/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -425,6 +447,7 @@ ], "path": "src/plugins/expression_image/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -439,6 +462,7 @@ ], "path": "src/plugins/expression_image/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/expression_image.mdx b/api_docs/expression_image.mdx index 9a5e2cd685e68..4fd5a55f50085 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionImage'] --- import expressionImageObj from './expression_image.devdocs.json'; diff --git a/api_docs/expression_legacy_metric_vis.devdocs.json b/api_docs/expression_legacy_metric_vis.devdocs.json index 4706884222b9f..8921746a2df8c 100644 --- a/api_docs/expression_legacy_metric_vis.devdocs.json +++ b/api_docs/expression_legacy_metric_vis.devdocs.json @@ -38,6 +38,7 @@ ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/expression_functions/metric_vis_function.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -53,6 +54,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionLegacyMetricVis", @@ -73,7 +75,8 @@ ")[]" ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -94,7 +97,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -108,6 +112,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionLegacyMetricVis", @@ -117,7 +122,8 @@ "label": "percentageMode", "description": [], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -130,7 +136,8 @@ "\"Background\" | \"Labels\" | \"None\"" ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -140,7 +147,8 @@ "label": "showLabels", "description": [], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -162,7 +170,8 @@ "> | undefined" ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -181,7 +190,8 @@ } ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -200,7 +210,8 @@ } ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -213,7 +224,8 @@ "\"top\" | \"bottom\"" ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -234,7 +246,8 @@ ")[]" ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -255,7 +268,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -265,7 +279,8 @@ "label": "colorFullBackground", "description": [], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -278,7 +293,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -292,6 +308,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionLegacyMetricVis", @@ -301,7 +318,8 @@ "label": "value", "description": [], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -311,7 +329,8 @@ "label": "label", "description": [], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -324,7 +343,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -337,7 +357,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -347,7 +368,8 @@ "label": "lightText", "description": [], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -357,7 +379,8 @@ "label": "colIndex", "description": [], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -367,7 +390,8 @@ "label": "rowIndex", "description": [], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -381,6 +405,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionLegacyMetricVis", @@ -390,7 +415,8 @@ "label": "percentageMode", "description": [], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -403,7 +429,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -416,7 +443,8 @@ "\"Background\" | \"Labels\" | \"None\"" ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -436,7 +464,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -466,7 +495,8 @@ "; }" ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -494,7 +524,8 @@ ", \"bgColor\" | \"labelColor\">" ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -504,7 +535,8 @@ "label": "colorFullBackground", "description": [], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -517,7 +549,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -531,6 +564,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionLegacyMetricVis", @@ -543,7 +577,8 @@ "\"metric\"" ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -562,7 +597,8 @@ } ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -591,7 +627,8 @@ "; }" ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -605,6 +642,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionLegacyMetricVis", @@ -614,7 +652,8 @@ "label": "addTooltip", "description": [], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -624,7 +663,8 @@ "label": "addLegend", "description": [], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -643,7 +683,8 @@ } ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -662,7 +703,8 @@ } ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionLegacyMetricVis", @@ -675,7 +717,8 @@ "\"metric\"" ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -695,6 +738,7 @@ ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -715,6 +759,7 @@ ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -786,6 +831,7 @@ ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -800,6 +846,7 @@ ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -814,6 +861,7 @@ ], "path": "src/plugins/chart_expressions/expression_legacy_metric/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/expression_legacy_metric_vis.mdx b/api_docs/expression_legacy_metric_vis.mdx index 980c44172b913..d7358588b94c0 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionLegacyMetricVis'] --- import expressionLegacyMetricVisObj from './expression_legacy_metric_vis.devdocs.json'; diff --git a/api_docs/expression_metric.devdocs.json b/api_docs/expression_metric.devdocs.json index b1d73f67c0240..6bc0521161483 100644 --- a/api_docs/expression_metric.devdocs.json +++ b/api_docs/expression_metric.devdocs.json @@ -35,6 +35,7 @@ ], "path": "src/plugins/expression_metric/public/expression_renderers/metric_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionMetric", @@ -51,6 +52,7 @@ ], "path": "src/plugins/expression_metric/public/expression_renderers/metric_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -93,6 +95,7 @@ ], "path": "src/plugins/expression_metric/public/expression_renderers/metric_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionMetric", @@ -113,6 +116,7 @@ ], "path": "src/plugins/expression_metric/public/expression_renderers/metric_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -136,6 +140,7 @@ ], "path": "src/plugins/expression_metric/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -159,6 +164,7 @@ ], "path": "src/plugins/expression_metric/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -210,6 +216,7 @@ ], "path": "src/plugins/expression_metric/common/expression_functions/metric_function.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -225,6 +232,7 @@ "description": [], "path": "src/plugins/expression_metric/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionMetric", @@ -234,7 +242,8 @@ "label": "label", "description": [], "path": "src/plugins/expression_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetric", @@ -253,7 +262,8 @@ } ], "path": "src/plugins/expression_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetric", @@ -263,7 +273,8 @@ "label": "metricFormat", "description": [], "path": "src/plugins/expression_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetric", @@ -282,7 +293,8 @@ } ], "path": "src/plugins/expression_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -296,6 +308,7 @@ "description": [], "path": "src/plugins/expression_metric/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionMetric", @@ -307,7 +320,8 @@ "The text to display under the metric" ], "path": "src/plugins/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetric", @@ -328,7 +342,8 @@ } ], "path": "src/plugins/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetric", @@ -343,7 +358,8 @@ "string | number | null" ], "path": "src/plugins/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetric", @@ -364,7 +380,8 @@ } ], "path": "src/plugins/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetric", @@ -376,7 +393,8 @@ "NumeralJS format string" ], "path": "src/plugins/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -390,6 +408,7 @@ "description": [], "path": "src/plugins/expression_metric/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionMetric", @@ -399,7 +418,8 @@ "label": "width", "description": [], "path": "src/plugins/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetric", @@ -409,7 +429,8 @@ "label": "height", "description": [], "path": "src/plugins/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -429,6 +450,7 @@ ], "path": "src/plugins/expression_metric/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -501,6 +523,7 @@ ], "path": "src/plugins/expression_metric/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -517,6 +540,7 @@ ], "path": "src/plugins/expression_metric/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -531,6 +555,7 @@ ], "path": "src/plugins/expression_metric/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -552,6 +577,7 @@ ], "path": "src/plugins/expression_metric/common/expression_functions/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -566,6 +592,7 @@ ], "path": "src/plugins/expression_metric/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -580,6 +607,7 @@ ], "path": "src/plugins/expression_metric/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -594,6 +622,7 @@ ], "path": "src/plugins/expression_metric/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -608,6 +637,7 @@ ], "path": "src/plugins/expression_metric/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/expression_metric.mdx b/api_docs/expression_metric.mdx index 4bed9d1bd26fe..75b2eb2c6f778 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: 2022-09-05 +date: 2022-09-08 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 33d81d3ba1c61..1d5d817b6766b 100644 --- a/api_docs/expression_metric_vis.devdocs.json +++ b/api_docs/expression_metric_vis.devdocs.json @@ -23,6 +23,7 @@ ], "path": "src/plugins/chart_expressions/expression_metric/public/utils/palette_data_bounds.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionMetricVis", @@ -33,6 +34,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_metric/public/utils/palette_data_bounds.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionMetricVis", @@ -42,7 +44,8 @@ "label": "metric", "description": [], "path": "src/plugins/chart_expressions/expression_metric/public/utils/palette_data_bounds.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -55,7 +58,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/public/utils/palette_data_bounds.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -68,7 +72,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/public/utils/palette_data_bounds.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -91,6 +96,7 @@ ], "path": "src/plugins/chart_expressions/expression_metric/public/utils/palette_data_bounds.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -105,6 +111,7 @@ ], "path": "src/plugins/chart_expressions/expression_metric/public/utils/palette_data_bounds.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -147,6 +154,7 @@ ], "path": "src/plugins/chart_expressions/expression_metric/common/expression_functions/metric_vis_function.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -162,6 +170,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionMetricVis", @@ -181,7 +190,8 @@ } ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -202,7 +212,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -223,7 +234,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -244,7 +256,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -258,6 +271,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionMetricVis", @@ -277,7 +291,8 @@ } ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -298,7 +313,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -319,7 +335,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -340,7 +357,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -353,7 +371,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -366,7 +385,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -379,7 +399,8 @@ "\"horizontal\" | \"vertical\"" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -392,7 +413,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -414,7 +436,8 @@ "> | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -424,7 +447,8 @@ "label": "maxCols", "description": [], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -437,7 +461,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -451,6 +476,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionMetricVis", @@ -460,7 +486,8 @@ "label": "value", "description": [], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -470,7 +497,8 @@ "label": "label", "description": [], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -483,7 +511,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -496,7 +525,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -506,7 +536,8 @@ "label": "lightText", "description": [], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -516,7 +547,8 @@ "label": "colIndex", "description": [], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -526,7 +558,8 @@ "label": "rowIndex", "description": [], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -540,6 +573,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionMetricVis", @@ -552,7 +586,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -565,7 +600,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -578,7 +614,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -598,7 +635,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -611,7 +649,8 @@ "\"horizontal\" | \"vertical\"" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -621,7 +660,8 @@ "label": "maxCols", "description": [], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -634,7 +674,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -648,6 +689,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionMetricVis", @@ -660,7 +702,8 @@ "\"metric\"" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -679,7 +722,8 @@ } ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -708,7 +752,8 @@ "; }" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -722,6 +767,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionMetricVis", @@ -731,7 +777,8 @@ "label": "addTooltip", "description": [], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -741,7 +788,8 @@ "label": "addLegend", "description": [], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -760,7 +808,8 @@ } ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -779,7 +828,8 @@ } ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionMetricVis", @@ -792,7 +842,8 @@ "\"metric\"" ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -812,6 +863,7 @@ ], "path": "src/plugins/chart_expressions/expression_metric/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -832,6 +884,7 @@ ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -903,6 +956,7 @@ ], "path": "src/plugins/chart_expressions/expression_metric/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -917,6 +971,7 @@ ], "path": "src/plugins/chart_expressions/expression_metric/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -931,6 +986,7 @@ ], "path": "src/plugins/chart_expressions/expression_metric/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/expression_metric_vis.mdx b/api_docs/expression_metric_vis.mdx index 77d45f83b6c25..63c77f4efce12 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionMetricVis'] --- import expressionMetricVisObj from './expression_metric_vis.devdocs.json'; diff --git a/api_docs/expression_partition_vis.devdocs.json b/api_docs/expression_partition_vis.devdocs.json index 2f6134f683007..83045ce60af28 100644 --- a/api_docs/expression_partition_vis.devdocs.json +++ b/api_docs/expression_partition_vis.devdocs.json @@ -18,6 +18,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -32,6 +33,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -56,6 +58,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/server/types.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -82,6 +85,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/expression_functions/mosaic_vis_function.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -142,6 +146,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/expression_functions/partition_labels_function.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -165,6 +170,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/expression_functions/pie_vis_function.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -188,6 +194,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/expression_functions/treemap_vis_function.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -211,6 +218,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/expression_functions/waffle_vis_function.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -226,6 +234,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionPartitionVis", @@ -235,7 +244,8 @@ "label": "accessor", "description": [], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -258,7 +268,8 @@ "> | undefined; }" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -272,6 +283,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionPartitionVis", @@ -292,7 +304,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -313,7 +326,8 @@ ")[] | undefined" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -334,7 +348,8 @@ ")[] | undefined" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -355,7 +370,8 @@ ")[] | undefined" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -369,6 +385,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionPartitionVis", @@ -378,7 +395,8 @@ "label": "show", "description": [], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -397,7 +415,8 @@ } ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -407,7 +426,8 @@ "label": "values", "description": [], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -426,7 +446,8 @@ } ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -436,7 +457,8 @@ "label": "percentDecimals", "description": [], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -452,6 +474,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "visTypePie", @@ -477,6 +500,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "visTypePie", @@ -510,6 +534,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionPartitionVis", @@ -530,7 +555,8 @@ ")[] | undefined" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -540,7 +566,8 @@ "label": "nestedLegend", "description": [], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -564,6 +591,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionPartitionVis", @@ -582,7 +610,8 @@ } ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -601,7 +630,8 @@ } ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -615,7 +645,8 @@ "<{ [key: string]: unknown; }>" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -628,7 +659,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -641,7 +673,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -654,7 +687,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -674,7 +708,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -687,7 +722,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -700,7 +736,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -713,7 +750,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -737,6 +775,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionPartitionVis", @@ -757,7 +796,8 @@ ")[] | undefined" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -767,7 +807,8 @@ "label": "isDonut", "description": [], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -787,7 +828,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -800,7 +842,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -813,7 +856,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -826,7 +870,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -836,7 +881,8 @@ "label": "nestedLegend", "description": [], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -860,6 +906,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionPartitionVis", @@ -880,7 +927,8 @@ ")[] | undefined" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -890,7 +938,8 @@ "label": "nestedLegend", "description": [], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -914,6 +963,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionPartitionVis", @@ -934,7 +984,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionPartitionVis", @@ -944,7 +995,8 @@ "label": "showValuesInLegend", "description": [], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -960,6 +1012,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -971,6 +1024,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -982,6 +1036,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -993,6 +1048,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1025,6 +1081,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1039,6 +1096,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1104,6 +1162,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1118,6 +1177,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1132,6 +1192,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1146,6 +1207,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1211,6 +1273,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1225,6 +1288,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1239,6 +1303,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1253,6 +1318,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1318,6 +1384,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1332,6 +1399,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1397,6 +1465,7 @@ ], "path": "src/plugins/chart_expressions/expression_partition_vis/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/expression_partition_vis.mdx b/api_docs/expression_partition_vis.mdx index ba0de1a06fe7d..99a7e75a8a1de 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionPartitionVis'] --- import expressionPartitionVisObj from './expression_partition_vis.devdocs.json'; diff --git a/api_docs/expression_repeat_image.devdocs.json b/api_docs/expression_repeat_image.devdocs.json index ac0e108e7bf21..cd92f2803bc27 100644 --- a/api_docs/expression_repeat_image.devdocs.json +++ b/api_docs/expression_repeat_image.devdocs.json @@ -35,6 +35,7 @@ ], "path": "src/plugins/expression_repeat_image/public/expression_renderers/repeat_image_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionRepeatImage", @@ -51,6 +52,7 @@ ], "path": "src/plugins/expression_repeat_image/public/expression_renderers/repeat_image_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -93,6 +95,7 @@ ], "path": "src/plugins/expression_repeat_image/public/expression_renderers/repeat_image_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionRepeatImage", @@ -113,6 +116,7 @@ ], "path": "src/plugins/expression_repeat_image/public/expression_renderers/repeat_image_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -136,6 +140,7 @@ ], "path": "src/plugins/expression_repeat_image/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -159,6 +164,7 @@ ], "path": "src/plugins/expression_repeat_image/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -178,6 +184,7 @@ ], "path": "src/plugins/expression_repeat_image/common/expression_functions/repeat_image_function.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -193,6 +200,7 @@ "description": [], "path": "src/plugins/expression_repeat_image/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionRepeatImage", @@ -202,7 +210,8 @@ "label": "width", "description": [], "path": "src/plugins/expression_repeat_image/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionRepeatImage", @@ -212,7 +221,8 @@ "label": "height", "description": [], "path": "src/plugins/expression_repeat_image/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -226,6 +236,7 @@ "description": [], "path": "src/plugins/expression_repeat_image/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionRepeatImage", @@ -235,7 +246,8 @@ "label": "max", "description": [], "path": "src/plugins/expression_repeat_image/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionRepeatImage", @@ -245,7 +257,8 @@ "label": "count", "description": [], "path": "src/plugins/expression_repeat_image/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionRepeatImage", @@ -255,7 +268,8 @@ "label": "emptyImage", "description": [], "path": "src/plugins/expression_repeat_image/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionRepeatImage", @@ -265,7 +279,8 @@ "label": "image", "description": [], "path": "src/plugins/expression_repeat_image/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionRepeatImage", @@ -275,7 +290,8 @@ "label": "size", "description": [], "path": "src/plugins/expression_repeat_image/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -289,6 +305,7 @@ "description": [], "path": "src/plugins/expression_repeat_image/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionRepeatImage", @@ -298,7 +315,8 @@ "label": "count", "description": [], "path": "src/plugins/expression_repeat_image/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionRepeatImage", @@ -308,7 +326,8 @@ "label": "image", "description": [], "path": "src/plugins/expression_repeat_image/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionRepeatImage", @@ -318,7 +337,8 @@ "label": "size", "description": [], "path": "src/plugins/expression_repeat_image/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionRepeatImage", @@ -328,7 +348,8 @@ "label": "max", "description": [], "path": "src/plugins/expression_repeat_image/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionRepeatImage", @@ -341,7 +362,8 @@ "string | null" ], "path": "src/plugins/expression_repeat_image/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -361,6 +383,7 @@ ], "path": "src/plugins/expression_repeat_image/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -375,6 +398,7 @@ ], "path": "src/plugins/expression_repeat_image/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -423,6 +447,7 @@ ], "path": "src/plugins/expression_repeat_image/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -446,6 +471,7 @@ ], "path": "src/plugins/expression_repeat_image/common/expression_functions/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -460,6 +486,7 @@ ], "path": "src/plugins/expression_repeat_image/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -474,6 +501,7 @@ ], "path": "src/plugins/expression_repeat_image/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -488,6 +516,7 @@ ], "path": "src/plugins/expression_repeat_image/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -502,6 +531,7 @@ ], "path": "src/plugins/expression_repeat_image/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/expression_repeat_image.mdx b/api_docs/expression_repeat_image.mdx index 09fffe72b458f..02146ab3b4dd6 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionRepeatImage'] --- import expressionRepeatImageObj from './expression_repeat_image.devdocs.json'; diff --git a/api_docs/expression_reveal_image.devdocs.json b/api_docs/expression_reveal_image.devdocs.json index 0c1955f26aa13..315a1010491d9 100644 --- a/api_docs/expression_reveal_image.devdocs.json +++ b/api_docs/expression_reveal_image.devdocs.json @@ -29,6 +29,7 @@ ], "path": "src/plugins/expression_reveal_image/public/expression_renderers/reveal_image_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionRevealImage", @@ -45,6 +46,7 @@ ], "path": "src/plugins/expression_reveal_image/public/expression_renderers/reveal_image_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -81,6 +83,7 @@ ], "path": "src/plugins/expression_reveal_image/public/expression_renderers/reveal_image_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionRevealImage", @@ -101,6 +104,7 @@ ], "path": "src/plugins/expression_reveal_image/public/expression_renderers/reveal_image_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -124,6 +128,7 @@ ], "path": "src/plugins/expression_reveal_image/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -147,6 +152,7 @@ ], "path": "src/plugins/expression_reveal_image/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -170,6 +176,7 @@ ], "path": "src/plugins/expression_reveal_image/common/expression_functions/reveal_image_function.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -190,6 +197,7 @@ ], "path": "src/plugins/expression_reveal_image/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -205,6 +213,7 @@ ], "path": "src/plugins/expression_reveal_image/common/expression_functions/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -219,6 +228,7 @@ ], "path": "src/plugins/expression_reveal_image/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -233,6 +243,7 @@ ], "path": "src/plugins/expression_reveal_image/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -247,6 +258,7 @@ ], "path": "src/plugins/expression_reveal_image/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/expression_reveal_image.mdx b/api_docs/expression_reveal_image.mdx index 6b937d1fc421b..c992509c3b90a 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionRevealImage'] --- import expressionRevealImageObj from './expression_reveal_image.devdocs.json'; diff --git a/api_docs/expression_shape.devdocs.json b/api_docs/expression_shape.devdocs.json index efd37d1f3b4d0..c59f8630aed07 100644 --- a/api_docs/expression_shape.devdocs.json +++ b/api_docs/expression_shape.devdocs.json @@ -22,6 +22,7 @@ ], "path": "src/plugins/expression_shape/public/components/reusable/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -58,6 +59,7 @@ ], "path": "src/plugins/expression_shape/public/expression_renderers/progress_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -74,6 +76,7 @@ ], "path": "src/plugins/expression_shape/public/expression_renderers/progress_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -112,6 +115,7 @@ ], "path": "src/plugins/expression_shape/public/expression_renderers/shape_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -128,6 +132,7 @@ ], "path": "src/plugins/expression_shape/public/expression_renderers/shape_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -178,6 +183,7 @@ ], "path": "src/plugins/expression_shape/public/components/progress/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -191,7 +197,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -240,6 +247,7 @@ ], "path": "src/plugins/expression_shape/public/components/shape/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -253,7 +261,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -294,6 +303,7 @@ ], "path": "src/plugins/expression_shape/public/expression_renderers/progress_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -314,6 +324,7 @@ ], "path": "src/plugins/expression_shape/public/expression_renderers/progress_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -356,6 +367,7 @@ ], "path": "src/plugins/expression_shape/public/expression_renderers/shape_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -376,6 +388,7 @@ ], "path": "src/plugins/expression_shape/public/expression_renderers/shape_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -393,6 +406,7 @@ "description": [], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -405,7 +419,8 @@ "string | number | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -418,7 +433,8 @@ "string | number | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -431,7 +447,8 @@ "string | number | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -445,6 +462,7 @@ "description": [], "path": "src/plugins/expression_shape/public/components/shape/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -454,7 +472,8 @@ "label": "width", "description": [], "path": "src/plugins/expression_shape/public/components/shape/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -464,7 +483,8 @@ "label": "height", "description": [], "path": "src/plugins/expression_shape/public/components/shape/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -478,6 +498,7 @@ "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -487,7 +508,8 @@ "label": "width", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -497,7 +519,8 @@ "label": "height", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -521,6 +544,7 @@ ], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -533,7 +557,8 @@ "\"shape\"" ], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -547,6 +572,7 @@ "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -556,7 +582,8 @@ "label": "borderOffset", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -566,7 +593,8 @@ "label": "width", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -576,7 +604,8 @@ "label": "height", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -590,6 +619,7 @@ "description": [], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -602,7 +632,8 @@ "string | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -615,7 +646,8 @@ "\"butt\" | \"round\" | \"square\" | \"inherit\" | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -629,6 +661,7 @@ "description": [], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -641,7 +674,8 @@ "string | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -654,7 +688,8 @@ "\"round\" | \"inherit\" | \"miter\" | \"bevel\" | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -668,6 +703,7 @@ "description": [], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -677,7 +713,8 @@ "label": "barColor", "description": [], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -687,7 +724,8 @@ "label": "barWeight", "description": [], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -706,7 +744,8 @@ } ], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -719,7 +758,8 @@ "string | boolean" ], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -729,7 +769,8 @@ "label": "max", "description": [], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -748,7 +789,8 @@ } ], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -758,7 +800,8 @@ "label": "valueColor", "description": [], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -768,7 +811,8 @@ "label": "valueWeight", "description": [], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -782,6 +826,7 @@ "description": [], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -794,7 +839,8 @@ "string | number | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -807,7 +853,8 @@ "string | number | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -820,7 +867,8 @@ "string | number | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -833,7 +881,8 @@ "string | number | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -847,6 +896,7 @@ "description": [], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -859,7 +909,8 @@ "string | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -872,7 +923,8 @@ "string | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -885,7 +937,8 @@ "string | number | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -898,7 +951,8 @@ "string | number | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -918,7 +972,8 @@ " | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -931,7 +986,8 @@ "string | number | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -944,7 +1000,8 @@ "string | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -975,6 +1032,7 @@ ], "path": "src/plugins/expression_shape/public/components/shape/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -988,6 +1046,7 @@ ], "path": "src/plugins/expression_shape/public/components/shape/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -1002,7 +1061,8 @@ "HTMLElement" ], "path": "src/plugins/expression_shape/public/components/shape/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1016,6 +1076,7 @@ "description": [], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -1028,7 +1089,8 @@ "string | number | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -1041,7 +1103,8 @@ "string | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -1054,7 +1117,8 @@ "string | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -1067,7 +1131,8 @@ "string | number | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -1080,7 +1145,8 @@ "string | number | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1094,6 +1160,7 @@ "description": [], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -1114,6 +1181,7 @@ ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1129,6 +1197,7 @@ "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -1138,7 +1207,8 @@ "label": "border", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -1148,7 +1218,8 @@ "label": "borderWidth", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -1167,7 +1238,8 @@ } ], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -1177,7 +1249,8 @@ "label": "fill", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -1187,7 +1260,8 @@ "label": "maintainAspect", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1201,6 +1275,7 @@ "description": [], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -1220,7 +1295,8 @@ " | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -1239,7 +1315,8 @@ } ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -1267,7 +1344,8 @@ " & Readonly<{}> & Readonly<{ children?: React.ReactNode; }> & { ref?: React.RefObject | undefined; }" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -1287,7 +1365,8 @@ " | undefined" ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1301,6 +1380,7 @@ "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -1310,7 +1390,8 @@ "label": "minX", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -1320,7 +1401,8 @@ "label": "minY", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -1330,7 +1412,8 @@ "label": "width", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -1340,7 +1423,8 @@ "label": "height", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1356,6 +1440,7 @@ "description": [], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1367,6 +1452,7 @@ "description": [], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1378,6 +1464,7 @@ "description": [], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1444,6 +1531,7 @@ ], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -1494,6 +1582,7 @@ ], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -1510,6 +1599,7 @@ ], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1531,6 +1621,7 @@ ], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1552,6 +1643,7 @@ ], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1606,6 +1698,7 @@ ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1676,6 +1769,7 @@ ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1722,6 +1816,7 @@ ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1752,6 +1847,7 @@ ], "path": "src/plugins/expression_shape/public/components/reusable/shape_factory.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1796,6 +1892,7 @@ ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1810,6 +1907,7 @@ ], "path": "src/plugins/expression_shape/public/components/reusable/types.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1826,6 +1924,7 @@ ], "path": "src/plugins/expression_shape/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -1849,6 +1948,7 @@ ], "path": "src/plugins/expression_shape/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -1876,6 +1976,7 @@ ], "path": "src/plugins/expression_shape/common/lib/available_shapes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -1900,6 +2001,7 @@ ], "path": "src/plugins/expression_shape/common/lib/available_shapes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -1915,6 +2017,7 @@ "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -1924,7 +2027,8 @@ "label": "width", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -1934,7 +2038,8 @@ "label": "height", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1958,6 +2063,7 @@ ], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -1970,7 +2076,8 @@ "\"shape\"" ], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1984,6 +2091,7 @@ "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -1993,7 +2101,8 @@ "label": "borderOffset", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -2003,7 +2112,8 @@ "label": "width", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -2013,7 +2123,8 @@ "label": "height", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2027,6 +2138,7 @@ "description": [], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -2036,7 +2148,8 @@ "label": "barColor", "description": [], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -2046,7 +2159,8 @@ "label": "barWeight", "description": [], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -2065,7 +2179,8 @@ } ], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -2078,7 +2193,8 @@ "string | boolean" ], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -2088,7 +2204,8 @@ "label": "max", "description": [], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -2107,7 +2224,8 @@ } ], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -2117,7 +2235,8 @@ "label": "valueColor", "description": [], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -2127,7 +2246,8 @@ "label": "valueWeight", "description": [], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2141,6 +2261,7 @@ "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -2150,7 +2271,8 @@ "label": "border", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -2160,7 +2282,8 @@ "label": "borderWidth", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -2179,7 +2302,8 @@ } ], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -2189,7 +2313,8 @@ "label": "fill", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -2199,7 +2324,8 @@ "label": "maintainAspect", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2213,6 +2339,7 @@ "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionShape", @@ -2222,7 +2349,8 @@ "label": "minX", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -2232,7 +2360,8 @@ "label": "minY", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -2242,7 +2371,8 @@ "label": "width", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionShape", @@ -2252,7 +2382,8 @@ "label": "height", "description": [], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2268,6 +2399,7 @@ "description": [], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2279,6 +2411,7 @@ "description": [], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -2295,6 +2428,7 @@ ], "path": "src/plugins/expression_shape/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2309,6 +2443,7 @@ ], "path": "src/plugins/expression_shape/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2323,6 +2458,7 @@ ], "path": "src/plugins/expression_shape/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2387,6 +2523,7 @@ ], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -2437,6 +2574,7 @@ ], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -2453,6 +2591,7 @@ ], "path": "src/plugins/expression_shape/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2467,6 +2606,7 @@ ], "path": "src/plugins/expression_shape/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2481,6 +2621,7 @@ ], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2495,6 +2636,7 @@ ], "path": "src/plugins/expression_shape/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2509,6 +2651,7 @@ ], "path": "src/plugins/expression_shape/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2530,6 +2673,7 @@ ], "path": "src/plugins/expression_shape/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2551,6 +2695,7 @@ ], "path": "src/plugins/expression_shape/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2565,6 +2710,7 @@ ], "path": "src/plugins/expression_shape/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/expression_shape.mdx b/api_docs/expression_shape.mdx index 6e09d6d3e27af..157d67a02113c 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionShape'] --- import expressionShapeObj from './expression_shape.devdocs.json'; diff --git a/api_docs/expression_tagcloud.devdocs.json b/api_docs/expression_tagcloud.devdocs.json index e35f0a48ac19e..b95db148b15fe 100644 --- a/api_docs/expression_tagcloud.devdocs.json +++ b/api_docs/expression_tagcloud.devdocs.json @@ -19,6 +19,7 @@ ], "path": "src/plugins/chart_expressions/expression_tagcloud/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -49,6 +50,7 @@ ], "path": "src/plugins/chart_expressions/expression_tagcloud/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -63,6 +65,7 @@ ], "path": "src/plugins/chart_expressions/expression_tagcloud/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -77,6 +80,7 @@ ], "path": "src/plugins/chart_expressions/expression_tagcloud/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -93,6 +97,7 @@ ], "path": "src/plugins/chart_expressions/expression_tagcloud/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -107,6 +112,7 @@ ], "path": "src/plugins/chart_expressions/expression_tagcloud/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/expression_tagcloud.mdx b/api_docs/expression_tagcloud.mdx index b1eb05d85b946..b43acd78e213a 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: 2022-09-05 +date: 2022-09-08 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 e44ece4f5af4f..9f270c01df433 100644 --- a/api_docs/expression_x_y.devdocs.json +++ b/api_docs/expression_x_y.devdocs.json @@ -18,6 +18,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -32,6 +33,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -56,6 +58,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/server/types.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -73,6 +76,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionXY", @@ -92,7 +96,8 @@ "[]" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -105,7 +110,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -119,6 +125,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionXY", @@ -128,7 +135,8 @@ "label": "yLeft", "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -138,7 +146,8 @@ "label": "yRight", "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -152,6 +161,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionXY", @@ -164,7 +174,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -177,7 +188,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -190,7 +202,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -204,7 +217,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -217,7 +231,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -230,7 +245,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -243,7 +259,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -256,7 +273,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -269,7 +287,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -282,7 +301,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -295,7 +315,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -308,7 +329,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -328,7 +350,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -342,6 +365,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionXY", @@ -354,7 +378,8 @@ "\"custom\" | \"full\" | \"dataBounds\"" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -367,7 +392,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -380,7 +406,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -393,7 +420,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -425,6 +453,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionXY", @@ -434,7 +463,8 @@ "label": "timebucket", "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -447,7 +477,8 @@ "\"bottom\"" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -460,7 +491,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -474,7 +506,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -488,6 +521,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionXY", @@ -497,7 +531,8 @@ "label": "forAccessor", "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -510,7 +545,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -523,7 +559,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -537,6 +574,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionXY", @@ -557,7 +595,8 @@ ")[]" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -570,7 +609,8 @@ "\"bar\" | \"line\" | \"area\"" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -591,7 +631,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -604,7 +645,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -625,7 +667,8 @@ ")[] | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -646,7 +689,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -659,7 +703,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -672,7 +717,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -685,7 +731,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -698,7 +745,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -711,7 +759,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -724,7 +773,8 @@ "\"linear\" | \"time\" | \"ordinal\"" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -734,7 +784,8 @@ "label": "isHistogram", "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -744,7 +795,8 @@ "label": "isPercentage", "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -754,7 +806,8 @@ "label": "isStacked", "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -764,7 +817,8 @@ "label": "isHorizontal", "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -778,7 +832,8 @@ "<{ [key: string]: unknown; }>" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -798,7 +853,8 @@ "[] | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -818,7 +874,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -832,6 +889,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionXY", @@ -843,7 +901,8 @@ "\nFlag whether the legend should be shown. If there is just a single series, it will be hidden" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -858,7 +917,8 @@ "\"top\" | \"bottom\" | \"left\" | \"right\"" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -873,7 +933,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -888,7 +949,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -903,7 +965,8 @@ "\"left\" | \"right\" | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -918,7 +981,8 @@ "\"top\" | \"bottom\" | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -933,7 +997,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -948,7 +1013,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -963,7 +1029,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -985,7 +1052,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1016,6 +1084,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionXY", @@ -1035,7 +1104,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1048,7 +1118,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1068,7 +1139,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1088,7 +1160,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1108,7 +1181,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1121,7 +1195,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1135,7 +1210,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1149,6 +1225,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionXY", @@ -1161,7 +1238,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1174,7 +1252,8 @@ "string[]" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1187,7 +1266,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1207,7 +1287,8 @@ "[] | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1227,7 +1308,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1258,6 +1340,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionXY", @@ -1277,7 +1360,8 @@ } ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1308,6 +1392,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionXY", @@ -1327,7 +1412,8 @@ " & { type: \"legendConfig\"; }" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1347,7 +1433,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1360,7 +1447,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1373,7 +1461,8 @@ "\"hide\" | \"show\"" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1387,7 +1476,8 @@ "[]" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1401,7 +1491,8 @@ "[]" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1421,7 +1512,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1434,7 +1526,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1447,7 +1540,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1460,7 +1554,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1473,7 +1568,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1493,7 +1589,8 @@ "[] | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1513,7 +1610,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1526,7 +1624,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1539,7 +1638,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1552,7 +1652,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1573,7 +1674,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1594,7 +1696,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1607,7 +1710,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1620,7 +1724,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1630,7 +1735,8 @@ "label": "showTooltip", "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1644,6 +1750,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionXY", @@ -1656,7 +1763,8 @@ "XYProps" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1670,6 +1778,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionXY", @@ -1682,7 +1791,8 @@ "\"render\"" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1695,7 +1805,8 @@ "\"xyVis\"" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1714,7 +1825,8 @@ } ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1745,6 +1857,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressionXY", @@ -1764,7 +1877,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1777,7 +1891,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressionXY", @@ -1797,7 +1912,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1817,6 +1933,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1838,6 +1955,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1852,6 +1970,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1866,6 +1985,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1882,6 +2002,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1904,6 +2025,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1932,6 +2054,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1968,6 +2091,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1990,6 +2114,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2012,6 +2137,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2033,6 +2159,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2066,6 +2193,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2098,6 +2226,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2112,6 +2241,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2138,6 +2268,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2152,6 +2283,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2166,6 +2298,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2180,6 +2313,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2194,6 +2328,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2215,6 +2350,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2229,6 +2365,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2243,6 +2380,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2257,6 +2395,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2278,6 +2417,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2308,6 +2448,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2337,6 +2478,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2351,6 +2493,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2365,6 +2508,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2386,6 +2530,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2400,6 +2545,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2414,6 +2560,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2446,6 +2593,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2476,6 +2624,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2497,6 +2646,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2511,6 +2661,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/expression_x_y.mdx b/api_docs/expression_x_y.mdx index 3090e2ca5ae36..f5aa37c47d8bd 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: 2022-09-05 +date: 2022-09-08 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 f39f113576e2a..21faf370389c9 100644 --- a/api_docs/expressions.devdocs.json +++ b/api_docs/expressions.devdocs.json @@ -21,6 +21,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -90,7 +91,8 @@ " | Output>>, {}>" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -105,7 +107,8 @@ "Input" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -129,7 +132,8 @@ ">" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -161,7 +165,8 @@ " | Output>>" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -183,7 +188,8 @@ "" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -193,7 +199,8 @@ "label": "expression", "description": [], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -206,7 +213,8 @@ "InspectorAdapters" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -220,6 +228,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -239,6 +248,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -254,6 +264,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -273,6 +284,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -308,6 +320,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -321,6 +334,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -335,6 +349,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -362,6 +377,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -382,6 +398,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -396,6 +413,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -423,6 +441,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -436,6 +455,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -450,6 +470,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -464,6 +485,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -481,6 +503,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -494,6 +517,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -508,6 +532,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -533,6 +558,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -546,6 +572,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -567,6 +594,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -602,6 +630,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -615,6 +644,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -629,6 +659,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -651,6 +682,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -686,6 +718,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -705,6 +738,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -719,6 +753,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -748,6 +783,7 @@ ], "path": "src/plugins/expressions/common/execution/execution_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -757,7 +793,8 @@ "label": "isPending", "description": [], "path": "src/plugins/expressions/common/execution/execution_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -777,7 +814,8 @@ "" ], "path": "src/plugins/expressions/common/execution/execution_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -791,6 +829,7 @@ ], "path": "src/plugins/expressions/common/execution/execution_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -811,6 +850,7 @@ ], "path": "src/plugins/expressions/common/execution/execution_contract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -830,6 +870,7 @@ ], "path": "src/plugins/expressions/common/execution/execution_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -865,6 +906,7 @@ ], "path": "src/plugins/expressions/common/execution/execution_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -882,6 +924,7 @@ ], "path": "src/plugins/expressions/common/execution/execution_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -906,6 +949,7 @@ ], "path": "src/plugins/expressions/common/execution/execution_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -930,6 +974,7 @@ ], "path": "src/plugins/expressions/common/execution/execution_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -971,6 +1016,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -1002,6 +1048,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -1016,6 +1063,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1037,6 +1085,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1084,7 +1133,8 @@ ">" ], "path": "src/plugins/expressions/common/executor/executor.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -1106,6 +1156,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": true, + "trackAdoption": false, "references": [] }, { @@ -1128,6 +1179,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": true, + "trackAdoption": false, "references": [] }, { @@ -1142,6 +1194,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -1156,6 +1209,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1177,6 +1231,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1200,7 +1255,8 @@ "" ], "path": "src/plugins/expressions/common/executor/executor.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -1230,6 +1286,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -1258,6 +1315,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1283,6 +1341,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -1296,6 +1355,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1310,6 +1370,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1335,6 +1396,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -1348,6 +1410,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1381,6 +1444,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -1409,6 +1473,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1434,6 +1499,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -1447,6 +1513,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1472,6 +1539,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1486,7 +1554,8 @@ "{ [x: string]: unknown; }" ], "path": "src/plugins/expressions/common/executor/executor.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -1536,6 +1605,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -1558,6 +1628,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1574,6 +1645,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1594,6 +1666,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1643,6 +1716,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -1663,6 +1737,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1683,6 +1758,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1717,6 +1793,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -1736,6 +1813,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1751,6 +1829,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1786,6 +1865,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -1805,6 +1885,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1830,6 +1911,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -1849,6 +1931,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1863,6 +1946,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1887,6 +1971,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1919,6 +2004,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -1941,6 +2027,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1984,6 +2071,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -1995,7 +2083,8 @@ "\nName of function" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2008,7 +2097,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2023,7 +2113,8 @@ "string[]" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2035,7 +2126,8 @@ "\nReturn type of function. This SHOULD be supplied. We use it for UI\nand autocomplete hinting. We may also use it for optimizations in\nthe future." ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2051,6 +2143,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2064,7 +2157,8 @@ "any" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2077,7 +2171,8 @@ "{ [x: string]: unknown; }" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2090,7 +2185,8 @@ "object" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2104,7 +2200,8 @@ "\nA short help text." ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2117,6 +2214,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -2132,7 +2230,8 @@ "string[] | undefined" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2142,7 +2241,8 @@ "label": "disabled", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2154,7 +2254,8 @@ "\nDeprecation flag." ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2176,6 +2277,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2197,7 +2299,8 @@ "[]; }" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2210,7 +2313,8 @@ "{ [x: string]: unknown; }" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2244,6 +2348,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2265,7 +2370,8 @@ "[]; }" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2299,6 +2405,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2320,7 +2427,8 @@ "[]; }" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2334,7 +2442,8 @@ "[]" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2363,7 +2472,8 @@ } ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2377,6 +2487,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -2396,6 +2507,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2413,6 +2525,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -2426,6 +2539,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2453,6 +2567,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -2462,7 +2577,8 @@ "label": "name", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2472,7 +2588,8 @@ "label": "required", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2482,7 +2599,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2535,7 +2653,8 @@ " | UnresolvedArrayTypeToArgumentString)[]) | undefined" ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2548,7 +2667,8 @@ "string | T | undefined" ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2561,7 +2681,8 @@ "string[]" ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2571,7 +2692,8 @@ "label": "deprecated", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2581,7 +2703,8 @@ "label": "multi", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2591,7 +2714,8 @@ "label": "resolve", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2607,6 +2731,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": true, + "trackAdoption": false, "references": [] }, { @@ -2620,7 +2745,8 @@ "T[]" ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2634,6 +2760,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -2647,6 +2774,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2668,6 +2796,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2685,6 +2814,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -2698,6 +2828,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2715,6 +2846,7 @@ "description": [], "path": "src/plugins/expressions/public/loader.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -2736,7 +2868,8 @@ ">" ], "path": "src/plugins/expressions/public/loader.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2750,7 +2883,8 @@ "" ], "path": "src/plugins/expressions/public/loader.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2764,7 +2898,8 @@ "" ], "path": "src/plugins/expressions/public/loader.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2786,7 +2921,8 @@ ">" ], "path": "src/plugins/expressions/public/loader.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2800,7 +2936,8 @@ "" ], "path": "src/plugins/expressions/public/loader.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -2814,6 +2951,7 @@ ], "path": "src/plugins/expressions/public/loader.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -2827,6 +2965,7 @@ ], "path": "src/plugins/expressions/public/loader.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2849,6 +2988,7 @@ ], "path": "src/plugins/expressions/public/loader.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2870,6 +3010,7 @@ ], "path": "src/plugins/expressions/public/loader.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2887,6 +3028,7 @@ ], "path": "src/plugins/expressions/public/loader.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2902,6 +3044,7 @@ ], "path": "src/plugins/expressions/public/loader.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2917,6 +3060,7 @@ ], "path": "src/plugins/expressions/public/loader.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2940,6 +3084,7 @@ ], "path": "src/plugins/expressions/public/loader.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2955,6 +3100,7 @@ ], "path": "src/plugins/expressions/public/loader.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2978,6 +3124,7 @@ ], "path": "src/plugins/expressions/public/loader.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3009,6 +3156,7 @@ ], "path": "src/plugins/expressions/public/loader.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -3030,6 +3178,7 @@ ], "path": "src/plugins/expressions/public/loader.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -3051,6 +3200,7 @@ ], "path": "src/plugins/expressions/public/loader.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3078,6 +3228,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -3087,7 +3238,8 @@ "label": "name", "description": [], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -3100,7 +3252,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -3110,7 +3263,8 @@ "label": "displayName", "description": [], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -3120,7 +3274,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -3134,6 +3289,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -3145,7 +3301,8 @@ "label": "reuseDomNode", "description": [], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -3167,6 +3324,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3180,7 +3338,8 @@ "HTMLElement" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -3193,7 +3352,8 @@ "Config" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -3212,7 +3372,8 @@ } ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3228,6 +3389,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -3248,6 +3410,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3291,6 +3454,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -3320,6 +3484,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -3348,6 +3513,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3373,6 +3539,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -3386,6 +3553,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3411,6 +3579,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3434,6 +3603,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -3449,6 +3619,7 @@ "description": [], "path": "src/plugins/expressions/public/render.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -3462,7 +3633,8 @@ "" ], "path": "src/plugins/expressions/public/render.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -3476,7 +3648,8 @@ "" ], "path": "src/plugins/expressions/public/render.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -3498,7 +3671,8 @@ ">" ], "path": "src/plugins/expressions/public/render.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -3512,6 +3686,7 @@ ], "path": "src/plugins/expressions/public/render.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -3525,6 +3700,7 @@ ], "path": "src/plugins/expressions/public/render.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3539,6 +3715,7 @@ ], "path": "src/plugins/expressions/public/render.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3558,6 +3735,7 @@ ], "path": "src/plugins/expressions/public/render.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -3571,6 +3749,7 @@ ], "path": "src/plugins/expressions/public/render.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3585,6 +3764,7 @@ ], "path": "src/plugins/expressions/public/render.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3602,6 +3782,7 @@ ], "path": "src/plugins/expressions/public/render.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3617,6 +3798,7 @@ ], "path": "src/plugins/expressions/public/render.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3640,6 +3822,7 @@ ], "path": "src/plugins/expressions/public/render.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -3659,6 +3842,7 @@ ], "path": "src/plugins/expressions/public/render.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3710,6 +3894,7 @@ ], "path": "src/plugins/expressions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -3723,6 +3908,7 @@ ], "path": "src/plugins/expressions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -3743,6 +3929,7 @@ ], "path": "src/plugins/expressions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3775,6 +3962,7 @@ ], "path": "src/plugins/expressions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -3795,6 +3983,7 @@ ], "path": "src/plugins/expressions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3827,6 +4016,7 @@ ], "path": "src/plugins/expressions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -3846,6 +4036,7 @@ ], "path": "src/plugins/expressions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3863,6 +4054,7 @@ ], "path": "src/plugins/expressions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -3921,6 +4113,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -3940,7 +4133,8 @@ ">" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -3959,7 +4153,8 @@ } ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -3973,6 +4168,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -3992,6 +4188,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4017,6 +4214,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -4030,6 +4228,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4044,6 +4243,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4069,6 +4269,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -4082,6 +4283,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4107,6 +4309,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -4120,6 +4323,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4145,6 +4349,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4168,6 +4373,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -4181,6 +4387,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4206,6 +4413,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4237,6 +4445,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -4265,6 +4474,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4298,6 +4508,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -4326,6 +4537,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4359,6 +4571,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -4387,6 +4600,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4405,6 +4619,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -4418,6 +4633,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4459,6 +4675,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4479,7 +4696,8 @@ } ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -4492,7 +4710,8 @@ "Input" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -4512,7 +4731,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -4562,6 +4782,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -4582,6 +4803,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4596,6 +4818,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4617,6 +4840,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4644,6 +4868,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -4665,6 +4890,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4679,6 +4905,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4716,6 +4943,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -4737,6 +4965,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4775,6 +5004,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -4796,6 +5026,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4813,6 +5044,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4841,6 +5073,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4875,6 +5108,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -4897,6 +5131,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4923,6 +5158,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -4936,6 +5172,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4962,6 +5199,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -4975,6 +5213,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4992,6 +5231,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -5007,6 +5247,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -5016,7 +5257,8 @@ "label": "name", "description": [], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -5029,7 +5271,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -5041,7 +5284,8 @@ "\nA short help text." ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -5057,6 +5301,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -5070,7 +5315,8 @@ "unknown" ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -5085,7 +5331,8 @@ "unknown" ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -5102,7 +5349,8 @@ ") => unknown) | undefined" ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -5117,7 +5365,8 @@ ") | undefined" ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -5131,6 +5380,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -5150,6 +5400,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5175,6 +5426,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -5188,6 +5440,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5213,6 +5466,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -5226,6 +5480,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5243,6 +5498,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -5256,6 +5512,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5273,6 +5530,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -5286,6 +5544,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5311,6 +5570,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -5324,6 +5584,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5338,6 +5599,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5360,6 +5622,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5385,6 +5648,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -5398,6 +5662,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5420,6 +5685,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5463,6 +5729,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -5476,6 +5743,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -5496,6 +5764,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5529,6 +5798,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -5557,6 +5827,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5582,6 +5853,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -5595,6 +5867,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5620,6 +5893,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5643,6 +5917,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -5668,6 +5943,7 @@ ], "path": "src/plugins/expressions/common/util/tables_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -5689,6 +5965,7 @@ ], "path": "src/plugins/expressions/common/util/tables_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -5702,6 +5979,7 @@ ], "path": "src/plugins/expressions/common/util/tables_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5722,6 +6000,7 @@ ], "path": "src/plugins/expressions/common/util/tables_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5739,6 +6018,7 @@ ], "path": "src/plugins/expressions/common/util/tables_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5761,7 +6041,8 @@ "; }" ], "path": "src/plugins/expressions/common/util/tables_adapter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5801,6 +6082,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -5814,6 +6096,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -5834,6 +6117,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5867,6 +6151,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -5895,6 +6180,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5920,6 +6206,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -5933,6 +6220,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5958,6 +6246,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5981,6 +6270,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -6036,6 +6326,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -6075,6 +6366,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -6147,6 +6439,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -6169,6 +6462,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6217,6 +6511,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6244,6 +6539,7 @@ ], "path": "src/plugins/expressions/common/util/create_default_inspector_adapters.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -6270,6 +6566,7 @@ ], "path": "src/plugins/expressions/common/ast/format_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -6291,6 +6588,7 @@ ], "path": "src/plugins/expressions/common/ast/format_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6313,6 +6611,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -6328,6 +6627,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6357,6 +6657,7 @@ ], "path": "src/plugins/expressions/common/ast/parse_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -6372,6 +6673,7 @@ ], "path": "src/plugins/expressions/common/ast/parse_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6398,6 +6700,7 @@ ], "path": "src/plugins/expressions/public/react_expression_renderer/use_expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -6411,6 +6714,7 @@ ], "path": "src/plugins/expressions/public/react_expression_renderer/use_expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6431,6 +6735,7 @@ ], "path": "src/plugins/expressions/public/react_expression_renderer/use_expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6450,6 +6755,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -6462,7 +6768,8 @@ "\"datatable\"" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -6482,7 +6789,8 @@ "[]" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -6496,7 +6804,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -6516,7 +6825,8 @@ "[]" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6532,6 +6842,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -6541,7 +6852,8 @@ "label": "id", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -6551,7 +6863,8 @@ "label": "name", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -6570,7 +6883,8 @@ } ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6596,6 +6910,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -6611,6 +6926,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6627,7 +6943,8 @@ "{ [x: string]: unknown; }" ], "path": "src/plugins/expressions/common/execution/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -6650,7 +6967,8 @@ "; }" ], "path": "src/plugins/expressions/common/execution/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -6665,7 +6983,8 @@ "AbortSignal" ], "path": "src/plugins/expressions/common/execution/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -6680,7 +6999,8 @@ "InspectorAdapters" ], "path": "src/plugins/expressions/common/execution/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -6696,6 +7016,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6715,6 +7036,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6732,6 +7054,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6749,6 +7072,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6768,6 +7092,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6793,6 +7118,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -6806,6 +7132,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6826,6 +7153,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6843,6 +7171,7 @@ "description": [], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -6862,7 +7191,8 @@ ">" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -6882,7 +7212,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -6895,7 +7226,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -6914,7 +7246,8 @@ } ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6946,6 +7279,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -6968,7 +7302,8 @@ "[]; }" ], "path": "src/plugins/expressions/common/execution/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -6983,7 +7318,8 @@ "\"error\" | \"not-started\" | \"pending\" | \"result\"" ], "path": "src/plugins/expressions/common/execution/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -6998,7 +7334,8 @@ "Output | undefined" ], "path": "src/plugins/expressions/common/execution/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -7013,7 +7350,8 @@ "Error | undefined" ], "path": "src/plugins/expressions/common/execution/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7037,6 +7375,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -7057,7 +7396,8 @@ "; }" ], "path": "src/plugins/expressions/common/executor/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -7078,7 +7418,8 @@ "; }" ], "path": "src/plugins/expressions/common/executor/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -7091,7 +7432,8 @@ "Context" ], "path": "src/plugins/expressions/common/executor/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7105,6 +7447,7 @@ "description": [], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -7119,7 +7462,8 @@ "\"expression_builder\"" ], "path": "src/plugins/expressions/common/ast/build_expression.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -7149,7 +7493,8 @@ ">[]" ], "path": "src/plugins/expressions/common/ast/build_expression.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -7199,6 +7544,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -7221,6 +7567,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7251,6 +7598,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "`ExpressionAstExpression`" @@ -7272,6 +7620,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "`string`" @@ -7299,6 +7648,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -7313,7 +7663,8 @@ "\"expression_function_builder\"" ], "path": "src/plugins/expressions/common/ast/build_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -7335,7 +7686,8 @@ "[\"name\"]" ], "path": "src/plugins/expressions/common/ast/build_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -7350,7 +7702,8 @@ "FunctionBuilderArguments" ], "path": "src/plugins/expressions/common/ast/build_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -7376,6 +7729,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -7391,6 +7745,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7414,6 +7769,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7445,6 +7801,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -7460,6 +7817,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7491,6 +7849,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -7506,6 +7865,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7530,6 +7890,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7553,6 +7914,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -7568,6 +7930,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7598,6 +7961,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "`ExpressionAstFunction`" @@ -7619,6 +7983,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "`string`" @@ -7638,6 +8003,7 @@ "description": [], "path": "src/plugins/expressions/public/types/index.ts", "deprecated": true, + "trackAdoption": false, "references": [], "children": [ { @@ -7651,7 +8017,8 @@ "ExpressionInterpreter" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7693,6 +8060,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -7707,7 +8075,8 @@ "Name" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -7722,7 +8091,8 @@ "boolean | undefined" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -7737,7 +8107,8 @@ "boolean | undefined" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -7750,7 +8121,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -7784,7 +8156,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -7806,7 +8179,8 @@ "[] | undefined" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -7829,7 +8203,8 @@ "; }" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -7844,7 +8219,8 @@ "string[] | undefined" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -7856,7 +8232,8 @@ "\nHelp text displayed in the Expression editor. This text should be\ninternationalized." ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -7872,6 +8249,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -7887,6 +8265,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7903,6 +8282,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7919,6 +8299,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7938,6 +8319,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "canvas", @@ -7983,6 +8365,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -8020,7 +8403,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -8074,7 +8458,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -8112,7 +8497,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -8150,7 +8536,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -8188,7 +8575,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -8250,7 +8638,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -8312,7 +8701,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -8374,7 +8764,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -8436,7 +8827,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8450,6 +8842,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/image.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -8462,7 +8855,8 @@ "\"image\"" ], "path": "src/plugins/expressions/common/expression_types/specs/image.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -8472,7 +8866,8 @@ "label": "mode", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/image.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -8482,7 +8877,8 @@ "label": "dataurl", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/image.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8506,6 +8902,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -8517,7 +8914,8 @@ "\nTechnical name of the renderer, used as ID to identify renderer in\nexpression renderer registry. This must match the name of the expression\nfunction that is used to create the `type: render` object." ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -8530,7 +8928,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -8545,7 +8944,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -8560,7 +8960,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -8576,6 +8977,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -8589,7 +8991,8 @@ "\nTell the renderer if the dom node should be reused, it's recreated each\ntime by default." ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -8613,6 +9016,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -8626,6 +9030,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8640,6 +9045,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8660,6 +9066,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8694,6 +9101,7 @@ ], "path": "src/plugins/expressions/public/react_expression_renderer/use_expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -8706,7 +9114,8 @@ "number | undefined" ], "path": "src/plugins/expressions/public/react_expression_renderer/use_expression_renderer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -8726,7 +9135,8 @@ } ], "path": "src/plugins/expressions/public/react_expression_renderer/use_expression_renderer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -8739,7 +9149,8 @@ "boolean | undefined" ], "path": "src/plugins/expressions/public/react_expression_renderer/use_expression_renderer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -8753,6 +9164,7 @@ ], "path": "src/plugins/expressions/public/react_expression_renderer/use_expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -8766,6 +9178,7 @@ ], "path": "src/plugins/expressions/public/react_expression_renderer/use_expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8780,6 +9193,7 @@ ], "path": "src/plugins/expressions/public/react_expression_renderer/use_expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -8794,6 +9208,7 @@ ], "path": "src/plugins/expressions/public/react_expression_renderer/use_expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -8819,6 +9234,7 @@ ], "path": "src/plugins/expressions/public/react_expression_renderer/use_expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -8838,6 +9254,7 @@ ], "path": "src/plugins/expressions/public/react_expression_renderer/use_expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8855,6 +9272,7 @@ ], "path": "src/plugins/expressions/public/react_expression_renderer/use_expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -8868,6 +9286,7 @@ ], "path": "src/plugins/expressions/public/react_expression_renderer/use_expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8887,7 +9306,8 @@ " | undefined" ], "path": "src/plugins/expressions/public/react_expression_renderer/use_expression_renderer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8911,6 +9331,7 @@ ], "path": "src/plugins/expressions/public/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -8923,7 +9344,8 @@ "string | undefined" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -8936,7 +9358,8 @@ "Error | undefined" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8952,6 +9375,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -8975,6 +9399,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -8988,6 +9413,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9002,6 +9428,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -9029,6 +9456,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -9042,6 +9470,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -9069,6 +9498,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -9082,6 +9512,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9109,6 +9540,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -9134,6 +9566,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -9147,6 +9580,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9174,6 +9608,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -9225,6 +9660,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -9245,6 +9681,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9259,6 +9696,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9280,6 +9718,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -9323,6 +9762,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -9343,6 +9783,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9357,6 +9798,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9378,6 +9820,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -9413,6 +9856,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -9432,6 +9876,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9466,6 +9911,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -9485,6 +9931,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9500,6 +9947,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9525,6 +9973,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -9544,6 +9993,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9558,6 +10008,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9582,6 +10033,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -9609,6 +10061,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -9621,7 +10074,8 @@ "Name" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -9634,7 +10088,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -9648,6 +10103,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -9661,6 +10117,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9678,6 +10135,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -9691,6 +10149,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9708,6 +10167,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -9721,6 +10181,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9745,7 +10206,8 @@ "; } | undefined" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -9766,7 +10228,8 @@ "; } | undefined" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -9779,7 +10242,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9795,6 +10259,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -9807,7 +10272,8 @@ "\"style\"" ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -9826,7 +10292,8 @@ } ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -9836,7 +10303,8 @@ "label": "css", "description": [], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9852,6 +10320,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -9864,7 +10333,8 @@ "\"Open Sans\" | \"American Typewriter\" | \"Arial\" | \"Baskerville\" | \"Book Antiqua\" | \"Brush Script\" | \"Chalkboard\" | \"Didot\" | \"Futura\" | \"Gill Sans\" | \"Helvetica Neue\" | \"Hoefler Text\" | \"Inter\" | \"Lucida Grande\" | \"Myriad\" | \"Optima\" | \"Palatino\"" ], "path": "src/plugins/expressions/common/fonts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -9877,7 +10347,8 @@ "\"'Open Sans', Helvetica, Arial, sans-serif\" | \"'American Typewriter', 'Courier New', Courier, Monaco, mono\" | \"Arial, sans-serif\" | \"Baskerville, Georgia, Garamond, 'Times New Roman', Times, serif\" | \"'Book Antiqua', Georgia, Garamond, 'Times New Roman', Times, serif\" | \"'Brush Script MT', 'Comic Sans', sans-serif\" | \"Chalkboard, 'Comic Sans', sans-serif\" | \"Didot, Georgia, Garamond, 'Times New Roman', Times, serif\" | \"Futura, Impact, Helvetica, Arial, sans-serif\" | \"'Gill Sans', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, Helvetica, Arial, sans-serif\" | \"'Helvetica Neue', Helvetica, Arial, sans-serif\" | \"'Hoefler Text', Garamond, Georgia, 'Times New Roman', Times, serif\" | \"'Inter', 'Inter UI', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'\" | \"'Lucida Grande', 'Lucida Sans Unicode', Lucida, Verdana, Helvetica, Arial, sans-serif\" | \"Myriad, Helvetica, Arial, sans-serif\" | \"Optima, 'Lucida Grande', 'Lucida Sans Unicode', Verdana, Helvetica, Arial, sans-serif\" | \"Palatino, 'Book Antiqua', Georgia, Garamond, 'Times New Roman', Times, serif\"" ], "path": "src/plugins/expressions/common/fonts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9891,6 +10362,7 @@ "description": [], "path": "src/plugins/expressions/public/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -9904,7 +10376,8 @@ " | undefined" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -9917,7 +10390,8 @@ "any" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -9930,7 +10404,8 @@ "Record | undefined" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -9943,7 +10418,8 @@ "boolean | undefined" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -9956,7 +10432,8 @@ "boolean | undefined" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -9969,7 +10446,8 @@ "[] | undefined" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -9982,7 +10460,8 @@ "[] | undefined" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -9995,7 +10474,8 @@ "unknown" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -10015,7 +10495,8 @@ " | undefined" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -10028,7 +10509,8 @@ "boolean | undefined" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -10042,7 +10524,8 @@ " | undefined" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -10055,7 +10538,8 @@ "string | undefined" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -10075,7 +10559,8 @@ " | undefined" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -10088,7 +10573,8 @@ "boolean | undefined" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -10101,7 +10587,8 @@ "boolean | undefined" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -10122,7 +10609,8 @@ ") => Promise) | undefined" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -10136,7 +10624,8 @@ " | undefined" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -10151,7 +10640,8 @@ "boolean | undefined" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -10166,7 +10656,8 @@ "number | undefined" ], "path": "src/plugins/expressions/public/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10180,6 +10671,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -10195,6 +10687,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -10210,6 +10703,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -10223,6 +10717,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10240,6 +10735,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -10263,6 +10759,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -10283,6 +10780,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10308,6 +10806,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -10328,6 +10827,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10353,6 +10853,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -10373,6 +10874,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10397,6 +10899,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -10414,6 +10917,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -10429,6 +10933,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -10444,6 +10949,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -10460,7 +10966,8 @@ "unknown" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -10476,6 +10983,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -10501,6 +11009,7 @@ ], "path": "src/plugins/expressions/common/types/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -10514,6 +11023,7 @@ ], "path": "src/plugins/expressions/common/types/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -10527,6 +11037,7 @@ ], "path": "src/plugins/expressions/common/types/registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10544,6 +11055,7 @@ ], "path": "src/plugins/expressions/common/types/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -10559,6 +11071,7 @@ ], "path": "src/plugins/expressions/common/types/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -10576,6 +11089,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -10588,7 +11102,8 @@ "\"string\" | \"number\"" ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -10601,7 +11116,8 @@ "\"measure\" | \"dimension\"" ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -10611,7 +11127,8 @@ "label": "expression", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10625,6 +11142,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -10637,7 +11155,8 @@ "\"range\"" ], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -10647,7 +11166,8 @@ "label": "from", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -10657,7 +11177,8 @@ "label": "to", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -10670,7 +11191,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10702,6 +11224,7 @@ ], "path": "src/plugins/expressions/public/react_expression_renderer/react_expression_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -10714,7 +11237,8 @@ "string | undefined" ], "path": "src/plugins/expressions/public/react_expression_renderer/react_expression_renderer.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -10727,7 +11251,8 @@ "string[] | undefined" ], "path": "src/plugins/expressions/public/react_expression_renderer/react_expression_renderer.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -10749,6 +11274,7 @@ ], "path": "src/plugins/expressions/public/react_expression_renderer/react_expression_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -10762,6 +11288,7 @@ ], "path": "src/plugins/expressions/public/react_expression_renderer/react_expression_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -10783,6 +11310,7 @@ ], "path": "src/plugins/expressions/public/react_expression_renderer/react_expression_renderer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -10799,7 +11327,8 @@ "\"m\" | \"s\" | \"xs\" | \"l\" | \"xl\" | undefined" ], "path": "src/plugins/expressions/public/react_expression_renderer/react_expression_renderer.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10830,6 +11359,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -10842,7 +11372,8 @@ "string[][]" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10860,6 +11391,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10873,6 +11405,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10886,6 +11419,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10899,6 +11433,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10912,6 +11447,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -10955,6 +11491,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10976,6 +11513,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10992,6 +11530,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/arguments.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11008,6 +11547,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11024,6 +11564,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11061,6 +11602,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11106,6 +11648,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11127,6 +11670,7 @@ ], "path": "src/plugins/expressions/common/ast/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11151,6 +11695,7 @@ ], "path": "src/plugins/expressions/common/ast/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11183,6 +11728,7 @@ ], "path": "src/plugins/expressions/common/ast/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11211,6 +11757,7 @@ ], "path": "src/plugins/expressions/common/ast/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11233,6 +11780,7 @@ ], "path": "src/plugins/expressions/public/react_expression_renderer/react_expression_renderer.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -11246,7 +11794,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -11259,7 +11808,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11283,6 +11833,7 @@ ], "path": "src/plugins/expressions/public/types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11297,6 +11848,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11311,6 +11863,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11333,6 +11886,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -11346,7 +11900,8 @@ "I" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -11367,7 +11922,8 @@ "; }" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11394,6 +11950,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/error.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11418,6 +11975,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11432,6 +11990,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11448,6 +12007,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/render.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11464,6 +12024,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/render.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11478,6 +12039,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11494,6 +12056,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11510,6 +12073,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11536,6 +12100,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/error.ts", "deprecated": true, + "trackAdoption": false, "references": [], "initialIsOpen": false }, @@ -11553,6 +12118,7 @@ ], "path": "src/plugins/expressions/common/types/common.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11585,6 +12151,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11601,6 +12168,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11633,6 +12201,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11647,6 +12216,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11677,6 +12247,7 @@ ], "path": "src/plugins/expressions/public/react_expression_renderer/react_expression_renderer.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11697,6 +12268,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11737,6 +12309,7 @@ ], "path": "src/plugins/expressions/common/types/common.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11768,6 +12341,7 @@ ], "path": "src/plugins/expressions/common/types/common.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -11784,6 +12358,7 @@ ], "path": "src/plugins/expressions/common/types/common.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -11799,6 +12374,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -11824,6 +12400,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "canvas", @@ -11843,6 +12420,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -11857,6 +12435,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -11886,6 +12465,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "canvas", @@ -11913,6 +12493,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -11942,6 +12523,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "canvas", @@ -11974,6 +12556,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -11987,6 +12570,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12022,6 +12606,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -12050,6 +12635,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12083,6 +12669,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -12111,6 +12698,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12144,6 +12732,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -12172,6 +12761,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12196,6 +12786,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -12231,6 +12822,7 @@ ], "path": "src/plugins/expressions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -12268,6 +12860,7 @@ ], "path": "src/plugins/expressions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -12281,7 +12874,8 @@ "HTMLElement" ], "path": "src/plugins/expressions/public/loader.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -12302,7 +12896,8 @@ " | undefined" ], "path": "src/plugins/expressions/public/loader.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -12322,7 +12917,8 @@ " | undefined" ], "path": "src/plugins/expressions/public/loader.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -12348,6 +12944,7 @@ ], "path": "src/plugins/expressions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -12361,7 +12958,8 @@ "HTMLElement" ], "path": "src/plugins/expressions/public/render.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -12374,7 +12972,8 @@ "unknown" ], "path": "src/plugins/expressions/public/render.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -12388,7 +12987,8 @@ " | undefined" ], "path": "src/plugins/expressions/public/render.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -12412,6 +13012,7 @@ ], "path": "src/plugins/expressions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -12431,7 +13032,8 @@ } ], "path": "src/plugins/expressions/public/react_expression_renderer_wrapper.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -12461,6 +13063,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -12530,7 +13133,8 @@ " | Output>>, {}>" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -12545,7 +13149,8 @@ "Input" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -12569,7 +13174,8 @@ ">" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -12601,7 +13207,8 @@ " | Output>>" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -12623,7 +13230,8 @@ "" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -12633,7 +13241,8 @@ "label": "expression", "description": [], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -12646,7 +13255,8 @@ "InspectorAdapters" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -12660,6 +13270,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -12679,6 +13290,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -12694,6 +13306,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -12713,6 +13326,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -12748,6 +13362,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -12761,6 +13376,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -12775,6 +13391,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -12802,6 +13419,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -12822,6 +13440,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -12836,6 +13455,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12863,6 +13483,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -12876,6 +13497,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -12890,6 +13512,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -12904,6 +13527,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -12921,6 +13545,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -12934,6 +13559,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -12948,6 +13574,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -12973,6 +13600,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -12986,6 +13614,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13007,6 +13636,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13042,6 +13672,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -13055,6 +13686,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13069,6 +13701,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13091,6 +13724,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13126,6 +13760,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -13145,6 +13780,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13159,6 +13795,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13202,6 +13839,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -13233,6 +13871,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -13247,6 +13886,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -13268,6 +13908,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -13315,7 +13956,8 @@ ">" ], "path": "src/plugins/expressions/common/executor/executor.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -13337,6 +13979,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": true, + "trackAdoption": false, "references": [] }, { @@ -13359,6 +14002,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": true, + "trackAdoption": false, "references": [] }, { @@ -13373,6 +14017,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -13387,6 +14032,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -13408,6 +14054,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -13431,7 +14078,8 @@ "" ], "path": "src/plugins/expressions/common/executor/executor.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -13461,6 +14109,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -13489,6 +14138,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13514,6 +14164,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -13527,6 +14178,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13541,6 +14193,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -13566,6 +14219,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -13579,6 +14233,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -13612,6 +14267,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -13640,6 +14296,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13665,6 +14322,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -13678,6 +14336,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13703,6 +14362,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -13717,7 +14377,8 @@ "{ [x: string]: unknown; }" ], "path": "src/plugins/expressions/common/executor/executor.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -13767,6 +14428,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -13789,6 +14451,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13805,6 +14468,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13825,6 +14489,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13874,6 +14539,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -13894,6 +14560,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13914,6 +14581,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -13948,6 +14616,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -13967,6 +14636,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -13982,6 +14652,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14017,6 +14688,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -14036,6 +14708,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14061,6 +14734,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -14080,6 +14754,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14094,6 +14769,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14118,6 +14794,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14150,6 +14827,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -14172,6 +14850,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14215,6 +14894,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -14226,7 +14906,8 @@ "\nName of function" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14239,7 +14920,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14254,7 +14936,8 @@ "string[]" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14266,7 +14949,8 @@ "\nReturn type of function. This SHOULD be supplied. We use it for UI\nand autocomplete hinting. We may also use it for optimizations in\nthe future." ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14282,6 +14966,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -14295,7 +14980,8 @@ "any" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14308,7 +14994,8 @@ "{ [x: string]: unknown; }" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14321,7 +15008,8 @@ "object" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -14335,7 +15023,8 @@ "\nA short help text." ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14348,6 +15037,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -14363,7 +15053,8 @@ "string[] | undefined" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14373,7 +15064,8 @@ "label": "disabled", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14385,7 +15077,8 @@ "\nDeprecation flag." ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14407,6 +15100,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -14428,7 +15122,8 @@ "[]; }" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14441,7 +15136,8 @@ "{ [x: string]: unknown; }" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -14475,6 +15171,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -14496,7 +15193,8 @@ "[]; }" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -14530,6 +15228,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -14551,7 +15250,8 @@ "[]; }" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14565,7 +15265,8 @@ "[]" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -14594,7 +15295,8 @@ } ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14608,6 +15310,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -14627,6 +15330,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14644,6 +15348,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -14657,6 +15362,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14684,6 +15390,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -14693,7 +15400,8 @@ "label": "name", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14703,7 +15411,8 @@ "label": "required", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14713,7 +15422,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14766,7 +15476,8 @@ " | UnresolvedArrayTypeToArgumentString)[]) | undefined" ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14779,7 +15490,8 @@ "string | T | undefined" ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14792,7 +15504,8 @@ "string[]" ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14802,7 +15515,8 @@ "label": "deprecated", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14812,7 +15526,8 @@ "label": "multi", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14822,7 +15537,8 @@ "label": "resolve", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14838,6 +15554,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": true, + "trackAdoption": false, "references": [] }, { @@ -14851,7 +15568,8 @@ "T[]" ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14865,6 +15583,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -14878,6 +15597,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -14899,6 +15619,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14916,6 +15637,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -14929,6 +15651,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14956,6 +15679,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -14965,7 +15689,8 @@ "label": "name", "description": [], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14978,7 +15703,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14988,7 +15714,8 @@ "label": "displayName", "description": [], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -14998,7 +15725,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -15012,6 +15740,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -15023,7 +15752,8 @@ "label": "reuseDomNode", "description": [], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -15045,6 +15775,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -15058,7 +15789,8 @@ "HTMLElement" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -15071,7 +15803,8 @@ "Config" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -15090,7 +15823,8 @@ } ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -15106,6 +15840,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -15126,6 +15861,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15169,6 +15905,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -15198,6 +15935,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -15226,6 +15964,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15251,6 +15990,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -15264,6 +16004,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15289,6 +16030,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -15312,6 +16054,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -15361,6 +16104,7 @@ ], "path": "src/plugins/expressions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -15379,7 +16123,8 @@ } ], "path": "src/plugins/expressions/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -15393,6 +16138,7 @@ ], "path": "src/plugins/expressions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -15413,6 +16159,7 @@ ], "path": "src/plugins/expressions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15445,6 +16192,7 @@ ], "path": "src/plugins/expressions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -15465,6 +16213,7 @@ ], "path": "src/plugins/expressions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15497,6 +16246,7 @@ ], "path": "src/plugins/expressions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -15516,6 +16266,7 @@ ], "path": "src/plugins/expressions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15533,6 +16284,7 @@ ], "path": "src/plugins/expressions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -15548,6 +16300,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -15557,7 +16310,8 @@ "label": "name", "description": [], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -15570,7 +16324,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -15582,7 +16337,8 @@ "\nA short help text." ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -15598,6 +16354,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -15611,7 +16368,8 @@ "unknown" ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -15626,7 +16384,8 @@ "unknown" ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -15643,7 +16402,8 @@ ") => unknown) | undefined" ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -15658,7 +16418,8 @@ ") | undefined" ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -15672,6 +16433,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -15691,6 +16453,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15716,6 +16479,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -15729,6 +16493,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15754,6 +16519,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -15767,6 +16533,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15784,6 +16551,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -15797,6 +16565,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15814,6 +16583,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -15827,6 +16597,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15852,6 +16623,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -15865,6 +16637,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15879,6 +16652,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15901,6 +16675,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15926,6 +16701,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -15939,6 +16715,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15961,6 +16738,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -16004,6 +16782,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -16017,6 +16796,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -16037,6 +16817,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -16070,6 +16851,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -16098,6 +16880,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -16123,6 +16906,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -16136,6 +16920,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -16161,6 +16946,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -16184,6 +16970,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -16225,6 +17012,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -16238,6 +17026,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -16258,6 +17047,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -16291,6 +17081,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -16319,6 +17110,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -16344,6 +17136,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -16357,6 +17150,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -16382,6 +17176,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -16405,6 +17200,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -16460,6 +17256,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -16499,6 +17296,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -16571,6 +17369,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -16593,6 +17392,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16641,6 +17441,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -16669,6 +17470,7 @@ ], "path": "src/plugins/expressions/common/ast/format.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -16682,6 +17484,7 @@ ], "path": "src/plugins/expressions/common/ast/format.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16704,6 +17507,7 @@ ], "path": "src/plugins/expressions/common/ast/format.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -16732,6 +17536,7 @@ ], "path": "src/plugins/expressions/common/ast/format_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -16753,6 +17558,7 @@ ], "path": "src/plugins/expressions/common/ast/format_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -16775,6 +17581,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -16790,6 +17597,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -16825,6 +17633,7 @@ ], "path": "src/plugins/expressions/common/ast/parse.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -16838,6 +17647,7 @@ ], "path": "src/plugins/expressions/common/ast/parse.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -16852,6 +17662,7 @@ ], "path": "src/plugins/expressions/common/ast/parse.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -16879,6 +17690,7 @@ ], "path": "src/plugins/expressions/common/ast/parse_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -16894,6 +17706,7 @@ ], "path": "src/plugins/expressions/common/ast/parse_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -16913,6 +17726,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -16925,7 +17739,8 @@ "\"datatable\"" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -16945,7 +17760,8 @@ "[]" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -16959,7 +17775,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -16979,7 +17796,8 @@ "[]" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -16995,6 +17813,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -17004,7 +17823,8 @@ "label": "id", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -17014,7 +17834,8 @@ "label": "name", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -17033,7 +17854,8 @@ } ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17059,6 +17881,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -17074,6 +17897,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -17090,7 +17914,8 @@ "{ [x: string]: unknown; }" ], "path": "src/plugins/expressions/common/execution/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -17113,7 +17938,8 @@ "; }" ], "path": "src/plugins/expressions/common/execution/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -17128,7 +17954,8 @@ "AbortSignal" ], "path": "src/plugins/expressions/common/execution/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -17143,7 +17970,8 @@ "InspectorAdapters" ], "path": "src/plugins/expressions/common/execution/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -17159,6 +17987,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -17178,6 +18007,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -17195,6 +18025,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -17212,6 +18043,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -17231,6 +18063,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -17256,6 +18089,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -17269,6 +18103,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -17289,6 +18124,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17306,6 +18142,7 @@ "description": [], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -17325,7 +18162,8 @@ ">" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -17345,7 +18183,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -17358,7 +18197,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -17377,7 +18217,8 @@ } ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17409,6 +18250,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -17431,7 +18273,8 @@ "[]; }" ], "path": "src/plugins/expressions/common/execution/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -17446,7 +18289,8 @@ "\"error\" | \"not-started\" | \"pending\" | \"result\"" ], "path": "src/plugins/expressions/common/execution/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -17461,7 +18305,8 @@ "Output | undefined" ], "path": "src/plugins/expressions/common/execution/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -17476,7 +18321,8 @@ "Error | undefined" ], "path": "src/plugins/expressions/common/execution/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17500,6 +18346,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -17520,7 +18367,8 @@ "; }" ], "path": "src/plugins/expressions/common/executor/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -17541,7 +18389,8 @@ "; }" ], "path": "src/plugins/expressions/common/executor/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -17554,7 +18403,8 @@ "Context" ], "path": "src/plugins/expressions/common/executor/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -17568,6 +18418,7 @@ "description": [], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -17582,7 +18433,8 @@ "\"expression_builder\"" ], "path": "src/plugins/expressions/common/ast/build_expression.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -17612,7 +18464,8 @@ ">[]" ], "path": "src/plugins/expressions/common/ast/build_expression.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -17662,6 +18515,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -17684,6 +18538,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17714,6 +18569,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "`ExpressionAstExpression`" @@ -17735,6 +18591,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "`string`" @@ -17762,6 +18619,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -17776,7 +18634,8 @@ "\"expression_function_builder\"" ], "path": "src/plugins/expressions/common/ast/build_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -17798,7 +18657,8 @@ "[\"name\"]" ], "path": "src/plugins/expressions/common/ast/build_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -17813,7 +18673,8 @@ "FunctionBuilderArguments" ], "path": "src/plugins/expressions/common/ast/build_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -17839,6 +18700,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -17854,6 +18716,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -17877,6 +18740,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17908,6 +18772,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -17923,6 +18788,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -17954,6 +18820,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -17969,6 +18836,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -17993,6 +18861,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18016,6 +18885,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -18031,6 +18901,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18061,6 +18932,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "`ExpressionAstFunction`" @@ -18082,6 +18954,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "`string`" @@ -18127,6 +19000,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -18141,7 +19015,8 @@ "Name" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18156,7 +19031,8 @@ "boolean | undefined" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18171,7 +19047,8 @@ "boolean | undefined" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18184,7 +19061,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18218,7 +19096,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18240,7 +19119,8 @@ "[] | undefined" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18263,7 +19143,8 @@ "; }" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18278,7 +19159,8 @@ "string[] | undefined" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18290,7 +19172,8 @@ "\nHelp text displayed in the Expression editor. This text should be\ninternationalized." ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18306,6 +19189,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -18321,6 +19205,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -18337,6 +19222,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -18353,6 +19239,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -18372,6 +19259,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "canvas", @@ -18417,6 +19305,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -18454,7 +19343,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18508,7 +19398,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18546,7 +19437,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18584,7 +19476,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18622,7 +19515,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18684,7 +19578,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18746,7 +19641,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18808,7 +19704,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18870,7 +19767,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18884,6 +19782,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/image.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -18896,7 +19795,8 @@ "\"image\"" ], "path": "src/plugins/expressions/common/expression_types/specs/image.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18906,7 +19806,8 @@ "label": "mode", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/image.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18916,7 +19817,8 @@ "label": "dataurl", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/image.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -18940,6 +19842,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -18951,7 +19854,8 @@ "\nTechnical name of the renderer, used as ID to identify renderer in\nexpression renderer registry. This must match the name of the expression\nfunction that is used to create the `type: render` object." ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18964,7 +19868,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18979,7 +19884,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -18994,7 +19900,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -19010,6 +19917,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -19023,7 +19931,8 @@ "\nTell the renderer if the dom node should be reused, it's recreated each\ntime by default." ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -19047,6 +19956,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -19060,6 +19970,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -19074,6 +19985,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -19094,6 +20006,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19123,6 +20036,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -19135,7 +20049,8 @@ "Name" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -19148,7 +20063,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -19162,6 +20078,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -19175,6 +20092,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19192,6 +20110,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -19205,6 +20124,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19222,6 +20142,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -19235,6 +20156,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19259,7 +20181,8 @@ "; } | undefined" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -19280,7 +20203,8 @@ "; } | undefined" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -19293,7 +20217,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19309,6 +20234,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -19321,7 +20247,8 @@ "\"style\"" ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -19340,7 +20267,8 @@ } ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -19350,7 +20278,8 @@ "label": "css", "description": [], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19366,6 +20295,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -19378,7 +20308,8 @@ "\"Open Sans\" | \"American Typewriter\" | \"Arial\" | \"Baskerville\" | \"Book Antiqua\" | \"Brush Script\" | \"Chalkboard\" | \"Didot\" | \"Futura\" | \"Gill Sans\" | \"Helvetica Neue\" | \"Hoefler Text\" | \"Inter\" | \"Lucida Grande\" | \"Myriad\" | \"Optima\" | \"Palatino\"" ], "path": "src/plugins/expressions/common/fonts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -19391,7 +20322,8 @@ "\"'Open Sans', Helvetica, Arial, sans-serif\" | \"'American Typewriter', 'Courier New', Courier, Monaco, mono\" | \"Arial, sans-serif\" | \"Baskerville, Georgia, Garamond, 'Times New Roman', Times, serif\" | \"'Book Antiqua', Georgia, Garamond, 'Times New Roman', Times, serif\" | \"'Brush Script MT', 'Comic Sans', sans-serif\" | \"Chalkboard, 'Comic Sans', sans-serif\" | \"Didot, Georgia, Garamond, 'Times New Roman', Times, serif\" | \"Futura, Impact, Helvetica, Arial, sans-serif\" | \"'Gill Sans', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, Helvetica, Arial, sans-serif\" | \"'Helvetica Neue', Helvetica, Arial, sans-serif\" | \"'Hoefler Text', Garamond, Georgia, 'Times New Roman', Times, serif\" | \"'Inter', 'Inter UI', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'\" | \"'Lucida Grande', 'Lucida Sans Unicode', Lucida, Verdana, Helvetica, Arial, sans-serif\" | \"Myriad, Helvetica, Arial, sans-serif\" | \"Optima, 'Lucida Grande', 'Lucida Sans Unicode', Verdana, Helvetica, Arial, sans-serif\" | \"Palatino, 'Book Antiqua', Georgia, Garamond, 'Times New Roman', Times, serif\"" ], "path": "src/plugins/expressions/common/fonts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19405,6 +20337,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -19420,6 +20353,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -19435,6 +20369,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -19448,6 +20383,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19465,6 +20401,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -19488,6 +20425,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -19508,6 +20446,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19533,6 +20472,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -19553,6 +20493,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19578,6 +20519,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -19598,6 +20540,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19622,6 +20565,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -19639,6 +20583,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -19654,6 +20599,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -19669,6 +20615,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -19685,7 +20632,8 @@ "unknown" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -19701,6 +20649,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -19726,6 +20675,7 @@ ], "path": "src/plugins/expressions/common/types/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -19739,6 +20689,7 @@ ], "path": "src/plugins/expressions/common/types/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -19752,6 +20703,7 @@ ], "path": "src/plugins/expressions/common/types/registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -19769,6 +20721,7 @@ ], "path": "src/plugins/expressions/common/types/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -19784,6 +20737,7 @@ ], "path": "src/plugins/expressions/common/types/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -19801,6 +20755,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -19813,7 +20768,8 @@ "\"string\" | \"number\"" ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -19826,7 +20782,8 @@ "\"measure\" | \"dimension\"" ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -19836,7 +20793,8 @@ "label": "expression", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19850,6 +20808,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -19862,7 +20821,8 @@ "\"range\"" ], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -19872,7 +20832,8 @@ "label": "from", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -19882,7 +20843,8 @@ "label": "to", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -19895,7 +20857,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19926,6 +20889,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -19938,7 +20902,8 @@ "string[][]" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -19956,6 +20921,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -19969,6 +20935,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -19982,6 +20949,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -19995,6 +20963,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20008,6 +20977,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -20051,6 +21021,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20072,6 +21043,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20088,6 +21060,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/arguments.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20104,6 +21077,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20120,6 +21094,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20157,6 +21132,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20202,6 +21178,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20223,6 +21200,7 @@ ], "path": "src/plugins/expressions/common/ast/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20247,6 +21225,7 @@ ], "path": "src/plugins/expressions/common/ast/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20279,6 +21258,7 @@ ], "path": "src/plugins/expressions/common/ast/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20307,6 +21287,7 @@ ], "path": "src/plugins/expressions/common/ast/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20321,6 +21302,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20335,6 +21317,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20357,6 +21340,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -20370,7 +21354,8 @@ "I" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -20391,7 +21376,8 @@ "; }" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -20418,6 +21404,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/error.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20442,6 +21429,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20456,6 +21444,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20472,6 +21461,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/render.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20488,6 +21478,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/render.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20502,6 +21493,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20518,6 +21510,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20534,6 +21527,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20560,6 +21554,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/error.ts", "deprecated": true, + "trackAdoption": false, "references": [], "initialIsOpen": false }, @@ -20577,6 +21572,7 @@ ], "path": "src/plugins/expressions/common/types/common.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20609,6 +21605,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20625,6 +21622,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20657,6 +21655,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20671,6 +21670,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20691,6 +21691,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20731,6 +21732,7 @@ ], "path": "src/plugins/expressions/common/types/common.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20762,6 +21764,7 @@ ], "path": "src/plugins/expressions/common/types/common.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -20778,6 +21781,7 @@ ], "path": "src/plugins/expressions/common/types/common.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -20800,6 +21804,7 @@ ], "path": "src/plugins/expressions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "setup", "initialIsOpen": true }, @@ -20821,6 +21826,7 @@ ], "path": "src/plugins/expressions/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -20846,6 +21852,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -20915,7 +21922,8 @@ " | Output>>, {}>" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -20930,7 +21938,8 @@ "Input" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -20954,7 +21963,8 @@ ">" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -20986,7 +21996,8 @@ " | Output>>" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -21008,7 +22019,8 @@ "" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -21018,7 +22030,8 @@ "label": "expression", "description": [], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -21031,7 +22044,8 @@ "InspectorAdapters" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -21045,6 +22059,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -21064,6 +22079,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21079,6 +22095,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -21098,6 +22115,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -21133,6 +22151,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -21146,6 +22165,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21160,6 +22180,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -21187,6 +22208,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -21207,6 +22229,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21221,6 +22244,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21248,6 +22272,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -21261,6 +22286,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21275,6 +22301,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21289,6 +22316,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21306,6 +22334,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -21319,6 +22348,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21333,6 +22363,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -21358,6 +22389,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -21371,6 +22403,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21392,6 +22425,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21427,6 +22461,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -21440,6 +22475,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21454,6 +22490,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21476,6 +22513,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21511,6 +22549,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -21530,6 +22569,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -21544,6 +22584,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21573,6 +22614,7 @@ ], "path": "src/plugins/expressions/common/execution/execution_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -21582,7 +22624,8 @@ "label": "isPending", "description": [], "path": "src/plugins/expressions/common/execution/execution_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -21602,7 +22645,8 @@ "" ], "path": "src/plugins/expressions/common/execution/execution_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -21616,6 +22660,7 @@ ], "path": "src/plugins/expressions/common/execution/execution_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -21636,6 +22681,7 @@ ], "path": "src/plugins/expressions/common/execution/execution_contract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -21655,6 +22701,7 @@ ], "path": "src/plugins/expressions/common/execution/execution_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -21690,6 +22737,7 @@ ], "path": "src/plugins/expressions/common/execution/execution_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -21707,6 +22755,7 @@ ], "path": "src/plugins/expressions/common/execution/execution_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -21731,6 +22780,7 @@ ], "path": "src/plugins/expressions/common/execution/execution_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -21755,6 +22805,7 @@ ], "path": "src/plugins/expressions/common/execution/execution_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -21796,6 +22847,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -21827,6 +22879,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -21841,6 +22894,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -21862,6 +22916,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -21909,7 +22964,8 @@ ">" ], "path": "src/plugins/expressions/common/executor/executor.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -21931,6 +22987,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": true, + "trackAdoption": false, "references": [] }, { @@ -21953,6 +23010,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": true, + "trackAdoption": false, "references": [] }, { @@ -21967,6 +23025,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -21981,6 +23040,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -22002,6 +23062,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -22025,7 +23086,8 @@ "" ], "path": "src/plugins/expressions/common/executor/executor.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -22055,6 +23117,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -22083,6 +23146,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -22108,6 +23172,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -22121,6 +23186,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -22135,6 +23201,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -22160,6 +23227,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -22173,6 +23241,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -22206,6 +23275,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -22234,6 +23304,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -22259,6 +23330,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -22272,6 +23344,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -22297,6 +23370,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -22311,7 +23385,8 @@ "{ [x: string]: unknown; }" ], "path": "src/plugins/expressions/common/executor/executor.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -22361,6 +23436,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -22383,6 +23459,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -22399,6 +23476,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -22419,6 +23497,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -22468,6 +23547,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -22488,6 +23568,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -22508,6 +23589,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -22542,6 +23624,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -22561,6 +23644,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -22576,6 +23660,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -22611,6 +23696,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -22630,6 +23716,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -22655,6 +23742,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -22674,6 +23762,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -22688,6 +23777,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -22712,6 +23802,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -22744,6 +23835,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -22766,6 +23858,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -22809,6 +23902,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -22820,7 +23914,8 @@ "\nName of function" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -22833,7 +23928,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -22848,7 +23944,8 @@ "string[]" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -22860,7 +23957,8 @@ "\nReturn type of function. This SHOULD be supplied. We use it for UI\nand autocomplete hinting. We may also use it for optimizations in\nthe future." ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -22876,6 +23974,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -22889,7 +23988,8 @@ "any" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -22902,7 +24002,8 @@ "{ [x: string]: unknown; }" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -22915,7 +24016,8 @@ "object" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -22929,7 +24031,8 @@ "\nA short help text." ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -22942,6 +24045,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -22957,7 +24061,8 @@ "string[] | undefined" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -22967,7 +24072,8 @@ "label": "disabled", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -22979,7 +24085,8 @@ "\nDeprecation flag." ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23001,6 +24108,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -23022,7 +24130,8 @@ "[]; }" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23035,7 +24144,8 @@ "{ [x: string]: unknown; }" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -23069,6 +24179,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -23090,7 +24201,8 @@ "[]; }" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -23124,6 +24236,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -23145,7 +24258,8 @@ "[]; }" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23159,7 +24273,8 @@ "[]" ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -23188,7 +24303,8 @@ } ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23202,6 +24318,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -23221,6 +24338,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23238,6 +24356,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -23251,6 +24370,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23278,6 +24398,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -23287,7 +24408,8 @@ "label": "name", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23297,7 +24419,8 @@ "label": "required", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23307,7 +24430,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23360,7 +24484,8 @@ " | UnresolvedArrayTypeToArgumentString)[]) | undefined" ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23373,7 +24498,8 @@ "string | T | undefined" ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23386,7 +24512,8 @@ "string[]" ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23396,7 +24523,8 @@ "label": "deprecated", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23406,7 +24534,8 @@ "label": "multi", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23416,7 +24545,8 @@ "label": "resolve", "description": [], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23432,6 +24562,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": true, + "trackAdoption": false, "references": [] }, { @@ -23445,7 +24576,8 @@ "T[]" ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23459,6 +24591,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -23472,6 +24605,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -23493,6 +24627,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23510,6 +24645,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -23523,6 +24659,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/expression_function_parameter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23550,6 +24687,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -23559,7 +24697,8 @@ "label": "name", "description": [], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23572,7 +24711,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23582,7 +24722,8 @@ "label": "displayName", "description": [], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23592,7 +24733,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23606,6 +24748,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -23617,7 +24760,8 @@ "label": "reuseDomNode", "description": [], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23639,6 +24783,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -23652,7 +24797,8 @@ "HTMLElement" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23665,7 +24811,8 @@ "Config" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -23684,7 +24831,8 @@ } ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -23700,6 +24848,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -23720,6 +24869,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23763,6 +24913,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -23792,6 +24943,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -23820,6 +24972,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23845,6 +24998,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -23858,6 +25012,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -23883,6 +25038,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -23906,6 +25062,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/expression_renderer_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -23931,6 +25088,7 @@ ], "path": "src/plugins/expressions/common/util/expressions_inspector_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -23952,6 +25110,7 @@ ], "path": "src/plugins/expressions/common/util/expressions_inspector_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -23971,6 +25130,7 @@ ], "path": "src/plugins/expressions/common/util/expressions_inspector_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -24001,7 +25161,8 @@ } ], "path": "src/plugins/expressions/common/util/expressions_inspector_adapter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -24058,6 +25219,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -24077,7 +25239,8 @@ ">" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -24096,7 +25259,8 @@ } ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -24110,6 +25274,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -24129,6 +25294,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -24154,6 +25320,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -24167,6 +25334,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -24181,6 +25349,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -24206,6 +25375,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -24219,6 +25389,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -24244,6 +25415,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -24257,6 +25429,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -24282,6 +25455,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -24305,6 +25479,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -24318,6 +25493,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -24343,6 +25519,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -24374,6 +25551,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -24402,6 +25580,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -24435,6 +25614,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -24463,6 +25643,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -24496,6 +25677,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -24524,6 +25706,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -24542,6 +25725,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -24555,6 +25739,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -24596,6 +25781,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -24616,7 +25802,8 @@ } ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -24629,7 +25816,8 @@ "Input" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -24649,7 +25837,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -24699,6 +25888,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -24719,6 +25909,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -24733,6 +25924,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -24754,6 +25946,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -24781,6 +25974,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -24802,6 +25996,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -24816,6 +26011,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -24853,6 +26049,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -24874,6 +26071,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -24912,6 +26110,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -24933,6 +26132,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -24950,6 +26150,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -24978,6 +26179,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -25012,6 +26214,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -25034,6 +26237,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -25060,6 +26264,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -25073,6 +26278,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -25099,6 +26305,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -25112,6 +26319,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -25129,6 +26337,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -25144,6 +26353,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -25153,7 +26363,8 @@ "label": "name", "description": [], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -25166,7 +26377,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -25178,7 +26390,8 @@ "\nA short help text." ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -25194,6 +26407,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -25207,7 +26421,8 @@ "unknown" ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -25222,7 +26437,8 @@ "unknown" ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -25239,7 +26455,8 @@ ") => unknown) | undefined" ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -25254,7 +26471,8 @@ ") | undefined" ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -25268,6 +26486,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -25287,6 +26506,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -25312,6 +26532,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -25325,6 +26546,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -25350,6 +26572,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -25363,6 +26586,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -25380,6 +26604,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -25393,6 +26618,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -25410,6 +26636,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -25423,6 +26650,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -25448,6 +26676,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -25461,6 +26690,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -25475,6 +26705,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -25497,6 +26728,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -25522,6 +26754,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -25535,6 +26768,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -25557,6 +26791,7 @@ ], "path": "src/plugins/expressions/common/expression_types/expression_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -25600,6 +26835,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -25613,6 +26849,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -25633,6 +26870,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -25666,6 +26904,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -25694,6 +26933,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -25719,6 +26959,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -25732,6 +26973,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -25757,6 +26999,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -25780,6 +27023,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -25805,6 +27049,7 @@ ], "path": "src/plugins/expressions/common/util/tables_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -25826,6 +27071,7 @@ ], "path": "src/plugins/expressions/common/util/tables_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -25839,6 +27085,7 @@ ], "path": "src/plugins/expressions/common/util/tables_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -25859,6 +27106,7 @@ ], "path": "src/plugins/expressions/common/util/tables_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -25876,6 +27124,7 @@ ], "path": "src/plugins/expressions/common/util/tables_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -25898,7 +27147,8 @@ "; }" ], "path": "src/plugins/expressions/common/util/tables_adapter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -25938,6 +27188,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -25951,6 +27202,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -25971,6 +27223,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -26004,6 +27257,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -26032,6 +27286,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -26057,6 +27312,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -26070,6 +27326,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -26095,6 +27352,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -26118,6 +27376,7 @@ ], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -26173,6 +27432,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -26212,6 +27472,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -26284,6 +27545,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -26306,6 +27568,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -26354,6 +27617,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -26392,6 +27656,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/series_calculation_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -26413,6 +27678,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/series_calculation_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -26429,6 +27695,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/series_calculation_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -26445,6 +27712,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/series_calculation_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -26461,6 +27729,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/series_calculation_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -26472,6 +27741,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/series_calculation_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -26481,7 +27751,8 @@ "label": "allowColumnOverwrite", "description": [], "path": "src/plugins/expressions/common/expression_functions/series_calculation_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -26508,6 +27779,7 @@ ], "path": "src/plugins/expressions/common/util/create_default_inspector_adapters.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -26539,6 +27811,7 @@ ], "path": "src/plugins/expressions/common/util/create_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -26559,6 +27832,7 @@ ], "path": "src/plugins/expressions/common/util/create_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -26593,6 +27867,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -26613,6 +27888,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -26647,6 +27923,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -26667,6 +27944,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -26703,6 +27981,7 @@ ], "path": "src/plugins/expressions/common/util/test_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -26727,6 +28006,7 @@ ], "path": "src/plugins/expressions/common/ast/format.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -26740,6 +28020,7 @@ ], "path": "src/plugins/expressions/common/ast/format.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -26762,6 +28043,7 @@ ], "path": "src/plugins/expressions/common/ast/format.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -26790,6 +28072,7 @@ ], "path": "src/plugins/expressions/common/ast/format_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -26811,6 +28094,7 @@ ], "path": "src/plugins/expressions/common/ast/format_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -26839,6 +28123,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/series_calculation_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -26858,6 +28143,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/series_calculation_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -26872,6 +28158,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/series_calculation_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -26890,6 +28177,7 @@ ], "path": "src/plugins/expressions/common/util/get_by_alias.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -26903,6 +28191,7 @@ ], "path": "src/plugins/expressions/common/util/get_by_alias.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -26917,6 +28206,7 @@ ], "path": "src/plugins/expressions/common/util/get_by_alias.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -26931,6 +28221,7 @@ ], "path": "src/plugins/expressions/common/util/get_by_alias.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -26949,6 +28240,7 @@ ], "path": "src/plugins/expressions/common/expression_types/get_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -26962,6 +28254,7 @@ ], "path": "src/plugins/expressions/common/expression_types/get_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -26987,6 +28280,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/ui_setting.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -27000,6 +28294,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/ui_setting.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -27027,6 +28322,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -27040,6 +28336,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -27062,6 +28359,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -27077,6 +28375,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -27104,6 +28403,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -27117,6 +28417,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -27150,6 +28451,7 @@ ], "path": "src/plugins/expressions/common/ast/parse.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -27163,6 +28465,7 @@ ], "path": "src/plugins/expressions/common/ast/parse.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -27177,6 +28480,7 @@ ], "path": "src/plugins/expressions/common/ast/parse.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -27204,6 +28508,7 @@ ], "path": "src/plugins/expressions/common/ast/parse_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -27219,6 +28524,7 @@ ], "path": "src/plugins/expressions/common/ast/parse_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -27245,6 +28551,7 @@ ], "path": "src/plugins/expressions/common/expression_types/serialize_provider.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -27266,6 +28573,7 @@ ], "path": "src/plugins/expressions/common/expression_types/serialize_provider.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -27292,6 +28600,7 @@ ], "path": "src/plugins/expressions/common/expression_types/unbox_expression_value.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -27312,6 +28621,7 @@ ], "path": "src/plugins/expressions/common/expression_types/unbox_expression_value.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -27331,6 +28641,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -27343,7 +28654,8 @@ "string | null" ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27356,7 +28668,8 @@ "string | null" ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27369,7 +28682,8 @@ "string | null" ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27382,7 +28696,8 @@ "string | null" ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27395,7 +28710,8 @@ "string | null" ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27414,7 +28730,8 @@ } ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27433,7 +28750,8 @@ } ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27446,7 +28764,8 @@ "number | null" ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27465,7 +28784,8 @@ } ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -27479,6 +28799,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -27491,7 +28812,8 @@ "string[] | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27504,7 +28826,8 @@ "string[] | null | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27517,7 +28840,8 @@ "number | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -27533,6 +28857,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -27545,7 +28870,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27558,7 +28884,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27571,7 +28898,8 @@ "\"Open Sans\" | \"American Typewriter\" | \"Arial\" | \"Baskerville\" | \"Book Antiqua\" | \"Brush Script\" | \"Chalkboard\" | \"Didot\" | \"Futura\" | \"Gill Sans\" | \"Helvetica Neue\" | \"Hoefler Text\" | \"Inter\" | \"Lucida Grande\" | \"Myriad\" | \"Optima\" | \"Palatino\" | undefined" ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27584,7 +28912,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27604,7 +28933,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27624,7 +28954,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27637,7 +28968,8 @@ "string | number | undefined" ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27657,7 +28989,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27677,7 +29010,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -27691,6 +29025,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -27703,7 +29038,8 @@ "string[] | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27713,7 +29049,8 @@ "label": "inputColumnId", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27723,7 +29060,8 @@ "label": "outputColumnId", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27736,7 +29074,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -27752,6 +29091,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -27764,7 +29104,8 @@ "\"datatable\"" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27784,7 +29125,8 @@ "[]" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27798,7 +29140,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27818,7 +29161,8 @@ "[]" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -27834,6 +29178,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -27843,7 +29188,8 @@ "label": "id", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27853,7 +29199,8 @@ "label": "name", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27872,7 +29219,8 @@ } ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -27888,6 +29236,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -27900,7 +29249,8 @@ "\"string\" | \"number\" | \"boolean\" | \"object\" | \"date\" | \"null\" | \"ip\" | \"nested\" | \"conflict\" | \"_source\" | \"attachment\" | \"geo_point\" | \"geo_shape\" | \"murmur3\" | \"unknown\" | \"histogram\"" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27915,7 +29265,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27930,7 +29281,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27945,7 +29297,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27969,7 +29322,8 @@ "> | undefined" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -27984,7 +29338,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -28000,7 +29355,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -28016,6 +29372,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -28034,7 +29391,8 @@ } ], "path": "src/plugins/expressions/common/execution/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -28053,7 +29411,8 @@ } ], "path": "src/plugins/expressions/common/execution/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -28072,7 +29431,8 @@ } ], "path": "src/plugins/expressions/common/execution/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -28086,6 +29446,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -28098,7 +29459,8 @@ "string[] | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -28108,7 +29470,8 @@ "label": "inputColumnId", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -28118,7 +29481,8 @@ "label": "outputColumnId", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -28131,7 +29495,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -28157,6 +29522,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -28172,6 +29538,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -28188,7 +29555,8 @@ "{ [x: string]: unknown; }" ], "path": "src/plugins/expressions/common/execution/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -28211,7 +29579,8 @@ "; }" ], "path": "src/plugins/expressions/common/execution/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -28226,7 +29595,8 @@ "AbortSignal" ], "path": "src/plugins/expressions/common/execution/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -28241,7 +29611,8 @@ "InspectorAdapters" ], "path": "src/plugins/expressions/common/execution/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -28257,6 +29628,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -28276,6 +29648,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -28293,6 +29666,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -28310,6 +29684,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -28329,6 +29704,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -28354,6 +29730,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -28367,6 +29744,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -28387,6 +29765,7 @@ ], "path": "src/plugins/expressions/common/execution/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -28404,6 +29783,7 @@ "description": [], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -28423,7 +29803,8 @@ ">" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -28443,7 +29824,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -28456,7 +29838,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -28475,7 +29858,8 @@ } ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -28499,6 +29883,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -28528,6 +29913,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -28548,6 +29934,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -28581,6 +29968,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -28601,6 +29989,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -28634,6 +30023,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -28654,6 +30044,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -28683,6 +30074,7 @@ ], "path": "src/plugins/expressions/common/execution/execution.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -28694,7 +30086,8 @@ "\nPartial result flag." ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -28709,7 +30102,8 @@ "Output" ], "path": "src/plugins/expressions/common/execution/execution.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -28741,6 +30135,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -28763,7 +30158,8 @@ "[]; }" ], "path": "src/plugins/expressions/common/execution/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -28778,7 +30174,8 @@ "\"error\" | \"not-started\" | \"pending\" | \"result\"" ], "path": "src/plugins/expressions/common/execution/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -28793,7 +30190,8 @@ "Output | undefined" ], "path": "src/plugins/expressions/common/execution/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -28808,7 +30206,8 @@ "Error | undefined" ], "path": "src/plugins/expressions/common/execution/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -28822,6 +30221,7 @@ "description": [], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -28851,6 +30251,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -28871,6 +30272,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -28904,6 +30306,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -28924,6 +30327,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -28949,6 +30353,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -28969,6 +30374,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -28986,6 +30392,7 @@ "description": [], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -29023,6 +30430,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -29043,6 +30451,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -29084,6 +30493,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -29104,6 +30514,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -29131,6 +30542,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -29151,7 +30563,8 @@ "; }" ], "path": "src/plugins/expressions/common/executor/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -29172,7 +30585,8 @@ "; }" ], "path": "src/plugins/expressions/common/executor/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -29185,7 +30599,8 @@ "Context" ], "path": "src/plugins/expressions/common/executor/container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -29199,6 +30614,7 @@ "description": [], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -29213,7 +30629,8 @@ "\"expression_builder\"" ], "path": "src/plugins/expressions/common/ast/build_expression.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -29243,7 +30660,8 @@ ">[]" ], "path": "src/plugins/expressions/common/ast/build_expression.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -29293,6 +30711,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -29315,6 +30734,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -29345,6 +30765,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "`ExpressionAstExpression`" @@ -29366,6 +30787,7 @@ ], "path": "src/plugins/expressions/common/ast/build_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "`string`" @@ -29393,6 +30815,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -29407,7 +30830,8 @@ "\"expression_function_builder\"" ], "path": "src/plugins/expressions/common/ast/build_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -29429,7 +30853,8 @@ "[\"name\"]" ], "path": "src/plugins/expressions/common/ast/build_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -29444,7 +30869,8 @@ "FunctionBuilderArguments" ], "path": "src/plugins/expressions/common/ast/build_function.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -29470,6 +30896,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -29485,6 +30912,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -29508,6 +30936,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -29539,6 +30968,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -29554,6 +30984,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -29585,6 +31016,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -29600,6 +31032,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -29624,6 +31057,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -29647,6 +31081,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -29662,6 +31097,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -29692,6 +31128,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "`ExpressionAstFunction`" @@ -29713,6 +31150,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "`string`" @@ -29730,6 +31168,7 @@ "description": [], "path": "src/plugins/expressions/common/executor/executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -29744,7 +31183,8 @@ "boolean | undefined" ], "path": "src/plugins/expressions/common/executor/executor.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -29758,6 +31198,7 @@ "description": [], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -29771,7 +31212,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -29784,7 +31226,8 @@ "Record | undefined" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -29799,7 +31242,8 @@ "boolean | undefined" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -29815,7 +31259,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -29828,7 +31273,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -29841,7 +31287,8 @@ "boolean | undefined" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -29854,7 +31301,8 @@ "boolean | undefined" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -29874,7 +31322,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -29888,7 +31337,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -29901,7 +31351,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -29943,6 +31394,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -29957,7 +31409,8 @@ "Name" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -29972,7 +31425,8 @@ "boolean | undefined" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -29987,7 +31441,8 @@ "boolean | undefined" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30000,7 +31455,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30034,7 +31490,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30056,7 +31513,8 @@ "[] | undefined" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30079,7 +31537,8 @@ "; }" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30094,7 +31553,8 @@ "string[] | undefined" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30106,7 +31566,8 @@ "\nHelp text displayed in the Expression editor. This text should be\ninternationalized." ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30122,6 +31583,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -30137,6 +31599,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -30153,6 +31616,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -30169,6 +31633,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -30188,6 +31653,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "canvas", @@ -30233,6 +31699,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -30270,7 +31737,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30324,7 +31792,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30362,7 +31831,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30400,7 +31870,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30438,7 +31909,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30500,7 +31972,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30562,7 +32035,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30624,7 +32098,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30686,7 +32161,8 @@ ">>" ], "path": "src/plugins/expressions/common/expression_functions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -30700,6 +32176,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/image.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -30712,7 +32189,8 @@ "\"image\"" ], "path": "src/plugins/expressions/common/expression_types/specs/image.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30722,7 +32200,8 @@ "label": "mode", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/image.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30732,7 +32211,8 @@ "label": "dataurl", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/image.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -30756,6 +32236,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -30767,7 +32248,8 @@ "\nTechnical name of the renderer, used as ID to identify renderer in\nexpression renderer registry. This must match the name of the expression\nfunction that is used to create the `type: render` object." ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30780,7 +32262,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30795,7 +32278,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30810,7 +32294,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30826,6 +32311,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -30839,7 +32325,8 @@ "\nTell the renderer if the dom node should be reused, it's recreated each\ntime by default." ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30863,6 +32350,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -30876,6 +32364,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -30890,6 +32379,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -30910,6 +32400,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -30927,6 +32418,7 @@ "description": [], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -30946,7 +32438,8 @@ "> | undefined" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30960,7 +32453,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -30980,7 +32474,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/service/expressions_services.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -30996,6 +32491,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -31021,6 +32517,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "canvas", @@ -31040,6 +32537,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -31054,6 +32552,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -31083,6 +32582,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "canvas", @@ -31110,6 +32610,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -31139,6 +32640,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "canvas", @@ -31171,6 +32673,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -31184,6 +32687,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31219,6 +32723,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -31247,6 +32752,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31280,6 +32786,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -31308,6 +32815,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31341,6 +32849,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -31369,6 +32878,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31393,6 +32903,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -31410,6 +32921,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -31433,6 +32945,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -31446,6 +32959,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -31460,6 +32974,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -31487,6 +33002,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -31500,6 +33016,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -31527,6 +33044,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -31540,6 +33058,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31567,6 +33086,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -31592,6 +33112,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -31605,6 +33126,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31632,6 +33154,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -31683,6 +33206,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -31703,6 +33227,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -31717,6 +33242,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -31738,6 +33264,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -31781,6 +33308,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -31801,6 +33329,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -31815,6 +33344,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -31836,6 +33366,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -31871,6 +33402,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -31890,6 +33422,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31924,6 +33457,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -31943,6 +33477,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -31958,6 +33493,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -31983,6 +33519,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -32002,6 +33539,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -32016,6 +33554,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -32040,6 +33579,7 @@ ], "path": "src/plugins/expressions/common/service/expressions_services.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -32067,6 +33607,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -32079,7 +33620,8 @@ "Name" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -32092,7 +33634,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -32106,6 +33649,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -32119,6 +33663,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -32136,6 +33681,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -32149,6 +33695,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -32166,6 +33713,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -32179,6 +33727,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -32203,7 +33752,8 @@ "; } | undefined" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -32224,7 +33774,8 @@ "; } | undefined" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -32237,7 +33788,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -32253,6 +33805,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -32265,7 +33818,8 @@ "\"style\"" ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -32284,7 +33838,8 @@ } ], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -32294,7 +33849,8 @@ "label": "css", "description": [], "path": "src/plugins/expressions/common/types/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -32310,6 +33866,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -32322,7 +33879,8 @@ "\"Open Sans\" | \"American Typewriter\" | \"Arial\" | \"Baskerville\" | \"Book Antiqua\" | \"Brush Script\" | \"Chalkboard\" | \"Didot\" | \"Futura\" | \"Gill Sans\" | \"Helvetica Neue\" | \"Hoefler Text\" | \"Inter\" | \"Lucida Grande\" | \"Myriad\" | \"Optima\" | \"Palatino\"" ], "path": "src/plugins/expressions/common/fonts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -32335,7 +33893,8 @@ "\"'Open Sans', Helvetica, Arial, sans-serif\" | \"'American Typewriter', 'Courier New', Courier, Monaco, mono\" | \"Arial, sans-serif\" | \"Baskerville, Georgia, Garamond, 'Times New Roman', Times, serif\" | \"'Book Antiqua', Georgia, Garamond, 'Times New Roman', Times, serif\" | \"'Brush Script MT', 'Comic Sans', sans-serif\" | \"Chalkboard, 'Comic Sans', sans-serif\" | \"Didot, Georgia, Garamond, 'Times New Roman', Times, serif\" | \"Futura, Impact, Helvetica, Arial, sans-serif\" | \"'Gill Sans', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, Helvetica, Arial, sans-serif\" | \"'Helvetica Neue', Helvetica, Arial, sans-serif\" | \"'Hoefler Text', Garamond, Georgia, 'Times New Roman', Times, serif\" | \"'Inter', 'Inter UI', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol'\" | \"'Lucida Grande', 'Lucida Sans Unicode', Lucida, Verdana, Helvetica, Arial, sans-serif\" | \"Myriad, Helvetica, Arial, sans-serif\" | \"Optima, 'Lucida Grande', 'Lucida Sans Unicode', Verdana, Helvetica, Arial, sans-serif\" | \"Palatino, 'Book Antiqua', Georgia, Garamond, 'Times New Roman', Times, serif\"" ], "path": "src/plugins/expressions/common/fonts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -32349,6 +33908,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -32368,7 +33928,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -32381,7 +33942,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -32394,7 +33956,8 @@ "\"Open Sans\" | \"American Typewriter\" | \"Arial\" | \"Baskerville\" | \"Book Antiqua\" | \"Brush Script\" | \"Chalkboard\" | \"Didot\" | \"Futura\" | \"Gill Sans\" | \"Helvetica Neue\" | \"Hoefler Text\" | \"Inter\" | \"Lucida Grande\" | \"Myriad\" | \"Optima\" | \"Palatino\" | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -32407,7 +33970,8 @@ "boolean | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -32420,7 +33984,8 @@ "number | null | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -32433,7 +33998,8 @@ "number | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -32446,7 +34012,8 @@ "boolean | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -32466,7 +34033,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -32479,7 +34047,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -32503,6 +34072,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -32512,7 +34082,8 @@ "label": "name", "description": [], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -32525,7 +34096,8 @@ "Context | undefined" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -32539,6 +34111,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -32554,6 +34127,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -32569,6 +34143,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -32582,6 +34157,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -32599,6 +34175,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -32622,6 +34199,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -32642,6 +34220,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -32667,6 +34246,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -32687,6 +34267,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -32712,6 +34293,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -32732,6 +34314,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -32756,6 +34339,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -32773,6 +34357,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -32788,6 +34373,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -32803,6 +34389,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -32819,7 +34406,8 @@ "unknown" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -32835,6 +34423,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -32860,6 +34449,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -32880,7 +34470,8 @@ " | undefined" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -32893,7 +34484,8 @@ "Params" ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -32917,6 +34509,7 @@ ], "path": "src/plugins/expressions/common/types/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -32930,6 +34523,7 @@ ], "path": "src/plugins/expressions/common/types/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -32943,6 +34537,7 @@ ], "path": "src/plugins/expressions/common/types/registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -32960,6 +34555,7 @@ ], "path": "src/plugins/expressions/common/types/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -32975,6 +34571,7 @@ ], "path": "src/plugins/expressions/common/types/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -32990,6 +34587,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -33002,7 +34600,8 @@ "string | null | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -33012,7 +34611,8 @@ "label": "name", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -33036,6 +34636,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -33055,6 +34656,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -33071,7 +34673,8 @@ "string | null | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -33085,6 +34688,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -33097,7 +34701,8 @@ "string[] | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -33107,7 +34712,8 @@ "label": "inputColumnId", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -33117,7 +34723,8 @@ "label": "outputColumnId", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -33130,7 +34737,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -33140,7 +34748,8 @@ "label": "window", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -33154,6 +34763,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -33166,7 +34776,8 @@ "string[] | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -33176,7 +34787,8 @@ "label": "inputColumnId", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -33186,7 +34798,8 @@ "label": "outputColumnId", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -33199,7 +34812,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -33212,7 +34826,8 @@ "\"min\" | \"max\" | \"sum\" | \"average\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -33228,6 +34843,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -33240,7 +34856,8 @@ "\"string\" | \"number\"" ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -33253,7 +34870,8 @@ "\"measure\" | \"dimension\"" ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -33263,7 +34881,8 @@ "label": "expression", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -33277,6 +34896,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -33289,7 +34909,8 @@ "\"range\"" ], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -33299,7 +34920,8 @@ "label": "from", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -33309,7 +34931,8 @@ "label": "to", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -33322,7 +34945,8 @@ "string | undefined" ], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -33353,6 +34977,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -33365,7 +34990,8 @@ "string[][]" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -33379,6 +35005,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/ui_setting.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -33391,7 +35018,8 @@ "unknown" ], "path": "src/plugins/expressions/common/expression_functions/specs/ui_setting.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -33401,7 +35029,8 @@ "label": "parameter", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/ui_setting.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -33419,6 +35048,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33432,6 +35062,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33443,6 +35074,7 @@ "description": [], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33456,6 +35088,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33469,6 +35102,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33482,6 +35116,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33495,6 +35130,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33508,6 +35144,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -33551,6 +35188,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33572,6 +35210,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33593,6 +35232,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33609,6 +35249,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/arguments.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33625,6 +35266,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33641,6 +35283,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33670,6 +35313,7 @@ ], "path": "src/plugins/expressions/common/util/create_error.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33707,6 +35351,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33752,6 +35397,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33773,6 +35419,7 @@ ], "path": "src/plugins/expressions/common/ast/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33797,6 +35444,7 @@ ], "path": "src/plugins/expressions/common/ast/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33829,6 +35477,7 @@ ], "path": "src/plugins/expressions/common/ast/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33851,6 +35500,7 @@ ], "path": "src/plugins/expressions/common/ast/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33879,6 +35529,7 @@ ], "path": "src/plugins/expressions/common/ast/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33918,6 +35569,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/clog.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -33981,6 +35633,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34044,6 +35697,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34099,6 +35753,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34162,6 +35817,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34225,6 +35881,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34264,6 +35921,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/theme.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34319,6 +35977,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/ui_setting.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34358,6 +36017,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/var.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34397,6 +36057,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34411,6 +36072,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34425,6 +36087,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34447,6 +36110,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -34460,7 +36124,8 @@ "I" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -34481,7 +36146,8 @@ "; }" ], "path": "src/plugins/expressions/common/expression_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -34508,6 +36174,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/error.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34532,6 +36199,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34546,6 +36214,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34562,6 +36231,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/render.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34576,6 +36246,7 @@ ], "path": "src/plugins/expressions/common/expression_types/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34592,6 +36263,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34608,6 +36280,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34624,6 +36297,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34646,6 +36320,7 @@ ], "path": "src/plugins/expressions/common/ast/build_function.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34672,6 +36347,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/error.ts", "deprecated": true, + "trackAdoption": false, "references": [], "initialIsOpen": false }, @@ -34689,6 +36365,7 @@ ], "path": "src/plugins/expressions/common/types/common.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34703,6 +36380,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/math.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34724,6 +36402,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34745,6 +36424,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/math.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34777,6 +36457,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34793,6 +36474,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34825,6 +36507,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34839,6 +36522,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34855,6 +36539,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/render.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "canvas", @@ -34921,6 +36606,7 @@ ], "path": "src/plugins/expressions/common/expression_renderers/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34935,6 +36621,7 @@ ], "path": "src/plugins/expressions/common/util/create_error.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34955,6 +36642,7 @@ ], "path": "src/plugins/expressions/common/types/style.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -34976,6 +36664,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -35016,6 +36705,7 @@ ], "path": "src/plugins/expressions/common/types/common.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -35047,6 +36737,7 @@ ], "path": "src/plugins/expressions/common/types/common.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -35061,6 +36752,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -35077,6 +36769,7 @@ ], "path": "src/plugins/expressions/common/types/common.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -35093,6 +36786,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -35107,6 +36801,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -35121,6 +36816,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -35135,6 +36831,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -35146,6 +36843,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/boolean.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35158,7 +36856,8 @@ "\"boolean\"" ], "path": "src/plugins/expressions/common/expression_types/specs/boolean.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35169,6 +36868,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/boolean.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35182,6 +36882,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/boolean.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -35197,6 +36898,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/boolean.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35210,6 +36912,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/boolean.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -35227,6 +36930,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/boolean.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35240,6 +36944,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/boolean.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -35256,6 +36961,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/boolean.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35277,6 +36983,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/boolean.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35290,6 +36997,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/boolean.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -35314,6 +37022,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/boolean.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35327,6 +37036,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/boolean.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -35349,6 +37059,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -35363,6 +37074,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -35374,6 +37086,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/clog.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35386,7 +37099,8 @@ "\"clog\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/clog.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35397,6 +37111,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/clog.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -35407,7 +37122,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/clog.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35421,6 +37137,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/clog.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35434,6 +37151,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/clog.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -35451,6 +37169,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35463,7 +37182,8 @@ "\"createTable\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35476,7 +37196,8 @@ "\"datatable\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35489,7 +37210,8 @@ "\"null\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35499,7 +37221,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35510,6 +37233,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35520,6 +37244,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35532,7 +37257,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35542,7 +37268,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35555,7 +37282,8 @@ "false" ], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35568,7 +37296,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -35581,6 +37310,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35593,7 +37323,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35603,7 +37334,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35616,7 +37348,8 @@ "false" ], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35629,7 +37362,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -35642,6 +37376,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35654,7 +37389,8 @@ "\"number\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35664,7 +37400,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35674,7 +37411,8 @@ "label": "default", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35687,7 +37425,8 @@ "false" ], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -35721,6 +37460,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35734,6 +37474,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -35754,6 +37495,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/create_table.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -35773,6 +37515,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35785,7 +37528,8 @@ "\"cumulative_sum\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35798,7 +37542,8 @@ "\"datatable\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35811,7 +37556,8 @@ "\"datatable\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35821,7 +37567,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35832,6 +37579,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35842,6 +37590,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35851,7 +37600,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35864,7 +37614,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35877,7 +37628,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35890,7 +37642,8 @@ "false" ], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -35903,6 +37656,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35912,7 +37666,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35925,7 +37680,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35938,7 +37694,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -35951,6 +37708,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -35960,7 +37718,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35973,7 +37732,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -35986,7 +37746,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -35999,6 +37760,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36008,7 +37770,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -36021,7 +37784,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -36034,7 +37798,8 @@ "false" ], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -36076,6 +37841,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36095,6 +37861,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -36115,6 +37882,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/cumulative_sum.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -36132,6 +37900,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36144,7 +37913,8 @@ "\"datatable\"" ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -36158,6 +37928,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36171,6 +37942,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -36206,6 +37978,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36225,6 +37998,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -36260,6 +38034,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36279,6 +38054,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -36293,6 +38069,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36306,6 +38083,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -36337,6 +38115,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36356,6 +38135,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -36372,6 +38152,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36401,6 +38182,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36420,6 +38202,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -36452,6 +38235,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36471,6 +38255,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/datatable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -36490,6 +38275,7 @@ "description": [], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36500,6 +38286,7 @@ "description": [], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -36511,6 +38298,7 @@ "description": [], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -36522,6 +38310,7 @@ "description": [], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [] } ], @@ -36538,6 +38327,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36550,7 +38340,8 @@ "\"derivative\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -36563,7 +38354,8 @@ "\"datatable\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -36576,7 +38368,8 @@ "\"datatable\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -36586,7 +38379,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -36597,6 +38391,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36607,6 +38402,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36616,7 +38412,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -36629,7 +38426,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -36642,7 +38440,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -36655,7 +38454,8 @@ "false" ], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -36668,6 +38468,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36677,7 +38478,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -36690,7 +38492,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -36703,7 +38506,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -36716,6 +38520,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36725,7 +38530,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -36738,7 +38544,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -36751,7 +38558,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -36764,6 +38572,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36773,7 +38582,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -36786,7 +38596,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -36799,7 +38610,8 @@ "false" ], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -36841,6 +38653,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36860,6 +38673,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -36880,6 +38694,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/derivative.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -36900,6 +38715,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -36911,6 +38727,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36923,7 +38740,8 @@ "\"error\"" ], "path": "src/plugins/expressions/common/expression_types/specs/error.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -36934,6 +38752,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36971,6 +38790,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -36990,6 +38810,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -37009,6 +38830,7 @@ "description": [], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -37054,6 +38876,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -37074,6 +38897,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -37123,6 +38947,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -37143,6 +38968,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -37192,6 +39018,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -37212,6 +39039,7 @@ ], "path": "src/plugins/expressions/common/execution/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -37229,6 +39057,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -37241,7 +39070,8 @@ "\"filter\"" ], "path": "src/plugins/expressions/common/expression_types/specs/filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37252,6 +39082,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -37265,6 +39096,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/filter.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -37282,6 +39114,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -37294,7 +39127,8 @@ "\"font\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37307,7 +39141,8 @@ "never[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37320,7 +39155,8 @@ "\"style\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37330,7 +39166,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37343,7 +39180,8 @@ "\"null\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37354,6 +39192,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -37364,6 +39203,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -37373,7 +39213,8 @@ "label": "default", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37383,7 +39224,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37403,7 +39245,8 @@ "[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37416,7 +39259,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -37429,6 +39273,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -37438,7 +39283,8 @@ "label": "default", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37448,7 +39294,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37461,7 +39308,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -37474,6 +39322,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -37483,7 +39332,8 @@ "label": "default", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37493,7 +39343,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37506,7 +39357,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -37519,6 +39371,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -37528,7 +39381,8 @@ "label": "default", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37538,7 +39392,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37551,7 +39406,8 @@ "boolean[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37564,7 +39420,8 @@ "\"boolean\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -37577,6 +39434,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -37586,7 +39444,8 @@ "label": "default", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37599,7 +39458,8 @@ "string[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37609,7 +39469,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37622,7 +39483,8 @@ "(\"number\" | \"null\")[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -37635,6 +39497,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -37644,7 +39507,8 @@ "label": "default", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37654,7 +39518,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37667,7 +39532,8 @@ "\"number\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -37680,6 +39546,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -37689,7 +39556,8 @@ "label": "default", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37699,7 +39567,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37712,7 +39581,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37725,7 +39595,8 @@ "string[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -37738,6 +39609,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -37747,7 +39619,8 @@ "label": "default", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37757,7 +39630,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37770,7 +39644,8 @@ "boolean[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37783,7 +39658,8 @@ "\"boolean\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -37796,6 +39672,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -37805,7 +39682,8 @@ "label": "default", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37815,7 +39693,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37835,7 +39714,8 @@ "[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -37848,7 +39728,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -37882,6 +39763,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -37895,6 +39777,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -37915,6 +39798,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/font.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -37935,6 +39819,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -37949,6 +39834,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -37963,6 +39849,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -37977,6 +39864,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -37988,6 +39876,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/image.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -38000,7 +39889,8 @@ "\"image\"" ], "path": "src/plugins/expressions/common/expression_types/specs/image.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38011,6 +39901,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/image.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -38048,6 +39939,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/image.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -38067,6 +39959,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/image.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -38089,6 +39982,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -38103,6 +39997,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -38114,6 +40009,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -38126,7 +40022,8 @@ "\"mapColumn\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38139,7 +40036,8 @@ "string[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38152,7 +40050,8 @@ "\"datatable\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38165,7 +40064,8 @@ "\"datatable\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38175,7 +40075,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38186,6 +40087,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -38196,6 +40098,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -38208,7 +40111,8 @@ "(\"null\" | \"string\")[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38218,7 +40122,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38231,7 +40136,8 @@ "false" ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38244,7 +40150,8 @@ "null" ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -38257,6 +40164,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -38269,7 +40177,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38282,7 +40191,8 @@ "string[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38292,7 +40202,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38305,7 +40216,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -38318,6 +40230,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -38330,7 +40243,8 @@ "(\"number\" | \"null\" | \"boolean\" | \"string\")[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38343,7 +40257,8 @@ "false" ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38356,7 +40271,8 @@ "string[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38366,7 +40282,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38379,7 +40296,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -38392,6 +40310,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -38404,7 +40323,8 @@ "(\"null\" | \"string\")[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38414,7 +40334,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38427,7 +40348,8 @@ "false" ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38440,7 +40362,8 @@ "null" ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -38502,6 +40425,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -38521,6 +40445,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38541,6 +40466,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -38558,6 +40484,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/math.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -38570,7 +40497,8 @@ "\"math\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/math.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38583,7 +40511,8 @@ "undefined" ], "path": "src/plugins/expressions/common/expression_functions/specs/math.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38596,7 +40525,8 @@ "(\"number\" | \"datatable\")[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/math.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38606,7 +40536,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/math.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38617,6 +40548,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/math.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -38627,6 +40559,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/math.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -38639,7 +40572,8 @@ "string[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/math.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38652,7 +40586,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/math.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38662,7 +40597,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/math.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -38675,6 +40611,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/math.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -38687,7 +40624,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/math.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38700,7 +40638,8 @@ "(\"null\" | \"zero\" | \"false\" | \"throw\")[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/math.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38710,7 +40649,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/math.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -38744,6 +40684,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/math.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -38763,6 +40704,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/math.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -38783,6 +40725,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/math.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -38800,6 +40743,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -38812,7 +40756,8 @@ "\"mathColumn\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38825,7 +40770,8 @@ "\"datatable\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38838,7 +40784,8 @@ "\"datatable\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38848,7 +40795,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38859,6 +40807,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -38871,7 +40820,8 @@ "any" ], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38882,6 +40832,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -38894,7 +40845,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38904,7 +40856,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38917,7 +40870,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -38930,6 +40884,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -38942,7 +40897,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38955,7 +40911,8 @@ "string[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38965,7 +40922,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -38978,7 +40936,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -38991,6 +40950,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39003,7 +40963,8 @@ "(\"null\" | \"string\")[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39013,7 +40974,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39026,7 +40988,8 @@ "false" ], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39039,7 +41002,8 @@ "null" ], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -39099,6 +41063,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39118,6 +41083,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -39138,6 +41104,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -39169,6 +41136,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/math_column.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -39188,6 +41156,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39200,7 +41169,8 @@ "\"moving_average\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39213,7 +41183,8 @@ "\"datatable\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39226,7 +41197,8 @@ "\"datatable\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39236,7 +41208,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39247,6 +41220,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39257,6 +41231,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39266,7 +41241,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39279,7 +41255,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39292,7 +41269,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39305,7 +41283,8 @@ "false" ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -39318,6 +41297,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39327,7 +41307,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39340,7 +41321,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39353,7 +41335,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -39366,6 +41349,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39375,7 +41359,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39388,7 +41373,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39401,7 +41387,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -39414,6 +41401,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39423,7 +41411,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39436,7 +41425,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39449,7 +41439,8 @@ "false" ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -39462,6 +41453,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39471,7 +41463,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39484,7 +41477,8 @@ "\"number\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39494,7 +41488,8 @@ "label": "default", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -39536,6 +41531,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39555,6 +41551,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -39575,6 +41572,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/moving_average.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -39595,6 +41593,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -39606,6 +41605,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/null.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39618,7 +41618,8 @@ "\"null\"" ], "path": "src/plugins/expressions/common/expression_types/specs/null.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39629,6 +41630,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/null.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39642,6 +41644,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/null.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -39659,6 +41662,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39671,7 +41675,8 @@ "\"num\"" ], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39682,6 +41687,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39695,6 +41701,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -39710,6 +41717,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39723,6 +41731,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -39740,6 +41749,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39753,6 +41763,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -39770,6 +41781,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39783,6 +41795,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -39799,6 +41812,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39820,6 +41834,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39830,6 +41845,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39839,7 +41855,8 @@ "label": "value", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -39865,6 +41882,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39875,6 +41893,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39884,7 +41903,8 @@ "label": "value", "description": [], "path": "src/plugins/expressions/common/expression_types/specs/num.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -39905,6 +41925,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/number.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39917,7 +41938,8 @@ "\"number\"" ], "path": "src/plugins/expressions/common/expression_types/specs/number.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -39928,6 +41950,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/number.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39941,6 +41964,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/number.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -39956,6 +41980,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/number.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39969,6 +41994,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/number.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -39986,6 +42012,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/number.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -39999,6 +42026,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/number.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -40015,6 +42043,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/number.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40036,6 +42065,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/number.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40049,6 +42079,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/number.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -40073,6 +42104,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/number.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40086,6 +42118,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/number.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -40108,6 +42141,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -40122,6 +42156,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -40135,6 +42170,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40147,7 +42183,8 @@ "\"overall_metric\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -40160,7 +42197,8 @@ "\"datatable\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -40173,7 +42211,8 @@ "\"datatable\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -40183,7 +42222,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -40194,6 +42234,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40204,6 +42245,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40213,7 +42255,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -40226,7 +42269,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -40239,7 +42283,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -40252,7 +42297,8 @@ "false" ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -40265,6 +42311,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40274,7 +42321,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -40287,7 +42335,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -40300,7 +42349,8 @@ "(\"min\" | \"max\" | \"sum\" | \"average\")[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -40313,6 +42363,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40322,7 +42373,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -40335,7 +42387,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -40348,7 +42401,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -40361,6 +42415,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40370,7 +42425,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -40383,7 +42439,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -40396,7 +42453,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -40409,6 +42467,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40418,7 +42477,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -40431,7 +42491,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -40444,7 +42505,8 @@ "false" ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -40486,6 +42548,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40505,6 +42568,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -40525,6 +42589,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/overall_metric.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -40545,6 +42610,7 @@ ], "path": "src/plugins/expressions/common/fonts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -40556,6 +42622,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40568,7 +42635,8 @@ "\"pointseries\"" ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -40579,6 +42647,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40592,6 +42661,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -40606,6 +42676,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40651,6 +42722,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40670,6 +42742,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -40692,6 +42765,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -40714,6 +42788,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/pointseries.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -40725,6 +42800,7 @@ "description": [], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40753,6 +42829,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40773,6 +42850,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -40805,6 +42883,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40825,6 +42904,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -40850,6 +42930,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40870,6 +42951,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -40887,6 +42969,7 @@ "description": [], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40932,6 +43015,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -40952,6 +43036,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -41001,6 +43086,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41021,6 +43107,7 @@ ], "path": "src/plugins/expressions/common/executor/container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -41038,6 +43125,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41050,7 +43138,8 @@ "\"range\"" ], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -41061,6 +43150,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41081,6 +43171,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -41095,6 +43186,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41124,6 +43216,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41143,6 +43236,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/range.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -41162,6 +43256,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/render.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41174,7 +43269,8 @@ "\"render\"" ], "path": "src/plugins/expressions/common/expression_types/specs/render.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -41185,6 +43281,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/render.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41206,6 +43303,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/render.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41219,6 +43317,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/render.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -41238,6 +43337,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/shape.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41250,7 +43350,8 @@ "\"shape\"" ], "path": "src/plugins/expressions/common/expression_types/specs/shape.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -41261,6 +43362,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/shape.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41290,6 +43392,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/shape.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41310,6 +43413,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/shape.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -41329,6 +43433,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/string.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41341,7 +43446,8 @@ "\"string\"" ], "path": "src/plugins/expressions/common/expression_types/specs/string.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -41352,6 +43458,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/string.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41365,6 +43472,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/string.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -41380,6 +43488,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/string.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41393,6 +43502,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/string.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -41410,6 +43520,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/string.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41423,6 +43534,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/string.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -41439,6 +43551,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/string.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41460,6 +43573,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/string.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41473,6 +43587,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/string.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -41497,6 +43612,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/string.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41510,6 +43626,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/string.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -41529,6 +43646,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/style.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41541,7 +43659,8 @@ "\"style\"" ], "path": "src/plugins/expressions/common/expression_types/specs/style.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -41552,6 +43671,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/style.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41565,6 +43685,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/style.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -41582,6 +43703,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/theme.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41594,7 +43716,8 @@ "\"theme\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/theme.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -41607,7 +43730,8 @@ "never[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/theme.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -41617,7 +43741,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/theme.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -41630,7 +43755,8 @@ "\"null\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/theme.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -41641,6 +43767,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/theme.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41651,6 +43778,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/theme.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41663,7 +43791,8 @@ "string[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/theme.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -41673,7 +43802,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/theme.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -41686,7 +43816,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/theme.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -41699,7 +43830,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/theme.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -41712,6 +43844,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/theme.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41721,7 +43854,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/theme.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -41757,6 +43891,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/theme.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41770,6 +43905,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/theme.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -41784,6 +43920,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/theme.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -41815,6 +43952,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/theme.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -41832,6 +43970,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41844,7 +43983,8 @@ "\"ui_setting\"" ], "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -41855,6 +43995,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41876,6 +44017,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41895,6 +44037,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -41920,6 +44063,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41939,6 +44083,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -41964,6 +44109,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -41983,6 +44129,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -42016,6 +44163,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -42035,6 +44183,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -42067,6 +44216,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -42086,6 +44236,7 @@ ], "path": "src/plugins/expressions/common/expression_types/specs/ui_setting.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -42105,6 +44256,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/var.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -42117,7 +44269,8 @@ "\"var\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/var.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -42127,7 +44280,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/var.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -42138,6 +44292,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/var.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -42148,6 +44303,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/var.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -42160,7 +44316,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/var.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -42173,7 +44330,8 @@ "string[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/var.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -42186,7 +44344,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/var.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -42196,7 +44355,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/var.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -42232,6 +44392,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/var.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -42245,6 +44406,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/var.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -42259,6 +44421,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/var.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -42290,6 +44453,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/var.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -42307,6 +44471,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -42319,7 +44484,8 @@ "\"var_set\"" ], "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -42329,7 +44495,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -42340,6 +44507,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -42350,6 +44518,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -42362,7 +44531,8 @@ "\"string\"[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -42375,7 +44545,8 @@ "string[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -42388,7 +44559,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -42401,7 +44573,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -42411,7 +44584,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -42424,6 +44598,7 @@ "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -42436,7 +44611,8 @@ "string[]" ], "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -42449,7 +44625,8 @@ "true" ], "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "expressions", @@ -42459,7 +44636,8 @@ "label": "help", "description": [], "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -42495,6 +44673,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "expressions", @@ -42508,6 +44687,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -42522,6 +44702,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -42553,6 +44734,7 @@ ], "path": "src/plugins/expressions/common/expression_functions/specs/var_set.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/expressions.mdx b/api_docs/expressions.mdx index dd9f2dd9ca414..e170014e3ffc7 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressions'] --- import expressionsObj from './expressions.devdocs.json'; diff --git a/api_docs/features.devdocs.json b/api_docs/features.devdocs.json index c8393bb27b15e..a6e9773502284 100644 --- a/api_docs/features.devdocs.json +++ b/api_docs/features.devdocs.json @@ -11,6 +11,7 @@ "description": [], "path": "x-pack/plugins/features/common/kibana_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -30,7 +31,8 @@ "[]" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -44,6 +46,7 @@ ], "path": "x-pack/plugins/features/common/kibana_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -65,6 +68,7 @@ ], "path": "x-pack/plugins/features/common/kibana_feature.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -78,7 +82,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -88,7 +93,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -101,7 +107,8 @@ "number | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -114,7 +121,8 @@ "{ readonly id: string; readonly label: string; readonly ariaLabel?: string | undefined; readonly order?: number | undefined; readonly euiIconType?: string | undefined; }" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -127,7 +135,8 @@ "readonly string[]" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -140,7 +149,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -153,7 +163,8 @@ "Readonly<{ [x: string]: readonly string[]; }> | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -166,7 +177,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\" | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -179,7 +191,8 @@ "Readonly<{ all: Readonly<{ excludeFromBasePrivileges?: boolean | undefined; requireAllSpaces?: boolean | undefined; disabled?: boolean | undefined; management?: Readonly<{ [x: string]: readonly string[]; }> | undefined; catalogue?: readonly string[] | undefined; api?: readonly string[] | undefined; app?: readonly string[] | undefined; alerting?: Readonly<{ rule?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; alert?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; }> | undefined; cases?: Readonly<{ all?: readonly string[] | undefined; push?: readonly string[] | undefined; create?: readonly string[] | undefined; read?: readonly string[] | undefined; update?: readonly string[] | undefined; delete?: readonly string[] | undefined; }> | undefined; savedObject: Readonly<{ all: readonly string[]; read: readonly string[]; }>; ui: readonly string[]; }>; read: Readonly<{ excludeFromBasePrivileges?: boolean | undefined; requireAllSpaces?: boolean | undefined; disabled?: boolean | undefined; management?: Readonly<{ [x: string]: readonly string[]; }> | undefined; catalogue?: readonly string[] | undefined; api?: readonly string[] | undefined; app?: readonly string[] | undefined; alerting?: Readonly<{ rule?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; alert?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; }> | undefined; cases?: Readonly<{ all?: readonly string[] | undefined; push?: readonly string[] | undefined; create?: readonly string[] | undefined; read?: readonly string[] | undefined; update?: readonly string[] | undefined; delete?: readonly string[] | undefined; }> | undefined; savedObject: Readonly<{ all: readonly string[]; read: readonly string[]; }>; ui: readonly string[]; }>; }> | null" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -192,7 +205,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -205,7 +219,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -215,7 +230,8 @@ "label": "excludeFromBasePrivileges", "description": [], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -228,7 +244,8 @@ "Readonly<{ description: string; privileges: readonly Readonly<{ id: string; privilege: Readonly<{ excludeFromBasePrivileges?: boolean | undefined; requireAllSpaces?: boolean | undefined; disabled?: boolean | undefined; management?: Readonly<{ [x: string]: readonly string[]; }> | undefined; catalogue?: readonly string[] | undefined; api?: readonly string[] | undefined; app?: readonly string[] | undefined; alerting?: Readonly<{ rule?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; alert?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; }> | undefined; cases?: Readonly<{ all?: readonly string[] | undefined; push?: readonly string[] | undefined; create?: readonly string[] | undefined; read?: readonly string[] | undefined; update?: readonly string[] | undefined; delete?: readonly string[] | undefined; }> | undefined; savedObject: Readonly<{ all: readonly string[]; read: readonly string[]; }>; ui: readonly string[]; }>; }>[]; }> | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -249,6 +266,7 @@ ], "path": "x-pack/plugins/features/common/kibana_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -269,6 +287,7 @@ ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -283,7 +302,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -298,7 +318,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -317,6 +338,7 @@ "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [ { "plugin": "security", @@ -369,7 +391,8 @@ "{ [sectionId: string]: readonly string[]; } | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -384,7 +407,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -399,7 +423,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -414,7 +439,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -429,7 +455,8 @@ "{ rule?: { all?: readonly string[] | undefined; read?: readonly string[] | undefined; } | undefined; alert?: { all?: readonly string[] | undefined; read?: readonly string[] | undefined; } | undefined; } | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -444,7 +471,8 @@ "{ all?: readonly string[] | undefined; push?: readonly string[] | undefined; create?: readonly string[] | undefined; read?: readonly string[] | undefined; update?: readonly string[] | undefined; delete?: readonly string[] | undefined; } | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -459,7 +487,8 @@ "{ all: readonly string[]; read: readonly string[]; }" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -476,7 +505,8 @@ "readonly string[]" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -492,6 +522,7 @@ ], "path": "x-pack/plugins/features/common/kibana_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -505,7 +536,8 @@ "\nUnique identifier for this feature.\nThis identifier is also used when generating UI Capabilities.\n" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -517,7 +549,8 @@ "\nDisplay name for this feature.\nThis will be displayed to end-users, so a translatable string is advised for i18n." ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -532,7 +565,8 @@ "AppCategory" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -547,7 +581,8 @@ "number | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -562,7 +597,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -577,7 +613,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\" | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -592,7 +629,8 @@ "readonly string[]" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -607,7 +645,8 @@ "{ [sectionId: string]: readonly string[]; } | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -622,7 +661,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -637,7 +677,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -652,7 +693,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -685,7 +727,8 @@ "; } | null" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -708,7 +751,8 @@ "[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -723,7 +767,8 @@ "string | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -740,7 +785,8 @@ "[]; } | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -756,6 +802,7 @@ ], "path": "x-pack/plugins/features/common/sub_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -767,7 +814,8 @@ "Display name for this sub-feature" ], "path": "x-pack/plugins/features/common/sub_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -790,7 +838,8 @@ "[]" ], "path": "x-pack/plugins/features/common/sub_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -824,6 +873,7 @@ ], "path": "x-pack/plugins/features/common/sub_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -835,7 +885,8 @@ "\nIdentifier for this privilege. Must be unique across all other privileges within a feature." ], "path": "x-pack/plugins/features/common/sub_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -847,7 +898,8 @@ "\nThe display name for this privilege." ], "path": "x-pack/plugins/features/common/sub_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -862,7 +914,8 @@ "\"none\" | \"all\" | \"read\"" ], "path": "x-pack/plugins/features/common/sub_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -877,7 +930,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\" | undefined" ], "path": "x-pack/plugins/features/common/sub_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -898,6 +952,7 @@ ], "path": "x-pack/plugins/features/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "setup", "initialIsOpen": true }, @@ -921,6 +976,7 @@ ], "path": "x-pack/plugins/features/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -936,6 +992,7 @@ "description": [], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -949,6 +1006,7 @@ ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -976,6 +1034,7 @@ ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -989,7 +1048,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1003,7 +1063,8 @@ " | undefined" ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1018,7 +1079,8 @@ "; }> | undefined" ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1040,7 +1102,8 @@ ">" ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1061,6 +1124,7 @@ ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1076,6 +1140,7 @@ "description": [], "path": "x-pack/plugins/features/common/kibana_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -1095,7 +1160,8 @@ "[]" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1109,6 +1175,7 @@ ], "path": "x-pack/plugins/features/common/kibana_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -1130,6 +1197,7 @@ ], "path": "x-pack/plugins/features/common/kibana_feature.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1143,7 +1211,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1153,7 +1222,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1166,7 +1236,8 @@ "number | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1179,7 +1250,8 @@ "{ readonly id: string; readonly label: string; readonly ariaLabel?: string | undefined; readonly order?: number | undefined; readonly euiIconType?: string | undefined; }" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1192,7 +1264,8 @@ "readonly string[]" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1205,7 +1278,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1218,7 +1292,8 @@ "Readonly<{ [x: string]: readonly string[]; }> | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1231,7 +1306,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\" | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1244,7 +1320,8 @@ "Readonly<{ all: Readonly<{ excludeFromBasePrivileges?: boolean | undefined; requireAllSpaces?: boolean | undefined; disabled?: boolean | undefined; management?: Readonly<{ [x: string]: readonly string[]; }> | undefined; catalogue?: readonly string[] | undefined; api?: readonly string[] | undefined; app?: readonly string[] | undefined; alerting?: Readonly<{ rule?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; alert?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; }> | undefined; cases?: Readonly<{ all?: readonly string[] | undefined; push?: readonly string[] | undefined; create?: readonly string[] | undefined; read?: readonly string[] | undefined; update?: readonly string[] | undefined; delete?: readonly string[] | undefined; }> | undefined; savedObject: Readonly<{ all: readonly string[]; read: readonly string[]; }>; ui: readonly string[]; }>; read: Readonly<{ excludeFromBasePrivileges?: boolean | undefined; requireAllSpaces?: boolean | undefined; disabled?: boolean | undefined; management?: Readonly<{ [x: string]: readonly string[]; }> | undefined; catalogue?: readonly string[] | undefined; api?: readonly string[] | undefined; app?: readonly string[] | undefined; alerting?: Readonly<{ rule?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; alert?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; }> | undefined; cases?: Readonly<{ all?: readonly string[] | undefined; push?: readonly string[] | undefined; create?: readonly string[] | undefined; read?: readonly string[] | undefined; update?: readonly string[] | undefined; delete?: readonly string[] | undefined; }> | undefined; savedObject: Readonly<{ all: readonly string[]; read: readonly string[]; }>; ui: readonly string[]; }>; }> | null" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1257,7 +1334,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1270,7 +1348,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1280,7 +1359,8 @@ "label": "excludeFromBasePrivileges", "description": [], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1293,7 +1373,8 @@ "Readonly<{ description: string; privileges: readonly Readonly<{ id: string; privilege: Readonly<{ excludeFromBasePrivileges?: boolean | undefined; requireAllSpaces?: boolean | undefined; disabled?: boolean | undefined; management?: Readonly<{ [x: string]: readonly string[]; }> | undefined; catalogue?: readonly string[] | undefined; api?: readonly string[] | undefined; app?: readonly string[] | undefined; alerting?: Readonly<{ rule?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; alert?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; }> | undefined; cases?: Readonly<{ all?: readonly string[] | undefined; push?: readonly string[] | undefined; create?: readonly string[] | undefined; read?: readonly string[] | undefined; update?: readonly string[] | undefined; delete?: readonly string[] | undefined; }> | undefined; savedObject: Readonly<{ all: readonly string[]; read: readonly string[]; }>; ui: readonly string[]; }>; }>[]; }> | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1314,6 +1395,7 @@ ], "path": "x-pack/plugins/features/common/kibana_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1334,6 +1416,7 @@ ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -1347,7 +1430,8 @@ "\nUnique identifier for this feature.\nThis identifier is also used when generating UI Capabilities.\n" ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1362,7 +1446,8 @@ "{ [sectionId: string]: string[]; } | undefined" ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1377,7 +1462,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1401,7 +1487,8 @@ "[]" ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1417,6 +1504,7 @@ ], "path": "x-pack/plugins/features/common/feature_elasticsearch_privileges.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -1431,7 +1519,8 @@ "string[]" ], "path": "x-pack/plugins/features/common/feature_elasticsearch_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1446,7 +1535,8 @@ "{ [indexName: string]: string[]; } | undefined" ], "path": "x-pack/plugins/features/common/feature_elasticsearch_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1465,6 +1555,7 @@ "path": "x-pack/plugins/features/common/feature_elasticsearch_privileges.ts", "deprecated": true, "removeBy": "8.8.0\n\nThis is relied on by the reporting feature, and should be removed once reporting\nmigrates to using the Kibana Privilege model: https://github.com/elastic/kibana/issues/19914", + "trackAdoption": false, "references": [ { "plugin": "security", @@ -1487,7 +1578,8 @@ "string[]" ], "path": "x-pack/plugins/features/common/feature_elasticsearch_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1503,6 +1595,7 @@ ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -1517,7 +1610,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1532,7 +1626,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1551,6 +1646,7 @@ "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [ { "plugin": "security", @@ -1603,7 +1699,8 @@ "{ [sectionId: string]: readonly string[]; } | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1618,7 +1715,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1633,7 +1731,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1648,7 +1747,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1663,7 +1763,8 @@ "{ rule?: { all?: readonly string[] | undefined; read?: readonly string[] | undefined; } | undefined; alert?: { all?: readonly string[] | undefined; read?: readonly string[] | undefined; } | undefined; } | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1678,7 +1779,8 @@ "{ all?: readonly string[] | undefined; push?: readonly string[] | undefined; create?: readonly string[] | undefined; read?: readonly string[] | undefined; update?: readonly string[] | undefined; delete?: readonly string[] | undefined; } | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1693,7 +1795,8 @@ "{ all: readonly string[]; read: readonly string[]; }" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1710,7 +1813,8 @@ "readonly string[]" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1726,6 +1830,7 @@ ], "path": "x-pack/plugins/features/common/kibana_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -1739,7 +1844,8 @@ "\nUnique identifier for this feature.\nThis identifier is also used when generating UI Capabilities.\n" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1751,7 +1857,8 @@ "\nDisplay name for this feature.\nThis will be displayed to end-users, so a translatable string is advised for i18n." ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1766,7 +1873,8 @@ "AppCategory" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1781,7 +1889,8 @@ "number | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1796,7 +1905,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1811,7 +1921,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\" | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1826,7 +1937,8 @@ "readonly string[]" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1841,7 +1953,8 @@ "{ [sectionId: string]: readonly string[]; } | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1856,7 +1969,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1871,7 +1985,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1886,7 +2001,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1919,7 +2035,8 @@ "; } | null" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1942,7 +2059,8 @@ "[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1957,7 +2075,8 @@ "string | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -1974,7 +2093,8 @@ "[]; } | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1990,6 +2110,7 @@ ], "path": "x-pack/plugins/features/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -2011,6 +2132,7 @@ ], "path": "x-pack/plugins/features/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -2030,6 +2152,7 @@ ], "path": "x-pack/plugins/features/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2055,6 +2178,7 @@ ], "path": "x-pack/plugins/features/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -2074,6 +2198,7 @@ ], "path": "x-pack/plugins/features/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2104,6 +2229,7 @@ "path": "x-pack/plugins/features/server/plugin.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [ { "plugin": "spaces", @@ -2246,6 +2372,7 @@ "path": "x-pack/plugins/features/server/plugin.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [ { "plugin": "security", @@ -2268,6 +2395,7 @@ ], "path": "x-pack/plugins/features/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2285,6 +2413,7 @@ ], "path": "x-pack/plugins/features/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2320,6 +2449,7 @@ ], "path": "x-pack/plugins/features/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2339,7 +2469,8 @@ } ], "path": "x-pack/plugins/features/server/feature_privilege_iterator/feature_privilege_iterator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2352,7 +2483,8 @@ "FeaturePrivilegeIteratorOptions" ], "path": "x-pack/plugins/features/server/feature_privilege_iterator/feature_privilege_iterator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2386,6 +2518,7 @@ ], "path": "x-pack/plugins/features/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2405,7 +2538,8 @@ } ], "path": "x-pack/plugins/features/server/feature_privilege_iterator/sub_feature_privilege_iterator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2419,6 +2553,7 @@ ], "path": "x-pack/plugins/features/server/feature_privilege_iterator/sub_feature_privilege_iterator.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2432,7 +2567,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\"" ], "path": "x-pack/plugins/features/server/feature_privilege_iterator/sub_feature_privilege_iterator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2450,6 +2586,7 @@ "description": [], "path": "x-pack/plugins/features/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -2471,6 +2608,7 @@ ], "path": "x-pack/plugins/features/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2494,6 +2632,7 @@ ], "path": "x-pack/plugins/features/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2516,6 +2655,7 @@ ], "path": "x-pack/plugins/features/server/feature_schema.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] @@ -2531,6 +2671,7 @@ "description": [], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -2544,6 +2685,7 @@ ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -2571,6 +2713,7 @@ ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2584,7 +2727,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2598,7 +2742,8 @@ " | undefined" ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2613,7 +2758,8 @@ "; }> | undefined" ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2635,7 +2781,8 @@ ">" ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2656,6 +2803,7 @@ ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2671,6 +2819,7 @@ "description": [], "path": "x-pack/plugins/features/common/kibana_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -2690,7 +2839,8 @@ "[]" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2704,6 +2854,7 @@ ], "path": "x-pack/plugins/features/common/kibana_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -2725,6 +2876,7 @@ ], "path": "x-pack/plugins/features/common/kibana_feature.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2738,7 +2890,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2748,7 +2901,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2761,7 +2915,8 @@ "number | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2774,7 +2929,8 @@ "{ readonly id: string; readonly label: string; readonly ariaLabel?: string | undefined; readonly order?: number | undefined; readonly euiIconType?: string | undefined; }" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2787,7 +2943,8 @@ "readonly string[]" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2800,7 +2957,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2813,7 +2971,8 @@ "Readonly<{ [x: string]: readonly string[]; }> | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2826,7 +2985,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\" | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2839,7 +2999,8 @@ "Readonly<{ all: Readonly<{ excludeFromBasePrivileges?: boolean | undefined; requireAllSpaces?: boolean | undefined; disabled?: boolean | undefined; management?: Readonly<{ [x: string]: readonly string[]; }> | undefined; catalogue?: readonly string[] | undefined; api?: readonly string[] | undefined; app?: readonly string[] | undefined; alerting?: Readonly<{ rule?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; alert?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; }> | undefined; cases?: Readonly<{ all?: readonly string[] | undefined; push?: readonly string[] | undefined; create?: readonly string[] | undefined; read?: readonly string[] | undefined; update?: readonly string[] | undefined; delete?: readonly string[] | undefined; }> | undefined; savedObject: Readonly<{ all: readonly string[]; read: readonly string[]; }>; ui: readonly string[]; }>; read: Readonly<{ excludeFromBasePrivileges?: boolean | undefined; requireAllSpaces?: boolean | undefined; disabled?: boolean | undefined; management?: Readonly<{ [x: string]: readonly string[]; }> | undefined; catalogue?: readonly string[] | undefined; api?: readonly string[] | undefined; app?: readonly string[] | undefined; alerting?: Readonly<{ rule?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; alert?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; }> | undefined; cases?: Readonly<{ all?: readonly string[] | undefined; push?: readonly string[] | undefined; create?: readonly string[] | undefined; read?: readonly string[] | undefined; update?: readonly string[] | undefined; delete?: readonly string[] | undefined; }> | undefined; savedObject: Readonly<{ all: readonly string[]; read: readonly string[]; }>; ui: readonly string[]; }>; }> | null" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2852,7 +3013,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2865,7 +3027,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2875,7 +3038,8 @@ "label": "excludeFromBasePrivileges", "description": [], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2888,7 +3052,8 @@ "Readonly<{ description: string; privileges: readonly Readonly<{ id: string; privilege: Readonly<{ excludeFromBasePrivileges?: boolean | undefined; requireAllSpaces?: boolean | undefined; disabled?: boolean | undefined; management?: Readonly<{ [x: string]: readonly string[]; }> | undefined; catalogue?: readonly string[] | undefined; api?: readonly string[] | undefined; app?: readonly string[] | undefined; alerting?: Readonly<{ rule?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; alert?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; }> | undefined; cases?: Readonly<{ all?: readonly string[] | undefined; push?: readonly string[] | undefined; create?: readonly string[] | undefined; read?: readonly string[] | undefined; update?: readonly string[] | undefined; delete?: readonly string[] | undefined; }> | undefined; savedObject: Readonly<{ all: readonly string[]; read: readonly string[]; }>; ui: readonly string[]; }>; }>[]; }> | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2909,6 +3074,7 @@ ], "path": "x-pack/plugins/features/common/kibana_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2924,6 +3090,7 @@ "description": [], "path": "x-pack/plugins/features/common/sub_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -2937,6 +3104,7 @@ ], "path": "x-pack/plugins/features/common/sub_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -2958,6 +3126,7 @@ ], "path": "x-pack/plugins/features/common/sub_feature.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2971,7 +3140,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/features/common/sub_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -2992,7 +3162,8 @@ "; privileges: readonly Readonly<{ id: string; name: string; includeIn: \"none\" | \"all\" | \"read\"; minimumLicense?: \"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\" | undefined; disabled?: boolean | undefined; management?: Readonly<{ [x: string]: readonly string[]; }> | undefined; catalogue?: readonly string[] | undefined; alerting?: Readonly<{ rule?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; alert?: Readonly<{ all?: readonly string[] | undefined; read?: readonly string[] | undefined; }> | undefined; }> | undefined; cases?: Readonly<{ all?: readonly string[] | undefined; push?: readonly string[] | undefined; create?: readonly string[] | undefined; read?: readonly string[] | undefined; update?: readonly string[] | undefined; delete?: readonly string[] | undefined; }> | undefined; ui: readonly string[]; app?: readonly string[] | undefined; requireAllSpaces?: boolean | undefined; api?: readonly string[] | undefined; savedObject: Readonly<{ all: readonly string[]; read: readonly string[]; }>; }>[]; }>[]" ], "path": "x-pack/plugins/features/common/sub_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3014,6 +3185,7 @@ ], "path": "x-pack/plugins/features/common/sub_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -3034,6 +3206,7 @@ ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -3047,7 +3220,8 @@ "\nUnique identifier for this feature.\nThis identifier is also used when generating UI Capabilities.\n" ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3062,7 +3236,8 @@ "{ [sectionId: string]: string[]; } | undefined" ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3077,7 +3252,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3101,7 +3277,8 @@ "[]" ], "path": "x-pack/plugins/features/common/elasticsearch_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3117,6 +3294,7 @@ ], "path": "x-pack/plugins/features/common/feature_elasticsearch_privileges.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -3131,7 +3309,8 @@ "string[]" ], "path": "x-pack/plugins/features/common/feature_elasticsearch_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3146,7 +3325,8 @@ "{ [indexName: string]: string[]; } | undefined" ], "path": "x-pack/plugins/features/common/feature_elasticsearch_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3165,6 +3345,7 @@ "path": "x-pack/plugins/features/common/feature_elasticsearch_privileges.ts", "deprecated": true, "removeBy": "8.8.0\n\nThis is relied on by the reporting feature, and should be removed once reporting\nmigrates to using the Kibana Privilege model: https://github.com/elastic/kibana/issues/19914", + "trackAdoption": false, "references": [ { "plugin": "security", @@ -3187,7 +3368,8 @@ "string[]" ], "path": "x-pack/plugins/features/common/feature_elasticsearch_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3203,6 +3385,7 @@ ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -3217,7 +3400,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3232,7 +3416,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3251,6 +3436,7 @@ "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [ { "plugin": "security", @@ -3303,7 +3489,8 @@ "{ [sectionId: string]: readonly string[]; } | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3318,7 +3505,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3333,7 +3521,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3348,7 +3537,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3363,7 +3553,8 @@ "{ rule?: { all?: readonly string[] | undefined; read?: readonly string[] | undefined; } | undefined; alert?: { all?: readonly string[] | undefined; read?: readonly string[] | undefined; } | undefined; } | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3378,7 +3569,8 @@ "{ all?: readonly string[] | undefined; push?: readonly string[] | undefined; create?: readonly string[] | undefined; read?: readonly string[] | undefined; update?: readonly string[] | undefined; delete?: readonly string[] | undefined; } | undefined" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3393,7 +3585,8 @@ "{ all: readonly string[]; read: readonly string[]; }" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3410,7 +3603,8 @@ "readonly string[]" ], "path": "x-pack/plugins/features/common/feature_kibana_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3426,6 +3620,7 @@ ], "path": "x-pack/plugins/features/common/kibana_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -3439,7 +3634,8 @@ "\nUnique identifier for this feature.\nThis identifier is also used when generating UI Capabilities.\n" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3451,7 +3647,8 @@ "\nDisplay name for this feature.\nThis will be displayed to end-users, so a translatable string is advised for i18n." ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3466,7 +3663,8 @@ "AppCategory" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3481,7 +3679,8 @@ "number | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3496,7 +3695,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3511,7 +3711,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\" | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3526,7 +3727,8 @@ "readonly string[]" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3541,7 +3743,8 @@ "{ [sectionId: string]: readonly string[]; } | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3556,7 +3759,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3571,7 +3775,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3586,7 +3791,8 @@ "readonly string[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3619,7 +3825,8 @@ "; } | null" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3642,7 +3849,8 @@ "[] | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3657,7 +3865,8 @@ "string | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3674,7 +3883,8 @@ "[]; } | undefined" ], "path": "x-pack/plugins/features/common/kibana_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3690,6 +3900,7 @@ ], "path": "x-pack/plugins/features/common/sub_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -3701,7 +3912,8 @@ "Display name for this sub-feature" ], "path": "x-pack/plugins/features/common/sub_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3724,7 +3936,8 @@ "[]" ], "path": "x-pack/plugins/features/common/sub_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3758,6 +3971,7 @@ ], "path": "x-pack/plugins/features/common/sub_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -3769,7 +3983,8 @@ "\nIdentifier for this privilege. Must be unique across all other privileges within a feature." ], "path": "x-pack/plugins/features/common/sub_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3781,7 +3996,8 @@ "\nThe display name for this privilege." ], "path": "x-pack/plugins/features/common/sub_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3796,7 +4012,8 @@ "\"none\" | \"all\" | \"read\"" ], "path": "x-pack/plugins/features/common/sub_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3811,7 +4028,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\" | undefined" ], "path": "x-pack/plugins/features/common/sub_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3827,6 +4045,7 @@ ], "path": "x-pack/plugins/features/common/sub_feature.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "features", @@ -3841,7 +4060,8 @@ "\"mutually_exclusive\" | \"independent\"" ], "path": "x-pack/plugins/features/common/sub_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "features", @@ -3864,7 +4084,8 @@ "[]" ], "path": "x-pack/plugins/features/common/sub_feature.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3886,6 +4107,7 @@ ], "path": "x-pack/plugins/features/common/sub_feature.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/features.mdx b/api_docs/features.mdx index bdc8e583f61a1..1dc8dd28ad100 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'features'] --- import featuresObj from './features.devdocs.json'; diff --git a/api_docs/field_formats.devdocs.json b/api_docs/field_formats.devdocs.json index 6ee4a0284f9f5..28bc24cfdcdfc 100644 --- a/api_docs/field_formats.devdocs.json +++ b/api_docs/field_formats.devdocs.json @@ -28,6 +28,7 @@ ], "path": "src/plugins/field_formats/public/lib/converters/date.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -46,7 +47,8 @@ } ], "path": "src/plugins/field_formats/public/lib/converters/date.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -56,7 +58,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/public/lib/converters/date.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -69,7 +72,8 @@ "KBN_FIELD_TYPES" ], "path": "src/plugins/field_formats/public/lib/converters/date.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -87,6 +91,7 @@ ], "path": "src/plugins/field_formats/public/lib/converters/date.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -102,6 +107,7 @@ ], "path": "src/plugins/field_formats/public/lib/converters/date.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -115,6 +121,7 @@ ], "path": "src/plugins/field_formats/public/lib/converters/date.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -143,6 +150,7 @@ ], "path": "src/plugins/field_formats/common/converters/date_nanos_shared.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -161,7 +169,8 @@ } ], "path": "src/plugins/field_formats/common/converters/date_nanos_shared.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -171,7 +180,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/converters/date_nanos_shared.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -184,7 +194,8 @@ "KBN_FIELD_TYPES" ], "path": "src/plugins/field_formats/common/converters/date_nanos_shared.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -197,7 +208,8 @@ "Function" ], "path": "src/plugins/field_formats/common/converters/date_nanos_shared.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -207,7 +219,8 @@ "label": "memoizedPattern", "description": [], "path": "src/plugins/field_formats/common/converters/date_nanos_shared.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -217,7 +230,8 @@ "label": "timeZone", "description": [], "path": "src/plugins/field_formats/common/converters/date_nanos_shared.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -237,6 +251,7 @@ ], "path": "src/plugins/field_formats/common/converters/date_nanos_shared.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -252,6 +267,7 @@ ], "path": "src/plugins/field_formats/common/converters/date_nanos_shared.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -265,6 +281,7 @@ ], "path": "src/plugins/field_formats/common/converters/date_nanos_shared.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -299,6 +316,7 @@ ], "path": "src/plugins/field_formats/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "setup", "initialIsOpen": true }, @@ -330,6 +348,7 @@ ], "path": "src/plugins/field_formats/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -362,6 +381,7 @@ ], "path": "src/plugins/field_formats/server/lib/converters/date_server.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -380,7 +400,8 @@ } ], "path": "src/plugins/field_formats/server/lib/converters/date_server.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -390,7 +411,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/server/lib/converters/date_server.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -403,7 +425,8 @@ "KBN_FIELD_TYPES" ], "path": "src/plugins/field_formats/server/lib/converters/date_server.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -417,6 +440,7 @@ ], "path": "src/plugins/field_formats/server/lib/converters/date_server.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -440,6 +464,7 @@ ], "path": "src/plugins/field_formats/server/lib/converters/date_server.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -463,6 +488,7 @@ ], "path": "src/plugins/field_formats/server/lib/converters/date_server.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -484,6 +510,7 @@ ], "path": "src/plugins/field_formats/server/lib/converters/date_server.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -507,6 +534,7 @@ ], "path": "src/plugins/field_formats/server/lib/converters/date_server.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -520,6 +548,7 @@ ], "path": "src/plugins/field_formats/server/lib/converters/date_server.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -541,6 +570,7 @@ ], "path": "src/plugins/field_formats/server/lib/converters/date_server.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -563,6 +593,7 @@ ], "path": "src/plugins/field_formats/server/lib/converters/date_nanos_server.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -584,6 +615,7 @@ ], "path": "src/plugins/field_formats/server/lib/converters/date_nanos_server.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -597,6 +629,7 @@ ], "path": "src/plugins/field_formats/server/lib/converters/date_nanos_server.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -618,6 +651,7 @@ ], "path": "src/plugins/field_formats/server/lib/converters/date_nanos_server.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -641,6 +675,7 @@ "description": [], "path": "src/plugins/field_formats/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -664,6 +699,7 @@ ], "path": "src/plugins/field_formats/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -685,6 +721,7 @@ ], "path": "src/plugins/field_formats/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -703,6 +740,7 @@ "description": [], "path": "src/plugins/field_formats/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -734,6 +772,7 @@ ], "path": "src/plugins/field_formats/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -755,6 +794,7 @@ ], "path": "src/plugins/field_formats/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -793,6 +833,7 @@ ], "path": "src/plugins/field_formats/common/converters/boolean.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -811,7 +852,8 @@ } ], "path": "src/plugins/field_formats/common/converters/boolean.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -821,7 +863,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/converters/boolean.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -835,7 +878,8 @@ "[]" ], "path": "src/plugins/field_formats/common/converters/boolean.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -857,6 +901,7 @@ ], "path": "src/plugins/field_formats/common/converters/boolean.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -870,6 +915,7 @@ ], "path": "src/plugins/field_formats/common/converters/boolean.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -891,6 +937,7 @@ ], "path": "src/plugins/field_formats/common/converters/boolean.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -919,6 +966,7 @@ ], "path": "src/plugins/field_formats/common/converters/bytes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -937,7 +985,8 @@ } ], "path": "src/plugins/field_formats/common/converters/bytes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -947,7 +996,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/converters/bytes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -966,7 +1016,8 @@ } ], "path": "src/plugins/field_formats/common/converters/bytes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -976,7 +1027,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/converters/bytes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -986,7 +1038,8 @@ "label": "allowsNumericalAggregations", "description": [], "path": "src/plugins/field_formats/common/converters/bytes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1017,6 +1070,7 @@ ], "path": "src/plugins/field_formats/common/converters/color.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -1035,7 +1089,8 @@ } ], "path": "src/plugins/field_formats/common/converters/color.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1045,7 +1100,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/converters/color.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1059,7 +1115,8 @@ "[]" ], "path": "src/plugins/field_formats/common/converters/color.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1073,6 +1130,7 @@ ], "path": "src/plugins/field_formats/common/converters/color.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1088,6 +1146,7 @@ ], "path": "src/plugins/field_formats/common/converters/color.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -1101,6 +1160,7 @@ ], "path": "src/plugins/field_formats/common/converters/color.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1126,6 +1186,7 @@ ], "path": "src/plugins/field_formats/common/converters/color.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -1139,6 +1200,7 @@ ], "path": "src/plugins/field_formats/common/converters/color.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1160,6 +1222,7 @@ ], "path": "src/plugins/field_formats/common/converters/color.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1194,6 +1257,7 @@ ], "path": "src/plugins/field_formats/common/converters/duration.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -1212,7 +1276,8 @@ } ], "path": "src/plugins/field_formats/common/converters/duration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1222,7 +1287,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/converters/duration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1235,7 +1301,8 @@ "KBN_FIELD_TYPES" ], "path": "src/plugins/field_formats/common/converters/duration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1248,7 +1315,8 @@ "{ text: string; kind: string; }[]" ], "path": "src/plugins/field_formats/common/converters/duration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1261,7 +1329,8 @@ "({ text: string; method: string; shortText?: undefined; } | { text: string; shortText: string; method: string; })[]" ], "path": "src/plugins/field_formats/common/converters/duration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1271,7 +1340,8 @@ "label": "allowsNumericalAggregations", "description": [], "path": "src/plugins/field_formats/common/converters/duration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1285,6 +1355,7 @@ ], "path": "src/plugins/field_formats/common/converters/duration.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1300,6 +1371,7 @@ ], "path": "src/plugins/field_formats/common/converters/duration.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1315,6 +1387,7 @@ ], "path": "src/plugins/field_formats/common/converters/duration.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1330,6 +1403,7 @@ ], "path": "src/plugins/field_formats/common/converters/duration.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -1343,6 +1417,7 @@ ], "path": "src/plugins/field_formats/common/converters/duration.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1360,6 +1435,7 @@ "description": [], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -1372,7 +1448,8 @@ "label": "id", "description": [], "path": "src/plugins/field_formats/common/field_format.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1387,7 +1464,8 @@ "\nHidden field formats can only be accessed directly by id,\nThey won't appear in field format editor UI,\nBut they can be accessed and used from code internally.\n" ], "path": "src/plugins/field_formats/common/field_format.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1400,7 +1478,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/field_format.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1416,7 +1495,8 @@ "string | string[]" ], "path": "src/plugins/field_formats/common/field_format.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1439,7 +1519,8 @@ " | undefined" ], "path": "src/plugins/field_formats/common/field_format.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1462,7 +1543,8 @@ " | undefined" ], "path": "src/plugins/field_formats/common/field_format.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1485,7 +1567,8 @@ " | undefined" ], "path": "src/plugins/field_formats/common/field_format.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1508,7 +1591,8 @@ } ], "path": "src/plugins/field_formats/common/field_format.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1521,7 +1605,8 @@ "boolean | undefined" ], "path": "src/plugins/field_formats/common/field_format.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1542,7 +1627,8 @@ } ], "path": "src/plugins/field_formats/common/field_format.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1564,7 +1650,8 @@ "> | undefined" ], "path": "src/plugins/field_formats/common/field_format.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -1578,6 +1665,7 @@ ], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -1599,6 +1687,7 @@ ], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1622,6 +1711,7 @@ ], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1667,6 +1757,7 @@ ], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -1680,6 +1771,7 @@ ], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1702,6 +1794,7 @@ ], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1731,6 +1824,7 @@ ], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1769,6 +1863,7 @@ ], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -1788,6 +1883,7 @@ ], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1812,6 +1908,7 @@ ], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "- parameter defaults" @@ -1833,6 +1930,7 @@ ], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -1848,6 +1946,7 @@ ], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1880,6 +1979,7 @@ ], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1909,6 +2009,7 @@ ], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1939,6 +2040,7 @@ ], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -1958,6 +2060,7 @@ ], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1982,6 +2085,7 @@ ], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2004,6 +2108,7 @@ ], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -2017,6 +2122,7 @@ ], "path": "src/plugins/field_formats/common/field_format.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2034,6 +2140,7 @@ "description": [], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -2054,7 +2161,8 @@ ">" ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -2065,6 +2173,7 @@ "description": [], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -2076,6 +2185,7 @@ "description": [], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -2098,7 +2208,8 @@ "> | undefined" ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -2129,6 +2240,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -2151,6 +2263,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2194,6 +2307,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -2216,6 +2330,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2236,6 +2351,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2257,6 +2373,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2289,6 +2406,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -2304,6 +2422,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2321,6 +2440,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2350,6 +2470,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -2365,6 +2486,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2390,6 +2512,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -2403,6 +2526,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2436,6 +2560,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -2449,6 +2574,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2466,6 +2592,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2491,6 +2618,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -2507,6 +2635,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2535,6 +2664,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -2548,6 +2678,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2563,6 +2694,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2593,6 +2725,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -2606,6 +2739,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2620,6 +2754,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2654,6 +2789,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -2667,6 +2803,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2682,6 +2819,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2696,6 +2834,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2721,6 +2860,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -2734,6 +2874,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2749,6 +2890,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2780,6 +2922,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -2793,6 +2936,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2827,6 +2971,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -2840,6 +2985,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2855,6 +3001,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2869,6 +3016,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2894,6 +3042,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -2915,6 +3064,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2940,6 +3090,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -2960,6 +3111,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2979,6 +3131,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -2992,6 +3145,7 @@ ], "path": "src/plugins/field_formats/common/field_formats_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3026,6 +3180,7 @@ ], "path": "src/plugins/field_formats/common/converters/geo_point.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -3044,7 +3199,8 @@ } ], "path": "src/plugins/field_formats/common/converters/geo_point.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3054,7 +3210,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/converters/geo_point.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3068,7 +3225,8 @@ "[]" ], "path": "src/plugins/field_formats/common/converters/geo_point.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3081,7 +3239,8 @@ "{ kind: string; text: string; }[]" ], "path": "src/plugins/field_formats/common/converters/geo_point.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3095,6 +3254,7 @@ ], "path": "src/plugins/field_formats/common/converters/geo_point.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3118,6 +3278,7 @@ ], "path": "src/plugins/field_formats/common/converters/geo_point.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -3131,6 +3292,7 @@ ], "path": "src/plugins/field_formats/common/converters/geo_point.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3152,6 +3314,7 @@ ], "path": "src/plugins/field_formats/common/converters/geo_point.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3186,6 +3349,7 @@ ], "path": "src/plugins/field_formats/common/converters/histogram.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -3204,7 +3368,8 @@ } ], "path": "src/plugins/field_formats/common/converters/histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3217,7 +3382,8 @@ "KBN_FIELD_TYPES" ], "path": "src/plugins/field_formats/common/converters/histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3227,7 +3393,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/converters/histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3246,7 +3413,8 @@ } ], "path": "src/plugins/field_formats/common/converters/histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3256,7 +3424,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/converters/histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3266,7 +3435,8 @@ "label": "allowsNumericalAggregations", "description": [], "path": "src/plugins/field_formats/common/converters/histogram.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3280,6 +3450,7 @@ ], "path": "src/plugins/field_formats/common/converters/histogram.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3303,6 +3474,7 @@ ], "path": "src/plugins/field_formats/common/converters/histogram.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -3316,6 +3488,7 @@ ], "path": "src/plugins/field_formats/common/converters/histogram.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3337,6 +3510,7 @@ ], "path": "src/plugins/field_formats/common/converters/histogram.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3371,6 +3545,7 @@ ], "path": "src/plugins/field_formats/common/converters/ip.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -3389,7 +3564,8 @@ } ], "path": "src/plugins/field_formats/common/converters/ip.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3399,7 +3575,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/converters/ip.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3412,7 +3589,8 @@ "KBN_FIELD_TYPES" ], "path": "src/plugins/field_formats/common/converters/ip.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3426,6 +3604,7 @@ ], "path": "src/plugins/field_formats/common/converters/ip.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -3439,6 +3618,7 @@ ], "path": "src/plugins/field_formats/common/converters/ip.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3467,6 +3647,7 @@ ], "path": "src/plugins/field_formats/common/converters/number.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -3485,7 +3666,8 @@ } ], "path": "src/plugins/field_formats/common/converters/number.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3495,7 +3677,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/converters/number.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3514,7 +3697,8 @@ } ], "path": "src/plugins/field_formats/common/converters/number.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3524,7 +3708,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/converters/number.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3534,7 +3719,8 @@ "label": "allowsNumericalAggregations", "description": [], "path": "src/plugins/field_formats/common/converters/number.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3559,6 +3745,7 @@ ], "path": "src/plugins/field_formats/common/converters/percent.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -3577,7 +3764,8 @@ } ], "path": "src/plugins/field_formats/common/converters/percent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3587,7 +3775,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/converters/percent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3606,7 +3795,8 @@ } ], "path": "src/plugins/field_formats/common/converters/percent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3616,7 +3806,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/converters/percent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3626,7 +3817,8 @@ "label": "allowsNumericalAggregations", "description": [], "path": "src/plugins/field_formats/common/converters/percent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3642,6 +3834,7 @@ ], "path": "src/plugins/field_formats/common/converters/percent.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3657,6 +3850,7 @@ ], "path": "src/plugins/field_formats/common/converters/percent.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -3670,6 +3864,7 @@ ], "path": "src/plugins/field_formats/common/converters/percent.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3704,6 +3899,7 @@ ], "path": "src/plugins/field_formats/common/converters/relative_date.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -3722,7 +3918,8 @@ } ], "path": "src/plugins/field_formats/common/converters/relative_date.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3732,7 +3929,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/converters/relative_date.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3745,7 +3943,8 @@ "KBN_FIELD_TYPES" ], "path": "src/plugins/field_formats/common/converters/relative_date.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3759,6 +3958,7 @@ ], "path": "src/plugins/field_formats/common/converters/relative_date.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -3772,6 +3972,7 @@ ], "path": "src/plugins/field_formats/common/converters/relative_date.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3806,6 +4007,7 @@ ], "path": "src/plugins/field_formats/common/converters/static_lookup.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -3824,7 +4026,8 @@ } ], "path": "src/plugins/field_formats/common/converters/static_lookup.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3834,7 +4037,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/converters/static_lookup.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3848,7 +4052,8 @@ "[]" ], "path": "src/plugins/field_formats/common/converters/static_lookup.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3862,6 +4067,7 @@ ], "path": "src/plugins/field_formats/common/converters/static_lookup.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3877,6 +4083,7 @@ ], "path": "src/plugins/field_formats/common/converters/static_lookup.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -3890,6 +4097,7 @@ ], "path": "src/plugins/field_formats/common/converters/static_lookup.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3924,6 +4132,7 @@ ], "path": "src/plugins/field_formats/common/converters/string.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -3942,7 +4151,8 @@ } ], "path": "src/plugins/field_formats/common/converters/string.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3952,7 +4162,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/converters/string.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3966,7 +4177,8 @@ "[]" ], "path": "src/plugins/field_formats/common/converters/string.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3979,7 +4191,8 @@ "({ kind: boolean; text: string; } | { kind: string; text: string; })[]" ], "path": "src/plugins/field_formats/common/converters/string.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -3993,6 +4206,7 @@ ], "path": "src/plugins/field_formats/common/converters/string.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4016,6 +4230,7 @@ ], "path": "src/plugins/field_formats/common/converters/string.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -4029,6 +4244,7 @@ ], "path": "src/plugins/field_formats/common/converters/string.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4050,6 +4266,7 @@ ], "path": "src/plugins/field_formats/common/converters/string.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4075,6 +4292,7 @@ ], "path": "src/plugins/field_formats/common/converters/string.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -4088,6 +4306,7 @@ ], "path": "src/plugins/field_formats/common/converters/string.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4109,6 +4328,7 @@ ], "path": "src/plugins/field_formats/common/converters/string.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4143,6 +4363,7 @@ ], "path": "src/plugins/field_formats/common/converters/truncate.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -4161,7 +4382,8 @@ } ], "path": "src/plugins/field_formats/common/converters/truncate.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -4171,7 +4393,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/converters/truncate.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -4184,7 +4407,8 @@ "KBN_FIELD_TYPES" ], "path": "src/plugins/field_formats/common/converters/truncate.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -4198,6 +4422,7 @@ ], "path": "src/plugins/field_formats/common/converters/truncate.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -4211,6 +4436,7 @@ ], "path": "src/plugins/field_formats/common/converters/truncate.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4245,6 +4471,7 @@ ], "path": "src/plugins/field_formats/common/converters/url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -4263,7 +4490,8 @@ } ], "path": "src/plugins/field_formats/common/converters/url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -4273,7 +4501,8 @@ "label": "title", "description": [], "path": "src/plugins/field_formats/common/converters/url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -4287,7 +4516,8 @@ "[]" ], "path": "src/plugins/field_formats/common/converters/url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -4300,7 +4530,8 @@ "{ kind: string; text: string; }[]" ], "path": "src/plugins/field_formats/common/converters/url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -4314,6 +4545,7 @@ ], "path": "src/plugins/field_formats/common/converters/url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -4335,6 +4567,7 @@ ], "path": "src/plugins/field_formats/common/converters/url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4352,6 +4585,7 @@ ], "path": "src/plugins/field_formats/common/converters/url.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4367,6 +4601,7 @@ ], "path": "src/plugins/field_formats/common/converters/url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -4380,6 +4615,7 @@ ], "path": "src/plugins/field_formats/common/converters/url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4405,6 +4641,7 @@ ], "path": "src/plugins/field_formats/common/converters/url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -4418,6 +4655,7 @@ ], "path": "src/plugins/field_formats/common/converters/url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4439,6 +4677,7 @@ ], "path": "src/plugins/field_formats/common/converters/url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4461,6 +4700,7 @@ ], "path": "src/plugins/field_formats/common/utils/highlight/highlight_request.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -4474,6 +4714,7 @@ ], "path": "src/plugins/field_formats/common/utils/highlight/highlight_request.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4491,6 +4732,7 @@ "description": [], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -4512,6 +4754,7 @@ ], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4525,7 +4768,8 @@ "any" ], "path": "src/plugins/field_formats/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -4545,7 +4789,8 @@ " | undefined" ], "path": "src/plugins/field_formats/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -4569,6 +4814,7 @@ ], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4582,7 +4828,8 @@ "any" ], "path": "src/plugins/field_formats/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -4602,7 +4849,8 @@ " | undefined" ], "path": "src/plugins/field_formats/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -4620,6 +4868,7 @@ ], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -4632,7 +4881,8 @@ "{ origin: string; pathname?: string | undefined; basePath?: string | undefined; } | undefined" ], "path": "src/plugins/field_formats/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4648,6 +4898,7 @@ ], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -4660,7 +4911,8 @@ "{ name: string; } | undefined" ], "path": "src/plugins/field_formats/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -4673,7 +4925,8 @@ "{ highlight?: Record | undefined; } | undefined" ], "path": "src/plugins/field_formats/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -4686,7 +4939,8 @@ "boolean | undefined" ], "path": "src/plugins/field_formats/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4702,6 +4956,7 @@ ], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -4714,7 +4969,8 @@ "boolean | undefined" ], "path": "src/plugins/field_formats/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -4727,7 +4983,8 @@ "string | undefined" ], "path": "src/plugins/field_formats/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4743,6 +5000,7 @@ "description": [], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -4766,6 +5024,7 @@ ], "path": "src/plugins/field_formats/common/constants/base_formatters.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4782,6 +5041,7 @@ ], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4812,6 +5072,7 @@ ], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -4830,6 +5091,7 @@ ], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4866,6 +5128,7 @@ ], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4883,6 +5146,7 @@ ], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4897,6 +5161,7 @@ ], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4913,6 +5178,7 @@ ], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4923,7 +5189,8 @@ "label": "key", "description": [], "path": "src/plugins/field_formats/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -4936,7 +5203,8 @@ "T | undefined" ], "path": "src/plugins/field_formats/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5073,6 +5341,7 @@ ], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5110,6 +5379,7 @@ ], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -5138,7 +5408,8 @@ "

> | undefined" ], "path": "src/plugins/field_formats/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5155,6 +5426,7 @@ ], "path": "src/plugins/field_formats/common/content_types/html_content_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5179,6 +5451,7 @@ ], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -5192,7 +5465,8 @@ "any" ], "path": "src/plugins/field_formats/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -5212,7 +5486,8 @@ " | undefined" ], "path": "src/plugins/field_formats/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5235,6 +5510,7 @@ ], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5403,6 +5679,7 @@ ], "path": "src/plugins/field_formats/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5419,6 +5696,7 @@ ], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5433,6 +5711,7 @@ ], "path": "src/plugins/field_formats/common/content_types/text_content_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5457,6 +5736,7 @@ ], "path": "src/plugins/field_formats/common/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -5470,7 +5750,8 @@ "any" ], "path": "src/plugins/field_formats/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -5490,7 +5771,8 @@ " | undefined" ], "path": "src/plugins/field_formats/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5506,6 +5788,7 @@ "description": [], "path": "src/plugins/field_formats/common/constants/color_default.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fieldFormats", @@ -5515,7 +5798,8 @@ "label": "range", "description": [], "path": "src/plugins/field_formats/common/constants/color_default.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -5525,7 +5809,8 @@ "label": "regex", "description": [], "path": "src/plugins/field_formats/common/constants/color_default.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -5535,7 +5820,8 @@ "label": "text", "description": [], "path": "src/plugins/field_formats/common/constants/color_default.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fieldFormats", @@ -5545,7 +5831,8 @@ "label": "background", "description": [], "path": "src/plugins/field_formats/common/constants/color_default.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5562,6 +5849,7 @@ ], "path": "src/plugins/field_formats/common/constants/ui_settings.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/field_formats.mdx b/api_docs/field_formats.mdx index bf827c90f00d7..cca2af12379c4 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fieldFormats'] --- import fieldFormatsObj from './field_formats.devdocs.json'; diff --git a/api_docs/file_upload.devdocs.json b/api_docs/file_upload.devdocs.json index f20136c27686a..afba8b7312153 100644 --- a/api_docs/file_upload.devdocs.json +++ b/api_docs/file_upload.devdocs.json @@ -13,6 +13,7 @@ "description": [], "path": "x-pack/plugins/file_upload/public/lazy_load_bundle/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fileUpload", @@ -22,7 +23,8 @@ "label": "isIndexingTriggered", "description": [], "path": "x-pack/plugins/file_upload/public/lazy_load_bundle/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -36,6 +38,7 @@ ], "path": "x-pack/plugins/file_upload/public/lazy_load_bundle/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fileUpload", @@ -49,6 +52,7 @@ ], "path": "x-pack/plugins/file_upload/public/lazy_load_bundle/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -63,6 +67,7 @@ ], "path": "x-pack/plugins/file_upload/public/lazy_load_bundle/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -77,6 +82,7 @@ ], "path": "x-pack/plugins/file_upload/public/lazy_load_bundle/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -94,6 +100,7 @@ ], "path": "x-pack/plugins/file_upload/public/lazy_load_bundle/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -109,6 +116,7 @@ ], "path": "x-pack/plugins/file_upload/public/lazy_load_bundle/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -124,6 +132,7 @@ ], "path": "x-pack/plugins/file_upload/public/lazy_load_bundle/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -147,6 +156,7 @@ ], "path": "x-pack/plugins/file_upload/public/lazy_load_bundle/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fileUpload", @@ -166,6 +176,7 @@ ], "path": "x-pack/plugins/file_upload/public/lazy_load_bundle/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -183,6 +194,7 @@ ], "path": "x-pack/plugins/file_upload/public/lazy_load_bundle/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -198,6 +210,7 @@ "description": [], "path": "x-pack/plugins/file_upload/public/lazy_load_bundle/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fileUpload", @@ -207,7 +220,8 @@ "label": "indexPatternId", "description": [], "path": "x-pack/plugins/file_upload/public/lazy_load_bundle/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -217,7 +231,8 @@ "label": "geoFieldName", "description": [], "path": "x-pack/plugins/file_upload/public/lazy_load_bundle/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -233,7 +248,8 @@ ".GEO_SHAPE" ], "path": "x-pack/plugins/file_upload/public/lazy_load_bundle/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -243,7 +259,8 @@ "label": "docCount", "description": [], "path": "x-pack/plugins/file_upload/public/lazy_load_bundle/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -257,6 +274,7 @@ "description": [], "path": "x-pack/plugins/file_upload/public/components/geo_upload_form/index_name_form.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fileUpload", @@ -266,7 +284,8 @@ "label": "indexName", "description": [], "path": "x-pack/plugins/file_upload/public/components/geo_upload_form/index_name_form.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -279,7 +298,8 @@ "string | undefined" ], "path": "x-pack/plugins/file_upload/public/components/geo_upload_form/index_name_form.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -293,6 +313,7 @@ ], "path": "x-pack/plugins/file_upload/public/components/geo_upload_form/index_name_form.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fileUpload", @@ -306,6 +327,7 @@ ], "path": "x-pack/plugins/file_upload/public/components/geo_upload_form/index_name_form.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -320,6 +342,7 @@ ], "path": "x-pack/plugins/file_upload/public/components/geo_upload_form/index_name_form.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -337,6 +360,7 @@ ], "path": "x-pack/plugins/file_upload/public/components/geo_upload_form/index_name_form.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -352,6 +376,7 @@ ], "path": "x-pack/plugins/file_upload/public/components/geo_upload_form/index_name_form.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -374,6 +399,7 @@ ], "path": "x-pack/plugins/file_upload/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -399,6 +425,7 @@ "description": [], "path": "x-pack/plugins/file_upload/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fileUpload", @@ -417,7 +444,8 @@ } ], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -431,7 +459,8 @@ " | undefined" ], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -445,6 +474,7 @@ "description": [], "path": "x-pack/plugins/file_upload/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fileUpload", @@ -457,7 +487,8 @@ "{ statusCode: number; error: string; message: string; attributes?: ErrorAttribute | undefined; }" ], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -467,7 +498,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -481,6 +513,7 @@ "description": [], "path": "x-pack/plugins/file_upload/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fileUpload", @@ -490,7 +523,8 @@ "label": "charset", "description": [], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -500,7 +534,8 @@ "label": "has_header_row", "description": [], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -510,7 +545,8 @@ "label": "has_byte_order_marker", "description": [], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -520,7 +556,8 @@ "label": "format", "description": [], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -533,7 +570,8 @@ "{ [fieldName: string]: { count: number; cardinality: number; top_hits: { count: number; value: any; }[]; mean_value?: number | undefined; median_value?: number | undefined; max_value?: number | undefined; min_value?: number | undefined; earliest?: string | undefined; latest?: string | undefined; }; }" ], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -543,7 +581,8 @@ "label": "sample_start", "description": [], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -553,7 +592,8 @@ "label": "num_messages_analyzed", "description": [], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -632,7 +672,8 @@ ".HISTOGRAM; format?: string | undefined; }; }; }" ], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -642,7 +683,8 @@ "label": "quote", "description": [], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -652,7 +694,8 @@ "label": "delimiter", "description": [], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -662,7 +705,8 @@ "label": "need_client_timezone", "description": [], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -672,7 +716,8 @@ "label": "num_lines_analyzed", "description": [], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -685,7 +730,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -698,7 +744,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -711,7 +758,8 @@ "string | undefined" ], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -724,7 +772,8 @@ "string | undefined" ], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -737,7 +786,8 @@ "string | undefined" ], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -750,7 +800,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -763,7 +814,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -776,7 +828,8 @@ "string | undefined" ], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -789,7 +842,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -803,6 +857,7 @@ "description": [], "path": "x-pack/plugins/file_upload/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fileUpload", @@ -812,7 +867,8 @@ "label": "description", "description": [], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -825,7 +881,8 @@ "any[]" ], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -839,6 +896,7 @@ "description": [], "path": "x-pack/plugins/file_upload/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fileUpload", @@ -851,7 +909,8 @@ "[key: string]: string | undefined" ], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -865,6 +924,7 @@ "description": [], "path": "x-pack/plugins/file_upload/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fileUpload", @@ -877,7 +937,8 @@ "{ created_by: string; } | undefined" ], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fileUpload", @@ -890,7 +951,8 @@ "{ [key: string]: any; }" ], "path": "x-pack/plugins/file_upload/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/file_upload.mdx b/api_docs/file_upload.mdx index 504dc53aac8ad..7d7005d146d32 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fileUpload'] --- import fileUploadObj from './file_upload.devdocs.json'; diff --git a/api_docs/files.devdocs.json b/api_docs/files.devdocs.json index 01bbe08995866..e8c6d117ab46a 100644 --- a/api_docs/files.devdocs.json +++ b/api_docs/files.devdocs.json @@ -13,8 +13,19 @@ "description": [ "\nA client that can be used to manage a specific {@link FileKind}." ], + "signature": [ + { + "pluginId": "files", + "scope": "public", + "docId": "kibFilesPluginApi", + "section": "def-public.FilesClient", + "text": "FilesClient" + }, + " extends GlobalEndpoints" + ], "path": "x-pack/plugins/files/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -26,7 +37,7 @@ "\nCreate a new file object with the provided metadata.\n" ], "signature": [ - "(args: { name: string; alt?: string | undefined; meta?: Record | undefined; mimeType?: string | undefined; }) => Promise<{ file: ", + "(args: { name: string; alt?: string | undefined; meta?: Record | undefined; mimeType?: string | undefined; } & { kind: string; }) => Promise<{ file: ", { "pluginId": "files", "scope": "common", @@ -38,6 +49,7 @@ ], "path": "x-pack/plugins/files/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -50,10 +62,11 @@ "- create file args" ], "signature": [ - "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"]" + "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"] & { kind: string; }" ], "path": "x-pack/plugins/files/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -67,10 +80,11 @@ "\nDelete a file object and all associated share and content objects.\n" ], "signature": [ - "(args: { id: string; }) => Promise<{ ok: true; }>" + "(args: { id: string; } & { kind: string; }) => Promise<{ ok: true; }>" ], "path": "x-pack/plugins/files/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -83,10 +97,11 @@ "- delete file args" ], "signature": [ - "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"]" + "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"] & { kind: string; }" ], "path": "x-pack/plugins/files/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -100,7 +115,7 @@ "\nGet a file object by ID.\n" ], "signature": [ - "(args: { id: string; }) => Promise<{ file: ", + "(args: { id: string; } & { kind: string; }) => Promise<{ file: ", { "pluginId": "files", "scope": "common", @@ -112,6 +127,7 @@ ], "path": "x-pack/plugins/files/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -124,10 +140,11 @@ "- get file by ID args" ], "signature": [ - "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"]" + "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"] & { kind: string; }" ], "path": "x-pack/plugins/files/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -141,7 +158,7 @@ "\nList all file objects, of a given {@link FileKind}.\n" ], "signature": [ - "(args?: ", + "(args: ", { "pluginId": "files", "scope": "common", @@ -149,7 +166,7 @@ "section": "def-common.Pagination", "text": "Pagination" }, - " | undefined) => Promise<{ files: ", + " & { kind: string; }) => Promise<{ files: ", { "pluginId": "files", "scope": "common", @@ -161,6 +178,7 @@ ], "path": "x-pack/plugins/files/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -173,32 +191,25 @@ "- list files args" ], "signature": [ - "(E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"]) | undefined" + "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"] & { kind: string; }" ], "path": "x-pack/plugins/files/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, { "parentPluginId": "files", - "id": "def-public.FilesClient.find", + "id": "def-public.FilesClient.update", "type": "Function", "tags": [], - "label": "find", + "label": "update", "description": [ - "\nFind a set of files given some filters.\n" + "\nUpdate a set of of metadata values of the file object.\n" ], "signature": [ - "(args: { kind?: string[] | undefined; name?: string[] | undefined; meta?: {} | undefined; extension?: string[] | undefined; status?: string[] | undefined; } & ", - { - "pluginId": "files", - "scope": "common", - "docId": "kibFilesPluginApi", - "section": "def-common.Pagination", - "text": "Pagination" - }, - ") => Promise<{ files: ", + "(args: { name?: string | undefined; alt?: string | undefined; meta?: Record | undefined; } & { id: string; } & { kind: string; }) => Promise<{ file: ", { "pluginId": "files", "scope": "common", @@ -206,135 +217,149 @@ "section": "def-common.FileJSON", "text": "FileJSON" }, - "[]; }>" + "; }>" ], "path": "x-pack/plugins/files/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { "parentPluginId": "files", - "id": "def-public.FilesClient.find.$1", + "id": "def-public.FilesClient.update.$1", "type": "CompoundType", "tags": [], "label": "args", "description": [ - "- File filters" + "- update file args" ], "signature": [ - "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"]" + "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"] & { kind: string; }" ], "path": "x-pack/plugins/files/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, { "parentPluginId": "files", - "id": "def-public.FilesClient.update", + "id": "def-public.FilesClient.upload", "type": "Function", "tags": [], - "label": "update", + "label": "upload", "description": [ - "\nUpdate a set of of metadata values of the file object.\n" + "\nStream the contents of the file to Kibana server for storage.\n" ], "signature": [ - "(args: { name?: string | undefined; alt?: string | undefined; meta?: Record | undefined; } & { id: string; }) => Promise<{ file: ", - { - "pluginId": "files", - "scope": "common", - "docId": "kibFilesPluginApi", - "section": "def-common.FileJSON", - "text": "FileJSON" - }, - "; }>" + "(args: { body: unknown; } & { id: string; } & { kind: string; }) => Promise<{ ok: true; size: number; }>" ], "path": "x-pack/plugins/files/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { "parentPluginId": "files", - "id": "def-public.FilesClient.update.$1", + "id": "def-public.FilesClient.upload.$1", "type": "CompoundType", "tags": [], "label": "args", "description": [ - "- update file args" + "- upload file args" ], "signature": [ - "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"]" + "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"] & { kind: string; }" ], "path": "x-pack/plugins/files/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, { "parentPluginId": "files", - "id": "def-public.FilesClient.upload", + "id": "def-public.FilesClient.download", "type": "Function", "tags": [], - "label": "upload", + "label": "download", "description": [ - "\nStream the contents of the file to Kibana server for storage.\n" + "\nStream a download of the file object's content.\n" ], "signature": [ - "(args: { body: unknown; } & { id: string; }) => Promise<{ ok: true; size: number; }>" + "(args: { id: string; fileName?: string | undefined; } & { kind: string; }) => Promise" ], "path": "x-pack/plugins/files/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { "parentPluginId": "files", - "id": "def-public.FilesClient.upload.$1", + "id": "def-public.FilesClient.download.$1", "type": "CompoundType", "tags": [], "label": "args", "description": [ - "- upload file args" + "- download file args" ], "signature": [ - "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"]" + "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"] & { kind: string; }" ], "path": "x-pack/plugins/files/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, { "parentPluginId": "files", - "id": "def-public.FilesClient.download", + "id": "def-public.FilesClient.getDownloadHref", "type": "Function", "tags": [], - "label": "download", + "label": "getDownloadHref", "description": [ - "\nStream a download of the file object's content.\n" + "\nGet a string for downloading a file that can be passed to a button element's\nhref for download." ], "signature": [ - "(args: { id: string; fileName?: string | undefined; }) => Promise" + "(file: ", + { + "pluginId": "files", + "scope": "common", + "docId": "kibFilesPluginApi", + "section": "def-common.FileJSON", + "text": "FileJSON" + }, + ") => string" ], "path": "x-pack/plugins/files/public/types.ts", "deprecated": false, - "returnComment": [], + "trackAdoption": false, "children": [ { "parentPluginId": "files", - "id": "def-public.FilesClient.download.$1", - "type": "CompoundType", + "id": "def-public.FilesClient.getDownloadHref.$1", + "type": "Object", "tags": [], - "label": "args", - "description": [ - "- download file args" - ], + "label": "file", + "description": [], "signature": [ - "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"]" + { + "pluginId": "files", + "scope": "common", + "docId": "kibFilesPluginApi", + "section": "def-common.FileJSON", + "text": "FileJSON" + }, + "" ], "path": "x-pack/plugins/files/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false, + "isRequired": true } - ] + ], + "returnComment": [] }, { "parentPluginId": "files", @@ -348,7 +373,7 @@ "\nShare a file by creating a new file share instance.\n" ], "signature": [ - "(args: { validUntil?: number | undefined; name?: string | undefined; } & { fileId: string; }) => Promise<", + "(args: { validUntil?: number | undefined; name?: string | undefined; } & { fileId: string; } & { kind: string; }) => Promise<", { "pluginId": "files", "scope": "common", @@ -360,6 +385,7 @@ ], "path": "x-pack/plugins/files/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -372,10 +398,11 @@ "- File share arguments" ], "signature": [ - "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"]" + "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"] & { kind: string; }" ], "path": "x-pack/plugins/files/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -389,10 +416,11 @@ "\nDelete a file share instance.\n" ], "signature": [ - "(args: { id: string; }) => Promise<{ ok: true; }>" + "(args: { id: string; } & { kind: string; }) => Promise<{ ok: true; }>" ], "path": "x-pack/plugins/files/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -405,10 +433,11 @@ "- File unshare arguments" ], "signature": [ - "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"]" + "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"] & { kind: string; }" ], "path": "x-pack/plugins/files/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -422,7 +451,7 @@ "\nGet a file share instance.\n" ], "signature": [ - "(args: { id: string; }) => Promise<{ share: ", + "(args: { id: string; } & { kind: string; }) => Promise<{ share: ", { "pluginId": "files", "scope": "common", @@ -434,6 +463,7 @@ ], "path": "x-pack/plugins/files/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -446,10 +476,11 @@ "- Get file share arguments" ], "signature": [ - "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"]" + "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"] & { kind: string; }" ], "path": "x-pack/plugins/files/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -471,7 +502,7 @@ "section": "def-common.Pagination", "text": "Pagination" }, - " & { forFileId?: string | undefined; }) => Promise<{ shares: ", + " & { forFileId?: string | undefined; } & { kind: string; }) => Promise<{ shares: ", { "pluginId": "files", "scope": "common", @@ -483,6 +514,7 @@ ], "path": "x-pack/plugins/files/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -495,133 +527,13 @@ "- Get file share arguments" ], "signature": [ - "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"]" - ], - "path": "x-pack/plugins/files/public/types.ts", - "deprecated": false - } - ] - }, - { - "parentPluginId": "files", - "id": "def-public.FilesClient.getMetrics", - "type": "Function", - "tags": [], - "label": "getMetrics", - "description": [ - "\nGet metrics of file system, like storage usage.\n" - ], - "signature": [ - "(args: unknown) => Promise<", - { - "pluginId": "files", - "scope": "common", - "docId": "kibFilesPluginApi", - "section": "def-common.FilesMetrics", - "text": "FilesMetrics" - }, - ">" - ], - "path": "x-pack/plugins/files/public/types.ts", - "deprecated": false, - "returnComment": [], - "children": [ - { - "parentPluginId": "files", - "id": "def-public.FilesClient.getMetrics.$1", - "type": "CompoundType", - "tags": [], - "label": "args", - "description": [ - "- Get metrics arguments" - ], - "signature": [ - "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"]" - ], - "path": "x-pack/plugins/files/public/types.ts", - "deprecated": false - } - ] - }, - { - "parentPluginId": "files", - "id": "def-public.FilesClient.publicDownload", - "type": "Function", - "tags": [], - "label": "publicDownload", - "description": [ - "\nDownload a file, bypassing regular security by way of a\nsecret share token.\n" - ], - "signature": [ - "(args: { fileName?: string | undefined; } & { token: string; }) => Promise" - ], - "path": "x-pack/plugins/files/public/types.ts", - "deprecated": false, - "returnComment": [], - "children": [ - { - "parentPluginId": "files", - "id": "def-public.FilesClient.publicDownload.$1", - "type": "CompoundType", - "tags": [], - "label": "args", - "description": [ - "- Get public download arguments." - ], - "signature": [ - "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"]" - ], - "path": "x-pack/plugins/files/public/types.ts", - "deprecated": false - } - ] - }, - { - "parentPluginId": "files", - "id": "def-public.FilesClient.getDownloadHref", - "type": "Function", - "tags": [], - "label": "getDownloadHref", - "description": [ - "\nGet a string for downloading a file that can be passed to a button element's\nhref for download." - ], - "signature": [ - "(file: ", - { - "pluginId": "files", - "scope": "common", - "docId": "kibFilesPluginApi", - "section": "def-common.FileJSON", - "text": "FileJSON" - }, - ") => string" - ], - "path": "x-pack/plugins/files/public/types.ts", - "deprecated": false, - "children": [ - { - "parentPluginId": "files", - "id": "def-public.FilesClient.getDownloadHref.$1", - "type": "Object", - "tags": [], - "label": "file", - "description": [], - "signature": [ - { - "pluginId": "files", - "scope": "common", - "docId": "kibFilesPluginApi", - "section": "def-common.FileJSON", - "text": "FileJSON" - }, - "" + "E[\"inputs\"][\"body\"] & E[\"inputs\"][\"params\"] & E[\"inputs\"][\"query\"] & { kind: string; }" ], "path": "x-pack/plugins/files/public/types.ts", "deprecated": false, - "isRequired": true + "trackAdoption": false } - ], - "returnComment": [] + ] } ], "initialIsOpen": false @@ -633,11 +545,37 @@ "tags": [], "label": "FilesClientFactory", "description": [ - "\nA factory for creating a {@link FilesClient}" + "\nA factory for creating a {@link ScopedFilesClient}" ], "path": "x-pack/plugins/files/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ + { + "parentPluginId": "files", + "id": "def-public.FilesClientFactory.asUnscoped", + "type": "Function", + "tags": [], + "label": "asUnscoped", + "description": [ + "\nCreate a files client." + ], + "signature": [ + "() => ", + { + "pluginId": "files", + "scope": "public", + "docId": "kibFilesPluginApi", + "section": "def-public.FilesClient", + "text": "FilesClient" + } + ], + "path": "x-pack/plugins/files/public/types.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [] + }, { "parentPluginId": "files", "id": "def-public.FilesClientFactory.asScoped", @@ -645,7 +583,7 @@ "tags": [], "label": "asScoped", "description": [ - "\nCreate a {@link FileClient} for a given {@link FileKind}.\n" + "\nCreate a {@link ScopedFileClient} for a given {@link FileKind}.\n" ], "signature": [ "(fileKind: string) => ", @@ -653,12 +591,13 @@ "pluginId": "files", "scope": "public", "docId": "kibFilesPluginApi", - "section": "def-public.FilesClient", - "text": "FilesClient" + "section": "def-public.ScopedFilesClient", + "text": "ScopedFilesClient" } ], "path": "x-pack/plugins/files/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -674,6 +613,7 @@ ], "path": "x-pack/plugins/files/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -717,7 +657,7 @@ "section": "def-common.FileJSON", "text": "FileJSON" }, - "[]; }; find: { files: ", + "[]; }; update: { file: ", { "pluginId": "files", "scope": "common", @@ -725,15 +665,15 @@ "section": "def-common.FileJSON", "text": "FileJSON" }, - "[]; }; update: { file: ", + "; }; upload: { ok: true; size: number; }; download: any; getDownloadHref: string; share: ", { "pluginId": "files", "scope": "common", "docId": "kibFilesPluginApi", - "section": "def-common.FileJSON", - "text": "FileJSON" + "section": "def-common.FileShareJSON", + "text": "FileShareJSON" }, - "; }; upload: { ok: true; size: number; }; download: any; share: ", + " & { token: string; }; unshare: { ok: true; }; getShare: { share: ", { "pluginId": "files", "scope": "common", @@ -741,7 +681,7 @@ "section": "def-common.FileShareJSON", "text": "FileShareJSON" }, - " & { token: string; }; unshare: { ok: true; }; getShare: { share: ", + "; }; listShares: { shares: ", { "pluginId": "files", "scope": "common", @@ -749,7 +689,96 @@ "section": "def-common.FileShareJSON", "text": "FileShareJSON" }, - "; }; listShares: { shares: ", + "[]; }; getMetrics: ", + { + "pluginId": "files", + "scope": "common", + "docId": "kibFilesPluginApi", + "section": "def-common.FilesMetrics", + "text": "FilesMetrics" + }, + "; publicDownload: any; find: { files: ", + { + "pluginId": "files", + "scope": "common", + "docId": "kibFilesPluginApi", + "section": "def-common.FileJSON", + "text": "FileJSON" + }, + "[]; }; }" + ], + "path": "x-pack/plugins/files/public/types.ts", + "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "files", + "id": "def-public.ScopedFilesClient", + "type": "Type", + "tags": [], + "label": "ScopedFilesClient", + "description": [ + "\nA files client that is scoped to a specific {@link FileKind}.\n\nMore convenient if you want to re-use the same client for the same file kind\nand not specify the kind every time." + ], + "signature": [ + "{ create: (arg: Omit<{ name: string; alt?: string | undefined; meta?: Record | undefined; mimeType?: string | undefined; } & { kind: string; }, \"kind\">) => Promise<{ file: ", + { + "pluginId": "files", + "scope": "common", + "docId": "kibFilesPluginApi", + "section": "def-common.FileJSON", + "text": "FileJSON" + }, + "; }>; delete: (arg: Omit<{ id: string; } & { kind: string; }, \"kind\">) => Promise<{ ok: true; }>; getById: (arg: Omit<{ id: string; } & { kind: string; }, \"kind\">) => Promise<{ file: ", + { + "pluginId": "files", + "scope": "common", + "docId": "kibFilesPluginApi", + "section": "def-common.FileJSON", + "text": "FileJSON" + }, + "; }>; list: (arg?: Omit<", + { + "pluginId": "files", + "scope": "common", + "docId": "kibFilesPluginApi", + "section": "def-common.Pagination", + "text": "Pagination" + }, + " & { kind: string; }, \"kind\"> | undefined) => Promise<{ files: ", + { + "pluginId": "files", + "scope": "common", + "docId": "kibFilesPluginApi", + "section": "def-common.FileJSON", + "text": "FileJSON" + }, + "[]; }>; update: (arg: Omit<{ name?: string | undefined; alt?: string | undefined; meta?: Record | undefined; } & { id: string; } & { kind: string; }, \"kind\">) => Promise<{ file: ", + { + "pluginId": "files", + "scope": "common", + "docId": "kibFilesPluginApi", + "section": "def-common.FileJSON", + "text": "FileJSON" + }, + "; }>; upload: (arg: Omit<{ body: unknown; } & { id: string; } & { kind: string; }, \"kind\">) => Promise<{ ok: true; size: number; }>; download: (arg: Omit<{ id: string; fileName?: string | undefined; } & { kind: string; }, \"kind\">) => Promise; getDownloadHref: (arg: Omit<", + { + "pluginId": "files", + "scope": "common", + "docId": "kibFilesPluginApi", + "section": "def-common.FileJSON", + "text": "FileJSON" + }, + ", \"kind\">) => string; share: (arg: Omit<{ validUntil?: number | undefined; name?: string | undefined; } & { fileId: string; } & { kind: string; }, \"kind\">) => Promise<", + { + "pluginId": "files", + "scope": "common", + "docId": "kibFilesPluginApi", + "section": "def-common.FileShareJSONWithToken", + "text": "FileShareJSONWithToken" + }, + ">; unshare: (arg: Omit<{ id: string; } & { kind: string; }, \"kind\">) => Promise<{ ok: true; }>; getShare: (arg: Omit<{ id: string; } & { kind: string; }, \"kind\">) => Promise<{ share: ", { "pluginId": "files", "scope": "common", @@ -757,7 +786,23 @@ "section": "def-common.FileShareJSON", "text": "FileShareJSON" }, - "[]; }; getMetrics: ", + "; }>; listShares: (arg: Omit<", + { + "pluginId": "files", + "scope": "common", + "docId": "kibFilesPluginApi", + "section": "def-common.Pagination", + "text": "Pagination" + }, + " & { forFileId?: string | undefined; } & { kind: string; }, \"kind\">) => Promise<{ shares: ", + { + "pluginId": "files", + "scope": "common", + "docId": "kibFilesPluginApi", + "section": "def-common.FileShareJSON", + "text": "FileShareJSON" + }, + "[]; }>; getMetrics: (arg: Omit) => Promise<", { "pluginId": "files", "scope": "common", @@ -765,10 +810,27 @@ "section": "def-common.FilesMetrics", "text": "FilesMetrics" }, - "; publicDownload: any; getDownloadHref: string; }" + ">; publicDownload: (arg: Omit<{ fileName?: string | undefined; } & { token: string; }, \"kind\">) => Promise; find: (arg: Omit<{ kind?: string[] | undefined; name?: string[] | undefined; meta?: {} | undefined; extension?: string[] | undefined; status?: string[] | undefined; } & ", + { + "pluginId": "files", + "scope": "common", + "docId": "kibFilesPluginApi", + "section": "def-common.Pagination", + "text": "Pagination" + }, + ", \"kind\">) => Promise<{ files: ", + { + "pluginId": "files", + "scope": "common", + "docId": "kibFilesPluginApi", + "section": "def-common.FileJSON", + "text": "FileJSON" + }, + "[]; }>; }" ], "path": "x-pack/plugins/files/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -791,6 +853,7 @@ ], "path": "x-pack/plugins/files/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -829,6 +892,7 @@ ], "path": "x-pack/plugins/files/server/file_client/create_es_file_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -850,6 +914,7 @@ ], "path": "x-pack/plugins/files/server/file_client/create_es_file_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -869,6 +934,7 @@ ], "path": "x-pack/plugins/files/server/file_client/create_es_file_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -880,7 +946,8 @@ "\nThe name of the ES index that will store file metadata." ], "path": "x-pack/plugins/files/server/file_client/create_es_file_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -892,7 +959,8 @@ "\nThe name of the ES index that will store file contents." ], "path": "x-pack/plugins/files/server/file_client/create_es_file_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -2095,7 +2163,8 @@ "; }" ], "path": "x-pack/plugins/files/server/file_client/create_es_file_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -2110,7 +2179,8 @@ "number | undefined" ], "path": "x-pack/plugins/files/server/file_client/create_es_file_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -2125,7 +2195,8 @@ "Logger" ], "path": "x-pack/plugins/files/server/file_client/create_es_file_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2151,6 +2222,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -2162,7 +2234,8 @@ "\nFile name" ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -2174,7 +2247,8 @@ "\nFile kind, must correspond to a registered {@link FileKind}." ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -2189,7 +2263,8 @@ "string | undefined" ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -2204,7 +2279,8 @@ "Meta | undefined" ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -2219,7 +2295,8 @@ "string | undefined" ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2235,6 +2312,7 @@ ], "path": "x-pack/plugins/files/server/file_share_service/internal_file_share_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -2249,7 +2327,8 @@ "string | undefined" ], "path": "x-pack/plugins/files/server/file_share_service/internal_file_share_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -2266,7 +2345,8 @@ "number | undefined" ], "path": "x-pack/plugins/files/server/file_share_service/internal_file_share_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -2288,7 +2368,8 @@ "" ], "path": "x-pack/plugins/files/server/file_share_service/internal_file_share_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2302,6 +2383,7 @@ "description": [], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -2315,7 +2397,8 @@ "\nUnique ID of file metadata to delete\n" ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2331,6 +2414,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -2342,7 +2426,8 @@ "\nFile ID." ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -2354,7 +2439,8 @@ "\nFile kind, must correspond to a registered {@link FileKind}." ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2370,6 +2456,7 @@ ], "path": "x-pack/plugins/files/server/file_share_service/internal_file_share_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -2381,7 +2468,8 @@ "\nThe file id to delete the shares for." ], "path": "x-pack/plugins/files/server/file_share_service/internal_file_share_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2397,6 +2485,7 @@ ], "path": "x-pack/plugins/files/server/file_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -2408,7 +2497,8 @@ "See {@link FileMetadata.FileKind}." ], "path": "x-pack/plugins/files/server/file_client/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -2434,6 +2524,7 @@ ], "path": "x-pack/plugins/files/server/file_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -2449,6 +2540,7 @@ ], "path": "x-pack/plugins/files/server/file_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2484,6 +2576,7 @@ ], "path": "x-pack/plugins/files/server/file_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -2505,6 +2598,7 @@ ], "path": "x-pack/plugins/files/server/file_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2532,6 +2626,7 @@ ], "path": "x-pack/plugins/files/server/file_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -2547,6 +2642,7 @@ ], "path": "x-pack/plugins/files/server/file_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2570,6 +2666,7 @@ ], "path": "x-pack/plugins/files/server/file_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2597,6 +2694,7 @@ ], "path": "x-pack/plugins/files/server/file_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -2618,6 +2716,7 @@ ], "path": "x-pack/plugins/files/server/file_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2653,6 +2752,7 @@ ], "path": "x-pack/plugins/files/server/file_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -2675,6 +2775,7 @@ ], "path": "x-pack/plugins/files/server/file_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2710,6 +2811,7 @@ ], "path": "x-pack/plugins/files/server/file_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -2731,6 +2833,7 @@ ], "path": "x-pack/plugins/files/server/file_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2762,6 +2865,7 @@ ], "path": "x-pack/plugins/files/server/file_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -2777,6 +2881,7 @@ ], "path": "x-pack/plugins/files/server/file_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2798,6 +2903,7 @@ ], "path": "x-pack/plugins/files/server/file_client/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2813,7 +2919,8 @@ "IdArg" ], "path": "x-pack/plugins/files/server/file_share_service/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2849,6 +2956,7 @@ ], "path": "x-pack/plugins/files/server/file_client/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2870,7 +2978,8 @@ } ], "path": "x-pack/plugins/files/server/file_share_service/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2898,6 +3007,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -2909,7 +3019,8 @@ "\nUnique ID of a file, used to locate a file." ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -2940,7 +3051,8 @@ " & { FileKind: string; Meta?: M | undefined; }" ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2956,6 +3068,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -2987,6 +3100,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -3009,6 +3123,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3044,6 +3159,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -3065,6 +3181,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3100,6 +3217,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -3122,6 +3240,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3149,6 +3268,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -3170,6 +3290,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3205,6 +3326,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -3227,6 +3349,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3262,6 +3385,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -3283,6 +3407,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3318,6 +3443,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -3339,6 +3465,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3358,6 +3485,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -3382,6 +3510,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -3398,6 +3527,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3426,6 +3556,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -3443,6 +3574,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -3474,6 +3606,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -3496,6 +3629,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3523,6 +3657,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -3544,6 +3679,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3571,6 +3707,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -3592,6 +3729,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3627,6 +3765,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -3648,6 +3787,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3683,6 +3823,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -3704,6 +3845,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3739,6 +3881,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -3760,6 +3903,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3787,6 +3931,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3802,7 +3947,8 @@ "IdArg" ], "path": "x-pack/plugins/files/server/file_share_service/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3836,6 +3982,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3857,7 +4004,8 @@ } ], "path": "x-pack/plugins/files/server/file_share_service/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3891,6 +4039,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3912,7 +4061,8 @@ } ], "path": "x-pack/plugins/files/server/file_share_service/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3930,6 +4080,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3945,7 +4096,8 @@ "IdArg" ], "path": "x-pack/plugins/files/server/file_share_service/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3971,6 +4123,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3996,6 +4149,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4011,6 +4165,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4030,6 +4185,7 @@ ], "path": "x-pack/plugins/files/server/file_share_service/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4053,6 +4209,7 @@ ], "path": "x-pack/plugins/files/server/file_share_service/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4068,6 +4225,7 @@ ], "path": "x-pack/plugins/files/server/file_share_service/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4103,6 +4261,7 @@ ], "path": "x-pack/plugins/files/server/file_share_service/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4124,6 +4283,7 @@ ], "path": "x-pack/plugins/files/server/file_share_service/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4159,6 +4319,7 @@ ], "path": "x-pack/plugins/files/server/file_share_service/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4180,6 +4341,7 @@ ], "path": "x-pack/plugins/files/server/file_share_service/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4199,6 +4361,7 @@ ], "path": "x-pack/plugins/files/server/file_share_service/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4214,6 +4377,7 @@ ], "path": "x-pack/plugins/files/server/file_share_service/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4248,6 +4412,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4262,7 +4427,8 @@ "string | undefined" ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4297,6 +4463,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4311,7 +4478,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -4326,7 +4494,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -4341,7 +4510,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -4356,7 +4526,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -4371,7 +4542,8 @@ "Record | undefined" ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4387,6 +4559,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4398,7 +4571,8 @@ "\nUnique ID of file metadata" ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4414,6 +4588,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4425,7 +4600,8 @@ "\nFile ID." ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -4437,7 +4613,8 @@ "\nFile kind, must correspond to a registered {@link FileKind}." ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4453,6 +4630,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4467,7 +4645,8 @@ "{ capacity: number; }" ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4498,6 +4677,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4512,7 +4692,8 @@ "string | undefined" ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4545,6 +4726,7 @@ ], "path": "x-pack/plugins/files/server/file_share_service/internal_file_share_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4559,7 +4741,8 @@ "string | undefined" ], "path": "x-pack/plugins/files/server/file_share_service/internal_file_share_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4592,6 +4775,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4603,7 +4787,8 @@ "\nFile kind, must correspond to a registered {@link FileKind}." ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4629,6 +4814,7 @@ ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4640,7 +4826,8 @@ "\nA unique file ID." ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -4663,7 +4850,8 @@ " | undefined; FileKind?: string | undefined; Meta?: M | undefined; }" ], "path": "x-pack/plugins/files/server/file_client/file_metadata_client/file_metadata_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4679,6 +4867,7 @@ ], "path": "x-pack/plugins/files/server/file_share_service/internal_file_share_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4690,7 +4879,8 @@ "\nThe file share ID." ], "path": "x-pack/plugins/files/server/file_share_service/internal_file_share_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -4705,7 +4895,8 @@ "{ name?: string | undefined; }" ], "path": "x-pack/plugins/files/server/file_share_service/internal_file_share_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4721,6 +4912,7 @@ ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4732,7 +4924,8 @@ "\nFile ID." ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -4744,7 +4937,8 @@ "\nFile kind, must correspond to a registered {@link FileKind}." ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -4759,7 +4953,8 @@ "{ name: string; meta: unknown; alt: string | undefined; }" ], "path": "x-pack/plugins/files/server/file_service/file_action_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4781,6 +4976,7 @@ ], "path": "x-pack/plugins/files/server/file_share_service/internal_file_share_service.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4797,6 +4993,7 @@ ], "path": "x-pack/plugins/files/server/file_share_service/internal_file_share_service.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -4812,6 +5009,7 @@ ], "path": "x-pack/plugins/files/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4835,6 +5033,7 @@ ], "path": "x-pack/plugins/files/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4856,6 +5055,7 @@ ], "path": "x-pack/plugins/files/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4876,6 +5076,7 @@ ], "path": "x-pack/plugins/files/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4896,7 +5097,8 @@ } ], "path": "x-pack/plugins/files/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", @@ -4918,6 +5120,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4932,7 +5135,8 @@ "{ index: string; } | undefined" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4958,6 +5162,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -4969,7 +5174,8 @@ "\nThe file ID" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -4991,7 +5197,8 @@ "" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5023,6 +5230,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -5046,6 +5254,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5063,7 +5272,9 @@ "signature": [ "(content: ", "Readable", - ") => Promise<", + ", abort$?: ", + "Observable", + " | undefined) => Promise<", { "pluginId": "files", "scope": "common", @@ -5075,6 +5286,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -5090,7 +5302,26 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true + }, + { + "parentPluginId": "files", + "id": "def-common.File.uploadContent.$2", + "type": "Object", + "tags": [], + "label": "abort$", + "description": [ + "- An observable that can be used to abort the upload at any time." + ], + "signature": [ + "Observable", + " | undefined" + ], + "path": "x-pack/plugins/files/common/types.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": false } ], "returnComment": [] @@ -5111,6 +5342,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5130,6 +5362,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5165,6 +5398,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -5187,6 +5421,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -5214,6 +5449,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5239,6 +5475,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -5260,6 +5497,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5287,6 +5525,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -5314,6 +5553,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -5325,7 +5565,8 @@ "\nUnique file ID." ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5337,7 +5578,8 @@ "\nISO string of when this file was created" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5349,7 +5591,8 @@ "\nISO string of when the file was updated" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5363,7 +5606,8 @@ "\nFile name.\n" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5378,7 +5622,8 @@ "string | undefined" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5393,7 +5638,8 @@ "number | undefined" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5410,7 +5656,8 @@ "string | undefined" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5425,7 +5672,8 @@ "Meta | undefined" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5440,7 +5688,8 @@ "string | undefined" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5454,7 +5703,8 @@ "\nA unique kind that governs various aspects of the file. A consumer of the\nfiles service must register a file kind and link their files to a specific\nkind.\n" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5469,7 +5719,8 @@ "\"AWAITING_UPLOAD\" | \"UPLOADING\" | \"READY\" | \"UPLOAD_ERROR\" | \"DELETED\"" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5487,6 +5738,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -5498,7 +5750,8 @@ "\nUnique file kind ID" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5515,7 +5768,8 @@ "number | undefined" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5532,7 +5786,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5554,7 +5809,8 @@ " | undefined" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5571,7 +5827,8 @@ "{ create?: HttpEndpointDefinition | undefined; update?: HttpEndpointDefinition | undefined; delete?: HttpEndpointDefinition | undefined; getById?: HttpEndpointDefinition | undefined; list?: HttpEndpointDefinition | undefined; download?: HttpEndpointDefinition | undefined; share?: HttpEndpointDefinition | undefined; }" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5587,6 +5844,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -5598,7 +5856,8 @@ "\nUnique ID share instance" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5610,7 +5869,8 @@ "\nISO timestamp the share was created" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5622,7 +5882,8 @@ "\nUnix timestamp (in milliseconds) of when this share expires" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5637,7 +5898,8 @@ "string | undefined" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5649,7 +5911,8 @@ "\nThe ID of the file this share is linked to" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5665,6 +5928,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -5679,7 +5943,8 @@ "string | undefined" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5696,7 +5961,8 @@ "number | undefined" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5712,6 +5978,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -5726,7 +5993,8 @@ "{ esFixedSizeIndex: { capacity: number; used: number; available: number; }; }" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5741,7 +6009,8 @@ "{ AWAITING_UPLOAD: number; UPLOADING: number; READY: number; UPLOAD_ERROR: number; DELETED: number; }" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5756,7 +6025,8 @@ "{ [x: string]: number; }" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5772,6 +6042,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -5783,7 +6054,8 @@ "\nSpecify the share instance to remove" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5799,6 +6071,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "files", @@ -5813,7 +6086,8 @@ "number | undefined" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "files", @@ -5828,7 +6102,8 @@ "number | undefined" ], "path": "x-pack/plugins/files/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5866,6 +6141,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5882,6 +6158,7 @@ ], "path": "x-pack/plugins/files/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5898,6 +6175,7 @@ ], "path": "x-pack/plugins/files/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5914,6 +6192,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5946,6 +6225,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5971,6 +6251,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5987,6 +6268,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6012,6 +6294,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6028,6 +6311,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6044,6 +6328,7 @@ ], "path": "x-pack/plugins/files/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6060,6 +6345,7 @@ ], "path": "x-pack/plugins/files/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6076,6 +6362,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6092,6 +6379,7 @@ ], "path": "x-pack/plugins/files/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/files.mdx b/api_docs/files.mdx index 239c2196e6633..6a97b8d21b89b 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'files'] --- import filesObj from './files.devdocs.json'; @@ -21,7 +21,7 @@ Contact [@elastic/kibana-app-services](https://github.com/orgs/elastic/teams/tea | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 243 | 0 | 6 | 2 | +| 240 | 0 | 6 | 2 | ## Client diff --git a/api_docs/fleet.devdocs.json b/api_docs/fleet.devdocs.json index 248d4f279793b..0600244c7d591 100644 --- a/api_docs/fleet.devdocs.json +++ b/api_docs/fleet.devdocs.json @@ -23,6 +23,7 @@ ], "path": "x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -44,6 +45,7 @@ ], "path": "x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -70,6 +72,7 @@ ], "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/components/datastream_mappings.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -91,6 +94,7 @@ ], "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/components/datastream_mappings.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -117,6 +121,7 @@ ], "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/components/datastream_pipelines.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -138,6 +143,7 @@ ], "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/components/datastream_pipelines.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -156,6 +162,7 @@ ], "path": "x-pack/plugins/fleet/public/services/pkg_key_from_package_info.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -169,6 +176,7 @@ ], "path": "x-pack/plugins/fleet/public/services/pkg_key_from_package_info.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -188,6 +196,7 @@ ], "path": "x-pack/plugins/fleet/public/types/intra_app_route_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -204,7 +213,8 @@ " | undefined] | undefined" ], "path": "x-pack/plugins/fleet/public/types/intra_app_route_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -218,6 +228,7 @@ "description": [], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -227,7 +238,8 @@ "label": "package", "description": [], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -240,7 +252,8 @@ "\"agent-enrollment-flyout\"" ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -250,7 +263,8 @@ "label": "title", "description": [], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -263,7 +277,8 @@ "React.ComponentClass<{}, any> | React.FunctionComponent<{}>" ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -279,6 +294,7 @@ ], "path": "x-pack/plugins/fleet/public/types/intra_app_route_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -295,7 +311,8 @@ " | undefined] | undefined" ], "path": "x-pack/plugins/fleet/public/types/intra_app_route_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -311,6 +328,7 @@ ], "path": "x-pack/plugins/fleet/public/types/intra_app_route_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -327,7 +345,8 @@ " | undefined] | undefined" ], "path": "x-pack/plugins/fleet/public/types/intra_app_route_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -344,7 +363,8 @@ " | undefined] | undefined" ], "path": "x-pack/plugins/fleet/public/types/intra_app_route_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -359,7 +379,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/public/types/intra_app_route_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -390,7 +411,8 @@ " | undefined; } | undefined" ], "path": "x-pack/plugins/fleet/public/types/intra_app_route_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -404,6 +426,7 @@ "description": [], "path": "x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -416,7 +439,8 @@ "{ name: string; url: string; description: string; }[]" ], "path": "x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -429,7 +453,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -443,6 +468,7 @@ "description": [], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -455,7 +481,8 @@ "[key: string]: string | boolean" ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -469,6 +496,7 @@ "description": [], "path": "x-pack/plugins/fleet/public/types/intra_app_route_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -480,7 +508,8 @@ "The agent policy that we are browsing integrations for" ], "path": "x-pack/plugins/fleet/public/types/intra_app_route_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -495,7 +524,8 @@ "\"installed\" | \"updates_available\" | undefined" ], "path": "x-pack/plugins/fleet/public/types/intra_app_route_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -509,6 +539,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -521,7 +552,8 @@ "string | number | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -531,7 +563,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -544,7 +577,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -554,7 +588,8 @@ "label": "namespace", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -564,7 +599,8 @@ "label": "enabled", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -577,7 +613,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -587,7 +624,8 @@ "label": "policy_id", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -607,7 +645,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -627,7 +666,8 @@ "[]" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -647,7 +687,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -660,7 +701,8 @@ "{ privileges?: { cluster?: string[] | undefined; } | undefined; } | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -676,6 +718,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -685,7 +728,8 @@ "label": "package", "description": [], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -698,7 +742,8 @@ "\"package-detail-assets\"" ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -720,6 +765,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -733,7 +779,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -751,6 +798,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -760,7 +808,8 @@ "label": "package", "description": [], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -773,7 +822,8 @@ "\"package-detail-custom\"" ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -819,6 +869,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -832,7 +883,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -848,6 +900,7 @@ "description": [], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -859,7 +912,8 @@ "The package key value that should be used used for URLs" ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -919,7 +973,8 @@ ">>" ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -935,6 +990,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -944,7 +1000,8 @@ "label": "package", "description": [], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -957,7 +1014,8 @@ "\"package-policy-create\"" ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -1003,6 +1061,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1016,7 +1075,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1032,6 +1092,7 @@ "description": [], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -1052,7 +1113,8 @@ } ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -1076,6 +1138,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -1086,6 +1149,7 @@ "description": [], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -1097,7 +1161,8 @@ "is current form state is valid" ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -1118,7 +1183,8 @@ } ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1139,6 +1205,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -1148,7 +1215,8 @@ "label": "package", "description": [], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -1161,7 +1229,8 @@ "\"package-policy-edit\"" ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -1174,7 +1243,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -1220,6 +1290,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1233,7 +1304,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1249,6 +1321,7 @@ "description": [], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -1269,7 +1342,8 @@ } ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -1290,7 +1364,8 @@ } ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -1314,6 +1389,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -1324,6 +1400,7 @@ "description": [], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -1335,7 +1412,8 @@ "is current form state is valid" ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -1374,7 +1452,8 @@ " | undefined; elasticsearch?: { privileges?: { cluster?: string[] | undefined; } | undefined; } | undefined; }" ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1393,6 +1472,7 @@ "description": [], "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/components/datastream_mappings.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -1452,7 +1532,8 @@ ">>" ], "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/components/datastream_mappings.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -1465,7 +1546,8 @@ "{ id?: string | undefined; data_stream: { dataset: string; type: string; }; }" ], "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/components/datastream_mappings.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1479,6 +1561,7 @@ "description": [], "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/components/datastream_pipelines.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -1538,7 +1621,8 @@ ">>" ], "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/components/datastream_pipelines.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -1551,7 +1635,8 @@ "{ id?: string | undefined; data_stream: { dataset: string; type: string; }; }" ], "path": "x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/components/datastream_pipelines.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1567,6 +1652,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -1576,7 +1662,8 @@ "label": "package", "description": [], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -1589,7 +1676,8 @@ "\"package-policy-edit-tabs\"" ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -1610,7 +1698,8 @@ ">; }[]" ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1624,6 +1713,7 @@ "description": [], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -1633,7 +1723,8 @@ "label": "package", "description": [], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -1646,7 +1737,8 @@ "\"package-policy-response\"" ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -1692,6 +1784,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1705,7 +1798,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1721,6 +1815,7 @@ "description": [], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -1741,7 +1836,8 @@ } ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -1757,6 +1853,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -1770,6 +1867,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1789,6 +1887,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -1809,7 +1908,8 @@ ">>" ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1853,6 +1953,7 @@ ], "path": "x-pack/plugins/fleet/public/types/intra_app_route_state.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1869,6 +1970,7 @@ ], "path": "x-pack/plugins/fleet/public/types/intra_app_route_state.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1885,6 +1987,7 @@ ], "path": "x-pack/plugins/fleet/public/types/intra_app_route_state.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1901,6 +2004,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1933,6 +2037,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1965,6 +2070,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1997,6 +2103,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2029,6 +2136,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2099,6 +2207,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2123,6 +2232,7 @@ ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2190,7 +2300,8 @@ } ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2206,6 +2317,7 @@ "description": [], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -2219,6 +2331,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2234,6 +2347,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2249,6 +2363,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2264,6 +2379,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -2274,6 +2390,7 @@ "description": [], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -2286,7 +2403,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -2299,7 +2417,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2318,6 +2437,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -2328,6 +2448,7 @@ "description": [], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -2340,7 +2461,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -2353,7 +2475,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2372,6 +2495,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -2382,6 +2506,7 @@ "description": [], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -2394,7 +2519,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -2407,7 +2533,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2434,6 +2561,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -2453,6 +2581,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2478,6 +2607,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -2497,6 +2627,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2522,6 +2653,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -2541,6 +2673,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2566,6 +2699,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -2585,6 +2719,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2610,6 +2745,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -2629,6 +2765,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2654,6 +2791,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -2673,6 +2811,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2700,6 +2839,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -2719,6 +2859,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2736,6 +2877,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2751,6 +2893,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2774,6 +2917,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -2793,6 +2937,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2818,6 +2963,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -2837,6 +2983,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2862,6 +3009,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -2881,6 +3029,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2906,6 +3055,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -2925,6 +3075,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2950,6 +3101,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -2969,6 +3121,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2994,6 +3147,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -3013,6 +3167,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3038,6 +3193,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -3057,6 +3213,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3074,6 +3231,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3089,6 +3247,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3104,6 +3263,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3119,6 +3279,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3142,6 +3303,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -3161,6 +3323,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3186,6 +3349,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -3205,6 +3369,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3222,6 +3387,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3237,6 +3403,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3252,6 +3419,7 @@ ], "path": "x-pack/plugins/fleet/public/constants/page_paths.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -3268,6 +3436,7 @@ "description": [], "path": "x-pack/plugins/fleet/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -3283,6 +3452,7 @@ ], "path": "x-pack/plugins/fleet/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -3303,7 +3473,8 @@ } ], "path": "x-pack/plugins/fleet/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -3325,6 +3496,7 @@ ], "path": "x-pack/plugins/fleet/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3392,7 +3564,8 @@ } ], "path": "x-pack/plugins/fleet/public/types/ui_extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3408,6 +3581,7 @@ ], "path": "x-pack/plugins/fleet/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -3438,6 +3612,7 @@ ], "path": "x-pack/plugins/fleet/server/errors/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false }, @@ -3461,6 +3636,7 @@ ], "path": "x-pack/plugins/fleet/server/errors/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false } @@ -3478,6 +3654,7 @@ ], "path": "x-pack/plugins/fleet/server/services/epm/registry/registry_url.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -3502,6 +3679,7 @@ ], "path": "x-pack/plugins/fleet/server/services/artifacts/mappings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -3515,6 +3693,7 @@ ], "path": "x-pack/plugins/fleet/server/services/artifacts/mappings.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3534,6 +3713,7 @@ ], "path": "x-pack/plugins/fleet/server/services/agents/agent_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -3557,6 +3737,7 @@ ], "path": "x-pack/plugins/fleet/server/services/agents/agent_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -3570,6 +3751,7 @@ ], "path": "x-pack/plugins/fleet/server/services/agents/agent_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3597,6 +3779,7 @@ ], "path": "x-pack/plugins/fleet/server/services/agents/agent_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -3610,6 +3793,7 @@ ], "path": "x-pack/plugins/fleet/server/services/agents/agent_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3629,6 +3813,7 @@ ], "path": "x-pack/plugins/fleet/server/services/agents/agent_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -3642,6 +3827,7 @@ ], "path": "x-pack/plugins/fleet/server/services/agents/agent_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -3656,6 +3842,7 @@ ], "path": "x-pack/plugins/fleet/server/services/agents/agent_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3683,6 +3870,7 @@ ], "path": "x-pack/plugins/fleet/server/services/agents/agent_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -3696,6 +3884,7 @@ ], "path": "x-pack/plugins/fleet/server/services/agents/agent_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3715,6 +3904,7 @@ ], "path": "x-pack/plugins/fleet/server/services/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -3738,6 +3928,7 @@ ], "path": "x-pack/plugins/fleet/server/services/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3751,7 +3942,8 @@ "SavedObjectsClientContract" ], "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -3761,7 +3953,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -3771,7 +3964,8 @@ "label": "withPackagePolicies", "description": [], "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3797,6 +3991,7 @@ ], "path": "x-pack/plugins/fleet/server/services/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3810,7 +4005,8 @@ "SavedObjectsClientContract" ], "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -3823,7 +4019,8 @@ "Readonly<{ page?: number | undefined; perPage?: number | undefined; sortField?: string | undefined; sortOrder?: \"asc\" | \"desc\" | undefined; kuery?: any; showUpgradeable?: boolean | undefined; } & {}> & { withPackagePolicies?: boolean | undefined; }" ], "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3849,6 +4046,7 @@ ], "path": "x-pack/plugins/fleet/server/services/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3862,7 +4060,8 @@ "SavedObjectsClientContract" ], "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -3872,7 +4071,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -3885,7 +4085,8 @@ "{ standalone: boolean; } | undefined" ], "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3911,6 +4112,7 @@ ], "path": "x-pack/plugins/fleet/server/services/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3924,7 +4126,8 @@ "SavedObjectsClientContract" ], "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -3937,7 +4140,8 @@ "string[]" ], "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -3950,7 +4154,8 @@ "{ fields?: string[] | undefined; withPackagePolicies?: boolean | undefined; ignoreMissing?: boolean | undefined; }" ], "path": "x-pack/plugins/fleet/server/services/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -3968,6 +4173,7 @@ ], "path": "x-pack/plugins/fleet/server/services/agents/agent_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -3992,6 +4198,7 @@ ], "path": "x-pack/plugins/fleet/server/services/agents/agent_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4006,6 +4213,7 @@ ], "path": "x-pack/plugins/fleet/server/services/agents/agent_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4030,7 +4238,8 @@ } ], "path": "x-pack/plugins/fleet/server/services/agents/agent_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4055,6 +4264,7 @@ ], "path": "x-pack/plugins/fleet/server/services/artifacts/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4064,7 +4274,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/fleet/server/services/artifacts/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -4074,7 +4285,8 @@ "label": "created", "description": [], "path": "x-pack/plugins/fleet/server/services/artifacts/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4090,6 +4302,7 @@ ], "path": "x-pack/plugins/fleet/server/services/artifacts/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4111,6 +4324,7 @@ ], "path": "x-pack/plugins/fleet/server/services/artifacts/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4124,6 +4338,7 @@ ], "path": "x-pack/plugins/fleet/server/services/artifacts/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4151,6 +4366,7 @@ ], "path": "x-pack/plugins/fleet/server/services/artifacts/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4164,6 +4380,7 @@ ], "path": "x-pack/plugins/fleet/server/services/artifacts/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4181,6 +4398,7 @@ ], "path": "x-pack/plugins/fleet/server/services/artifacts/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4194,6 +4412,7 @@ ], "path": "x-pack/plugins/fleet/server/services/artifacts/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4235,6 +4454,7 @@ ], "path": "x-pack/plugins/fleet/server/services/artifacts/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4255,6 +4475,7 @@ ], "path": "x-pack/plugins/fleet/server/services/artifacts/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4274,6 +4495,7 @@ ], "path": "x-pack/plugins/fleet/server/services/artifacts/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4287,6 +4509,7 @@ ], "path": "x-pack/plugins/fleet/server/services/artifacts/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4304,6 +4527,7 @@ ], "path": "x-pack/plugins/fleet/server/services/artifacts/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4317,6 +4541,7 @@ ], "path": "x-pack/plugins/fleet/server/services/artifacts/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4336,6 +4561,7 @@ ], "path": "x-pack/plugins/fleet/server/services/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4351,6 +4577,7 @@ ], "path": "x-pack/plugins/fleet/server/services/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4364,6 +4591,7 @@ ], "path": "x-pack/plugins/fleet/server/services/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4378,6 +4606,7 @@ ], "path": "x-pack/plugins/fleet/server/services/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4392,6 +4621,7 @@ ], "path": "x-pack/plugins/fleet/server/services/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4409,6 +4639,7 @@ "description": [], "path": "x-pack/plugins/fleet/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4427,7 +4658,8 @@ } ], "path": "x-pack/plugins/fleet/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -4447,7 +4679,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -4466,7 +4699,8 @@ } ], "path": "x-pack/plugins/fleet/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -4486,7 +4720,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -4506,7 +4741,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -4525,7 +4761,8 @@ } ], "path": "x-pack/plugins/fleet/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -4545,7 +4782,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4559,6 +4797,7 @@ "description": [], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4580,6 +4819,7 @@ ], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4593,6 +4833,7 @@ ], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4618,6 +4859,7 @@ ], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4628,6 +4870,7 @@ "description": [], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4637,7 +4880,8 @@ "label": "pkgName", "description": [], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -4650,7 +4894,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -4663,7 +4908,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -4698,6 +4944,7 @@ ], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4711,6 +4958,7 @@ ], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4736,6 +4984,7 @@ ], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4749,6 +4998,7 @@ ], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4763,6 +5013,7 @@ ], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4796,6 +5047,7 @@ ], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4815,6 +5067,7 @@ ], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4829,6 +5082,7 @@ ], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4846,6 +5100,7 @@ "description": [], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4895,6 +5150,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4908,6 +5164,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4922,6 +5179,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4942,6 +5200,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4953,6 +5212,7 @@ "description": [], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -4965,7 +5225,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -4978,7 +5239,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -4998,7 +5260,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -5011,7 +5274,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -5024,7 +5288,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -5037,7 +5302,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -5050,7 +5316,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -5063,7 +5330,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -5083,7 +5351,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -5130,6 +5399,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -5143,6 +5413,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5157,6 +5428,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5178,6 +5450,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5192,6 +5465,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5203,6 +5477,7 @@ "description": [], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -5222,7 +5497,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -5235,7 +5511,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -5264,6 +5541,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -5277,6 +5555,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5291,6 +5570,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5318,6 +5598,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -5331,6 +5612,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5345,6 +5627,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5372,6 +5655,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -5385,6 +5669,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5399,6 +5684,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5410,6 +5696,7 @@ "description": [], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -5422,7 +5709,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -5467,6 +5755,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -5480,6 +5769,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5500,6 +5790,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5535,6 +5826,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -5548,6 +5840,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5568,6 +5861,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5613,6 +5907,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -5626,6 +5921,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5640,6 +5936,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5654,6 +5951,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5674,6 +5972,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5685,6 +5984,7 @@ "description": [], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -5704,7 +6004,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -5717,7 +6018,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -5733,6 +6035,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -5770,6 +6073,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -5783,6 +6087,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5797,6 +6102,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5811,6 +6117,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5822,6 +6129,7 @@ "description": [], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -5841,7 +6149,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -5854,7 +6163,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -5867,7 +6177,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -5914,6 +6225,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -5927,6 +6239,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5941,6 +6254,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5955,6 +6269,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5966,6 +6281,7 @@ "description": [], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -5985,7 +6301,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -6008,6 +6325,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -6022,6 +6340,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -6057,6 +6376,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -6070,6 +6390,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6084,6 +6405,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6105,6 +6427,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -6119,6 +6442,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -6154,6 +6478,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -6167,6 +6492,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6187,6 +6513,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6216,6 +6543,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -6229,6 +6557,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6243,6 +6572,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6258,6 +6588,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -6325,6 +6656,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -6338,6 +6670,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6375,6 +6708,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6395,6 +6729,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6410,6 +6745,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6435,6 +6771,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -6454,6 +6791,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6489,6 +6827,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -6502,6 +6841,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6516,6 +6856,7 @@ ], "path": "x-pack/plugins/fleet/server/services/package_policy.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6533,6 +6874,7 @@ "description": [], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -6555,6 +6897,7 @@ ], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -6569,6 +6912,7 @@ ], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6591,7 +6935,8 @@ } ], "path": "x-pack/plugins/fleet/server/services/epm/package_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6619,6 +6964,7 @@ ], "path": "x-pack/plugins/fleet/server/types/extensions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6633,6 +6979,7 @@ ], "path": "x-pack/plugins/fleet/server/config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6647,6 +6994,7 @@ ], "path": "x-pack/plugins/fleet/server/services/artifacts/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6687,6 +7035,7 @@ ], "path": "x-pack/plugins/fleet/server/types/extensions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6706,7 +7055,8 @@ } ], "path": "x-pack/plugins/fleet/server/types/extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -6725,7 +7075,8 @@ } ], "path": "x-pack/plugins/fleet/server/types/extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -6739,7 +7090,8 @@ "" ], "path": "x-pack/plugins/fleet/server/types/extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6766,6 +7118,7 @@ ], "path": "x-pack/plugins/fleet/server/types/extensions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6788,7 +7141,8 @@ " | undefined; policy_id?: string | undefined; statusCode?: number | undefined; body?: { message: string; } | undefined; }>" ], "path": "x-pack/plugins/fleet/server/types/extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6831,6 +7185,7 @@ ], "path": "x-pack/plugins/fleet/server/types/extensions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6850,7 +7205,8 @@ } ], "path": "x-pack/plugins/fleet/server/types/extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -6869,7 +7225,8 @@ } ], "path": "x-pack/plugins/fleet/server/types/extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -6883,7 +7240,8 @@ "" ], "path": "x-pack/plugins/fleet/server/types/extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6926,6 +7284,7 @@ ], "path": "x-pack/plugins/fleet/server/types/extensions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6945,7 +7304,8 @@ } ], "path": "x-pack/plugins/fleet/server/types/extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -6964,7 +7324,8 @@ } ], "path": "x-pack/plugins/fleet/server/types/extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -6978,7 +7339,8 @@ "" ], "path": "x-pack/plugins/fleet/server/types/extensions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6997,6 +7359,7 @@ ], "path": "x-pack/plugins/fleet/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "setup", "initialIsOpen": true }, @@ -7011,6 +7374,7 @@ ], "path": "x-pack/plugins/fleet/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -7026,6 +7390,7 @@ ], "path": "x-pack/plugins/fleet/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -7050,7 +7415,8 @@ ">; }" ], "path": "x-pack/plugins/fleet/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7069,7 +7435,8 @@ } ], "path": "x-pack/plugins/fleet/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7088,7 +7455,8 @@ } ], "path": "x-pack/plugins/fleet/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7107,7 +7475,8 @@ } ], "path": "x-pack/plugins/fleet/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7128,7 +7497,8 @@ } ], "path": "x-pack/plugins/fleet/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7147,7 +7517,8 @@ } ], "path": "x-pack/plugins/fleet/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7171,6 +7542,7 @@ ], "path": "x-pack/plugins/fleet/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -7190,6 +7562,7 @@ ], "path": "x-pack/plugins/fleet/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7210,6 +7583,7 @@ ], "path": "x-pack/plugins/fleet/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -7223,6 +7597,7 @@ ], "path": "x-pack/plugins/fleet/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7257,6 +7632,7 @@ ], "path": "x-pack/plugins/fleet/common/mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -7273,6 +7649,7 @@ ], "path": "x-pack/plugins/fleet/common/services/decode_cloud_id.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -7286,6 +7663,7 @@ ], "path": "x-pack/plugins/fleet/common/services/decode_cloud_id.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7304,6 +7682,7 @@ ], "path": "x-pack/plugins/fleet/common/services/is_valid_namespace.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -7317,6 +7696,7 @@ ], "path": "x-pack/plugins/fleet/common/services/is_valid_namespace.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7344,6 +7724,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -7353,7 +7734,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7366,7 +7748,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7379,7 +7762,8 @@ "{ id: string; retired_at: string; }[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7399,7 +7783,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7412,7 +7797,8 @@ "string[]" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7425,7 +7811,8 @@ "(string | number | null)[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7439,6 +7826,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -7451,7 +7839,8 @@ "[x: string]: any" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7483,6 +7872,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -7492,7 +7882,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7505,7 +7896,8 @@ "\"active\" | \"inactive\"" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7525,7 +7917,8 @@ "[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7535,7 +7928,8 @@ "label": "is_managed", "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7545,7 +7939,8 @@ "label": "updated_at", "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7555,7 +7950,8 @@ "label": "updated_by", "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7565,7 +7961,8 @@ "label": "revision", "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7578,7 +7975,8 @@ "number | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7592,6 +7990,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -7601,7 +8000,8 @@ "label": "pkgkey", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7614,7 +8014,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7627,7 +8028,8 @@ "\"kibana\" | \"elasticsearch\"" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7663,7 +8065,8 @@ } ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7673,7 +8076,8 @@ "label": "file", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7687,6 +8091,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -7696,7 +8101,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7706,7 +8112,8 @@ "label": "version", "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7725,7 +8132,8 @@ } ], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7739,6 +8147,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -7767,7 +8176,8 @@ ")[]" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7796,7 +8206,8 @@ ")[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7810,6 +8221,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -7819,7 +8231,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7829,7 +8242,8 @@ "label": "version", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7842,7 +8256,8 @@ "Buffer" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7856,6 +8271,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/app.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -7868,7 +8284,8 @@ "\"MISSING_SECURITY\" | \"MISSING_PRIVILEGES\" | \"MISSING_FLEET_SERVER_SETUP_PRIVILEGES\" | undefined" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/app.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -7878,7 +8295,8 @@ "label": "success", "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/app.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7892,6 +8310,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -7910,7 +8329,8 @@ } ], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7924,6 +8344,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -7942,7 +8363,8 @@ } ], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7956,6 +8378,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -7974,7 +8397,8 @@ } ], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7988,6 +8412,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -8007,7 +8432,8 @@ " & { force?: boolean | undefined; }" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8021,6 +8447,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -8039,7 +8466,8 @@ } ], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8053,6 +8481,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -8065,7 +8494,8 @@ "\"unknown\" | \"update\" | \"reinstall\" | \"reupdate\" | \"rollback\" | \"install\"" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8078,7 +8508,8 @@ "Error" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8092,6 +8523,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -8104,7 +8536,8 @@ "{ agentPolicyId: string; }" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8118,6 +8551,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -8127,7 +8561,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8137,7 +8572,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8151,6 +8587,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -8163,7 +8600,8 @@ "{ packagePolicyIds: string[]; force?: boolean | undefined; }" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8177,6 +8615,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -8186,7 +8625,8 @@ "label": "title", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8196,7 +8636,8 @@ "label": "latestVersion", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8225,7 +8666,8 @@ ">" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8238,7 +8680,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8251,7 +8694,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8265,6 +8709,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/authz.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -8277,7 +8722,8 @@ "{ all: boolean; setup: boolean; readEnrollmentTokens: boolean; readAgentPolicies: boolean; }" ], "path": "x-pack/plugins/fleet/common/authz.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8290,7 +8736,8 @@ "{ readPackageInfo: boolean; readInstalledPackages: boolean; installPackages: boolean; upgradePackages: boolean; removePackages: boolean; uploadPackages: boolean; readPackageSettings: boolean; writePackageSettings: boolean; readIntegrationPolicies: boolean; writeIntegrationPolicies: boolean; }" ], "path": "x-pack/plugins/fleet/common/authz.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8304,6 +8751,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -8313,7 +8761,8 @@ "label": "message", "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/error.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8323,7 +8772,8 @@ "label": "statusCode", "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/error.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8336,7 +8786,8 @@ "{ type?: \"verification_failed\" | undefined; } | undefined" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/error.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8352,6 +8803,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -8366,7 +8818,8 @@ "number | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8381,7 +8834,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8396,7 +8850,8 @@ "\"EPHEMERAL\" | \"PERMANENT\" | \"TEMPORARY\"" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8408,7 +8863,8 @@ "\nActive flag" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8420,7 +8876,8 @@ "\nDate/time the Elastic Agent enrolled" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8435,7 +8892,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8450,7 +8908,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8465,7 +8924,8 @@ "string | null | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8480,7 +8940,8 @@ "string | null | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8495,7 +8956,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8515,7 +8977,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8536,7 +8999,8 @@ } ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8557,7 +9021,8 @@ } ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8572,7 +9037,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8587,7 +9053,8 @@ "number | null | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8602,7 +9069,8 @@ "number | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8617,7 +9085,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8632,7 +9101,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8647,7 +9117,8 @@ "\"error\" | \"online\" | \"updating\" | \"degraded\" | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8662,7 +9133,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8677,7 +9149,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8692,7 +9165,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8707,7 +9181,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8722,7 +9197,8 @@ "number | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8737,7 +9213,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8752,7 +9229,8 @@ "{ id: string; retired_at: string; }[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8767,7 +9245,8 @@ "FleetServerAgentComponent[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8783,6 +9262,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -8794,7 +9274,8 @@ "\nThe unique identifier for the Elastic Agent" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8806,7 +9287,8 @@ "\nThe version of the Elastic Agent" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8819,7 +9301,8 @@ "[k: string]: any" ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8833,6 +9316,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -8842,7 +9326,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8863,7 +9348,8 @@ "; }" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8884,7 +9370,8 @@ "; } | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8905,7 +9392,8 @@ "; } | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8925,7 +9413,8 @@ "[]" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8938,7 +9427,8 @@ "number | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8951,7 +9441,8 @@ "{ monitoring: { namespace?: string | undefined; use_output?: string | undefined; enabled: boolean; metrics: boolean; logs: boolean; }; download: { source_uri: string; }; } | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8965,6 +9456,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -8974,7 +9466,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8984,7 +9477,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -8994,7 +9488,8 @@ "label": "revision", "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9004,7 +9499,8 @@ "label": "type", "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9017,7 +9513,8 @@ "{ namespace: string; }" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9027,7 +9524,8 @@ "label": "use_output", "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9037,7 +9535,8 @@ "label": "package_policy_id", "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9058,7 +9557,8 @@ ", \"name\" | \"version\"> | undefined; } | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9078,7 +9578,8 @@ "[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9091,7 +9592,8 @@ "[key: string]: any" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9105,6 +9607,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -9114,7 +9617,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9127,7 +9631,8 @@ "{ dataset: string; type: string; }" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9140,7 +9645,8 @@ "[key: string]: any" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9154,6 +9660,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -9166,7 +9673,8 @@ "string[]" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9176,7 +9684,8 @@ "label": "protocol", "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9189,7 +9698,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9203,6 +9713,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -9215,7 +9726,8 @@ "[packagePolicyName: string]: { cluster?: string[] | undefined; indices?: { names: string[]; privileges: string[]; }[] | undefined; }" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9229,6 +9741,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -9248,7 +9761,8 @@ " & { full?: boolean | undefined; }" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9288,6 +9802,7 @@ ], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -9297,7 +9812,8 @@ "label": "totalInactive", "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9317,7 +9833,8 @@ "[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9331,6 +9848,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -9343,7 +9861,8 @@ "{ events: number; total: number; online: number; error: number; offline: number; other: number; updating: number; }" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9357,6 +9876,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -9375,7 +9895,8 @@ } ], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9389,6 +9910,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -9448,7 +9970,8 @@ ">>" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9468,7 +9991,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9482,6 +10006,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -9500,7 +10025,8 @@ } ], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9514,6 +10040,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -9532,7 +10059,8 @@ } ], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9546,6 +10074,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -9564,7 +10093,8 @@ } ], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9578,6 +10108,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -9596,7 +10127,8 @@ } ], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9610,6 +10142,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -9629,7 +10162,8 @@ "[]" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9649,7 +10183,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9663,6 +10198,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -9672,7 +10208,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9682,7 +10219,8 @@ "label": "statusCode", "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9695,7 +10233,8 @@ "string | Error" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9720,6 +10259,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -9739,7 +10279,8 @@ "[]" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9759,7 +10300,8 @@ "[]" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9779,7 +10321,8 @@ "[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9792,7 +10335,8 @@ "{ [x: string]: string; }" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9802,7 +10346,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9812,7 +10357,8 @@ "label": "version", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9825,7 +10371,8 @@ "\"installed\" | \"installing\" | \"install_failed\"" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9835,7 +10382,8 @@ "label": "install_version", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9845,7 +10393,8 @@ "label": "install_started_at", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9858,7 +10407,8 @@ "\"upload\" | \"registry\" | \"bundled\"" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9871,7 +10421,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9884,7 +10435,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9897,7 +10449,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9910,7 +10463,8 @@ "\"unknown\" | \"verified\" | \"unverified\"" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9923,7 +10477,8 @@ "string | null | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9937,6 +10492,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -9956,7 +10512,8 @@ "[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9969,7 +10526,8 @@ "\"installed\" | \"already_installed\" | undefined" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9982,7 +10540,8 @@ "Error | undefined" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -9995,7 +10554,8 @@ "\"unknown\" | \"update\" | \"reinstall\" | \"reupdate\" | \"rollback\" | \"install\"" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10008,7 +10568,8 @@ "\"upload\" | \"registry\" | \"bundled\"" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10032,6 +10593,7 @@ ], "path": "x-pack/plugins/fleet/common/types/rest_spec/common.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -10044,7 +10606,8 @@ "T[]" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/common.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10054,7 +10617,8 @@ "label": "total", "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/common.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10064,7 +10628,8 @@ "label": "page", "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/common.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10074,7 +10639,8 @@ "label": "perPage", "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/common.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10099,6 +10665,7 @@ ], "path": "x-pack/plugins/fleet/common/types/rest_spec/common.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -10111,7 +10678,8 @@ "number | undefined" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/common.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10124,7 +10692,8 @@ "number | undefined" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/common.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10137,7 +10706,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/common.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10150,7 +10720,8 @@ "\"asc\" | \"desc\" | undefined" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/common.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10163,7 +10734,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/common.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10177,6 +10749,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -10189,7 +10762,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10199,7 +10773,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10209,7 +10784,8 @@ "label": "namespace", "description": [], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10222,7 +10798,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10235,7 +10812,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10248,7 +10826,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10261,7 +10840,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10274,7 +10854,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10287,7 +10868,8 @@ "(\"metrics\" | \"logs\")[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10300,7 +10882,8 @@ "number | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10313,7 +10896,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10326,7 +10910,8 @@ "string | null | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10339,7 +10924,8 @@ "string | null | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10352,7 +10938,8 @@ "string | null | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10365,7 +10952,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10379,6 +10967,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/output.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -10388,7 +10977,8 @@ "label": "is_default", "description": [], "path": "x-pack/plugins/fleet/common/types/models/output.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10398,7 +10988,8 @@ "label": "is_default_monitoring", "description": [], "path": "x-pack/plugins/fleet/common/types/models/output.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10411,7 +11002,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/output.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10421,7 +11013,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/fleet/common/types/models/output.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10434,7 +11027,8 @@ "\"logstash\" | \"elasticsearch\"" ], "path": "x-pack/plugins/fleet/common/types/models/output.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10447,7 +11041,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/output.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10460,7 +11055,8 @@ "string | null | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/output.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10473,7 +11069,8 @@ "string | null | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/output.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10486,7 +11083,8 @@ "string | null | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/output.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10499,7 +11097,8 @@ "{ certificate_authorities?: string[] | undefined; certificate?: string | undefined; key?: string | undefined; } | null | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/output.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10513,6 +11112,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -10525,7 +11125,8 @@ "string | number | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10535,7 +11136,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10548,7 +11150,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10558,7 +11161,8 @@ "label": "namespace", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10568,7 +11172,8 @@ "label": "enabled", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10581,7 +11186,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10591,7 +11197,8 @@ "label": "policy_id", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10611,7 +11218,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10631,7 +11239,8 @@ "[]" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10651,7 +11260,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10664,7 +11274,8 @@ "{ privileges?: { cluster?: string[] | undefined; } | undefined; } | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10678,6 +11289,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -10690,7 +11302,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10700,7 +11313,8 @@ "label": "type", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10713,7 +11327,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10723,7 +11338,8 @@ "label": "enabled", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10736,7 +11352,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10756,7 +11373,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10776,7 +11394,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10796,7 +11415,8 @@ "[]" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10810,6 +11430,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -10822,7 +11443,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10832,7 +11454,8 @@ "label": "enabled", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10845,7 +11468,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10858,7 +11482,8 @@ "{ dataset: string; type: string; elasticsearch?: { privileges?: { indices?: string[] | undefined; } | undefined; } | undefined; }" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10878,7 +11503,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10898,7 +11524,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10930,6 +11557,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -10939,7 +11567,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10959,7 +11588,8 @@ "[]" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10972,7 +11602,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10982,7 +11613,8 @@ "label": "revision", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -10992,7 +11624,8 @@ "label": "updated_at", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11002,7 +11635,8 @@ "label": "updated_by", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11012,7 +11646,8 @@ "label": "created_at", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11022,7 +11657,8 @@ "label": "created_by", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11036,6 +11672,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -11048,7 +11685,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11061,7 +11699,8 @@ "any" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11074,7 +11713,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11106,6 +11746,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -11125,7 +11766,8 @@ "[]" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11138,7 +11780,8 @@ "any" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11169,6 +11812,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -11178,7 +11822,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11191,7 +11836,8 @@ "any" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11205,6 +11851,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -11214,7 +11861,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11224,7 +11872,8 @@ "label": "title", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11234,7 +11883,8 @@ "label": "version", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11248,6 +11898,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -11257,7 +11908,8 @@ "label": "src", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11270,7 +11922,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11283,7 +11936,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11296,7 +11950,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11310,6 +11965,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -11319,7 +11975,8 @@ "label": "format_version", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11329,7 +11986,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11339,7 +11997,8 @@ "label": "title", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11349,7 +12008,8 @@ "label": "description", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11359,7 +12019,8 @@ "label": "version", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11372,7 +12033,8 @@ "\"basic\" | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11385,7 +12047,8 @@ "\"integration\" | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11398,7 +12061,8 @@ "\"experimental\" | \"beta\" | \"ga\" | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11419,7 +12083,8 @@ " | undefined)[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11439,7 +12104,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11459,7 +12125,8 @@ "[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11479,7 +12146,8 @@ "[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11499,7 +12167,8 @@ "[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11519,7 +12188,8 @@ "[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11532,7 +12202,8 @@ "{ github: string; }" ], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11546,6 +12217,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -11555,7 +12227,8 @@ "label": "src", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11565,7 +12238,8 @@ "label": "title", "description": [], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11578,7 +12252,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11591,7 +12266,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11604,7 +12280,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11618,6 +12295,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/fleet_setup.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -11627,7 +12305,8 @@ "label": "isInitialized", "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/fleet_setup.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11640,7 +12319,8 @@ "{ name: string; message: string; }[]" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/fleet_setup.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11654,6 +12334,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -11666,7 +12347,8 @@ "[key: string]: any" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11676,7 +12358,8 @@ "label": "[RegistryDataStreamKeys.type]", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11689,7 +12372,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11702,7 +12386,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11712,7 +12397,8 @@ "label": "[RegistryDataStreamKeys.dataset]", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11722,7 +12408,8 @@ "label": "[RegistryDataStreamKeys.title]", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11732,7 +12419,8 @@ "label": "[RegistryDataStreamKeys.release]", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11752,7 +12440,8 @@ "[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11762,7 +12451,8 @@ "label": "[RegistryDataStreamKeys.package]", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11772,7 +12462,8 @@ "label": "[RegistryDataStreamKeys.path]", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11785,7 +12476,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11805,7 +12497,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11818,7 +12511,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11832,6 +12526,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -11844,7 +12539,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11857,7 +12553,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11871,6 +12568,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -11890,7 +12588,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11904,7 +12603,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11918,7 +12618,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -11931,7 +12632,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11962,6 +12664,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -11971,7 +12674,8 @@ "label": "path", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -11985,6 +12689,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -11994,7 +12699,8 @@ "label": "[RegistryInputKeys.type]", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12004,7 +12710,8 @@ "label": "[RegistryInputKeys.title]", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12014,7 +12721,8 @@ "label": "[RegistryInputKeys.description]", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12027,7 +12735,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12040,7 +12749,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12060,7 +12770,8 @@ " | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12080,7 +12791,8 @@ "[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -12094,6 +12806,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -12103,7 +12816,8 @@ "label": "[RegistryPolicyTemplateKeys.name]", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12113,7 +12827,8 @@ "label": "[RegistryPolicyTemplateKeys.title]", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12123,7 +12838,8 @@ "label": "[RegistryPolicyTemplateKeys.description]", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12143,7 +12859,8 @@ "[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12163,7 +12880,8 @@ "[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12184,7 +12902,8 @@ " | undefined)[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12197,7 +12916,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12217,7 +12937,8 @@ "[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12230,7 +12951,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12243,7 +12965,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -12257,6 +12980,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -12266,7 +12990,8 @@ "label": "[RegistryStreamKeys.input]", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12276,7 +13001,8 @@ "label": "[RegistryStreamKeys.title]", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12289,7 +13015,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12302,7 +13029,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12322,7 +13050,8 @@ "[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12332,7 +13061,8 @@ "label": "[RegistryStreamKeys.template_path]", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -12346,6 +13076,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -12355,7 +13086,8 @@ "label": "[RegistryVarsEntryKeys.name]", "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12368,7 +13100,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12381,7 +13114,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12394,7 +13128,8 @@ "\"string\" | \"text\" | \"yaml\" | \"textarea\" | \"password\" | \"integer\" | \"bool\"" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12407,7 +13142,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12420,7 +13156,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12433,7 +13170,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12446,7 +13184,8 @@ "string | boolean | string[] | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12459,7 +13198,8 @@ "{ [key: string]: { default: string | string[]; }; } | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -12490,6 +13230,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -12502,7 +13243,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -12516,6 +13258,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -12528,7 +13271,8 @@ "string | undefined" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12541,7 +13285,8 @@ "number | undefined" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12554,7 +13299,8 @@ "{ message: string; } | undefined" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -12585,6 +13331,7 @@ ], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -12594,7 +13341,8 @@ "label": "hasErrors", "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12623,7 +13371,8 @@ "] | undefined" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12644,7 +13393,8 @@ "[]] | undefined" ], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -12675,6 +13425,7 @@ ], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -12684,7 +13435,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -12694,7 +13446,8 @@ "label": "success", "description": [], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -12710,6 +13463,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12721,6 +13475,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12732,6 +13487,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -12748,6 +13504,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/agent.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12762,6 +13519,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/agent.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12776,6 +13534,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12790,6 +13549,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12804,6 +13564,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/agent.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12818,6 +13579,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/agent.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12832,6 +13594,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/agent.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12846,6 +13609,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12875,6 +13639,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12903,6 +13668,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12917,6 +13683,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12940,6 +13707,7 @@ ], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12963,6 +13731,7 @@ ], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12985,6 +13754,7 @@ ], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -12999,6 +13769,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13020,6 +13791,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13049,6 +13821,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13119,6 +13892,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13143,6 +13917,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13157,6 +13932,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13171,6 +13947,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13185,6 +13962,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13199,6 +13977,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13213,6 +13992,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13227,6 +14007,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13241,6 +14022,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13255,6 +14037,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13269,6 +14052,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13283,6 +14067,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13297,6 +14082,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/agent.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13319,6 +14105,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13348,6 +14135,7 @@ ], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13369,6 +14157,7 @@ ], "path": "x-pack/plugins/fleet/common/types/rest_spec/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13398,6 +14187,7 @@ ], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13451,6 +14241,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13479,6 +14270,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13503,6 +14295,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13517,6 +14310,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13541,6 +14335,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13555,6 +14350,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13569,6 +14365,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/plugin.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13598,6 +14395,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13622,6 +14420,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13732,6 +14531,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13746,6 +14546,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13767,6 +14568,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/output.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13781,6 +14583,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/output.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13792,6 +14595,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13806,6 +14610,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/package_policy.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13822,6 +14627,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13883,6 +14689,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13904,6 +14711,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13933,6 +14741,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13955,6 +14764,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/package_policy.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13969,6 +14779,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13983,6 +14794,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -13997,6 +14809,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/package_spec.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -14011,6 +14824,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/plugin.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -14025,6 +14839,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/preconfiguration.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -14039,6 +14854,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -14060,6 +14876,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -14114,6 +14931,7 @@ ], "path": "x-pack/plugins/fleet/common/types/models/epm.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -14125,6 +14943,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -14139,6 +14958,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -14159,6 +14979,7 @@ ], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -14180,6 +15001,7 @@ ], "path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -14193,6 +15015,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -14202,7 +15025,8 @@ "label": "LIST_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14212,7 +15036,8 @@ "label": "INFO_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14222,7 +15047,8 @@ "label": "UPDATE_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14232,7 +15058,8 @@ "label": "BULK_UPDATE_AGENT_TAGS_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14242,7 +15069,8 @@ "label": "DELETE_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14252,7 +15080,8 @@ "label": "CHECKIN_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14262,7 +15091,8 @@ "label": "ACKS_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14272,7 +15102,8 @@ "label": "ACTIONS_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14282,7 +15113,8 @@ "label": "CANCEL_ACTIONS_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14292,7 +15124,8 @@ "label": "UNENROLL_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14302,7 +15135,8 @@ "label": "BULK_UNENROLL_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14312,7 +15146,8 @@ "label": "REASSIGN_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14322,7 +15157,8 @@ "label": "BULK_REASSIGN_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14332,7 +15168,8 @@ "label": "AVAILABLE_VERSIONS_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14342,7 +15179,8 @@ "label": "STATUS_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14352,7 +15190,8 @@ "label": "DATA_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14364,7 +15203,8 @@ "// deprecated since 8.0" ], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14374,7 +15214,8 @@ "label": "UPGRADE_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14384,7 +15225,8 @@ "label": "BULK_UPGRADE_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14394,7 +15236,8 @@ "label": "CURRENT_UPGRADES_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14404,7 +15247,8 @@ "label": "LIST_TAGS_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -14418,6 +15262,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -14427,7 +15272,8 @@ "label": "LIST_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14437,7 +15283,8 @@ "label": "BULK_GET_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14447,7 +15294,8 @@ "label": "INFO_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14457,7 +15305,8 @@ "label": "CREATE_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14467,7 +15316,8 @@ "label": "UPDATE_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14477,7 +15327,8 @@ "label": "COPY_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14487,7 +15338,8 @@ "label": "DELETE_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14497,7 +15349,8 @@ "label": "FULL_INFO_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -14507,7 +15360,8 @@ "label": "FULL_INFO_DOWNLOAD_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -14521,6 +15375,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -14534,6 +15389,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14549,6 +15405,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14564,6 +15421,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -14577,6 +15435,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14594,6 +15453,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14609,6 +15469,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -14622,6 +15483,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14639,6 +15501,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -14652,6 +15515,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14669,6 +15533,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14684,6 +15549,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -14697,6 +15563,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14714,6 +15581,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -14727,6 +15595,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14744,6 +15613,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14759,6 +15629,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14774,6 +15645,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -14787,6 +15659,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14804,6 +15677,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -14822,6 +15696,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/agent_policy.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -14833,6 +15708,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -14846,6 +15722,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -14859,6 +15736,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14876,6 +15754,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -14889,6 +15768,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14906,6 +15786,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14921,6 +15802,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -14934,6 +15816,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14951,6 +15834,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -14966,6 +15850,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -14979,6 +15864,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -14996,6 +15882,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -15011,6 +15898,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -15024,6 +15912,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15041,6 +15930,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -15056,6 +15946,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -15071,6 +15962,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -15084,6 +15976,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15101,6 +15994,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -15116,6 +16010,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -15131,6 +16026,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -15146,6 +16042,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -15159,6 +16056,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15176,6 +16074,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -15191,6 +16090,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -15206,6 +16106,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -15215,7 +16116,8 @@ "label": "INFO_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15225,7 +16127,8 @@ "label": "CREATE_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -15239,6 +16142,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -15252,6 +16156,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -15265,6 +16170,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -15282,6 +16188,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -15297,6 +16204,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -15306,7 +16214,8 @@ "label": "BULK_INSTALL_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15316,7 +16225,8 @@ "label": "LIST_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15326,7 +16236,8 @@ "label": "LIMITED_LIST_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15336,7 +16247,8 @@ "label": "INFO_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15346,7 +16258,8 @@ "label": "INSTALL_FROM_REGISTRY_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15356,7 +16269,8 @@ "label": "INSTALL_BY_UPLOAD_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15366,7 +16280,8 @@ "label": "DELETE_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15376,7 +16291,8 @@ "label": "FILEPATH_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15386,7 +16302,8 @@ "label": "CATEGORIES_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15396,7 +16313,8 @@ "label": "STATS_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15406,7 +16324,8 @@ "label": "INFO_PATTERN_DEPRECATED", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15416,7 +16335,8 @@ "label": "INSTALL_FROM_REGISTRY_PATTERN_DEPRECATED", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15426,7 +16346,8 @@ "label": "DELETE_PATTERN_DEPRECATED", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -15440,6 +16361,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -15453,6 +16375,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -15468,6 +16391,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -15483,6 +16407,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -15498,6 +16423,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -15511,6 +16437,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15525,6 +16452,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -15542,6 +16470,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -15555,6 +16484,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15572,6 +16502,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -15585,6 +16516,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15602,6 +16534,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -15615,6 +16548,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15629,6 +16563,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15646,6 +16581,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -15661,6 +16597,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -15674,6 +16611,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15688,6 +16626,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15705,6 +16644,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -15718,6 +16658,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -15732,6 +16673,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15752,6 +16694,7 @@ ], "path": "x-pack/plugins/fleet/common/constants/agent.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -15763,6 +16706,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -15776,6 +16720,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -15791,6 +16736,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -15806,6 +16752,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -15815,7 +16762,8 @@ "label": "LIST_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15825,7 +16773,8 @@ "label": "BULK_GET_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15835,7 +16784,8 @@ "label": "INFO_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15845,7 +16795,8 @@ "label": "CREATE_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15855,7 +16806,8 @@ "label": "UPDATE_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15865,7 +16817,8 @@ "label": "DELETE_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15875,7 +16828,8 @@ "label": "UPGRADE_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15885,7 +16839,8 @@ "label": "DRYRUN_PATTERN", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "fleet", @@ -15895,7 +16850,8 @@ "label": "ORPHANED_INTEGRATION_POLICIES", "description": [], "path": "x-pack/plugins/fleet/common/constants/routes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -15909,6 +16865,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -15922,6 +16879,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -15937,6 +16895,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -15950,6 +16909,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -15967,6 +16927,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -15982,6 +16943,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -15995,6 +16957,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -16012,6 +16975,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -16027,6 +16991,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -16042,6 +17007,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -16057,6 +17023,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -16072,6 +17039,7 @@ "description": [], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "fleet", @@ -16085,6 +17053,7 @@ ], "path": "x-pack/plugins/fleet/common/services/routes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } diff --git a/api_docs/fleet.mdx b/api_docs/fleet.mdx index a91815e1237e8..7c71b34ed84e5 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fleet'] --- import fleetObj from './fleet.devdocs.json'; diff --git a/api_docs/global_search.devdocs.json b/api_docs/global_search.devdocs.json index 92fce3b826216..da9062f69079a 100644 --- a/api_docs/global_search.devdocs.json +++ b/api_docs/global_search.devdocs.json @@ -15,6 +15,7 @@ ], "path": "x-pack/plugins/global_search/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "globalSearch", @@ -30,7 +31,8 @@ "[]" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -46,6 +48,7 @@ ], "path": "x-pack/plugins/global_search/public/services/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "globalSearch", @@ -60,7 +63,8 @@ "string | undefined" ], "path": "x-pack/plugins/global_search/public/services/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -76,7 +80,8 @@ " | undefined" ], "path": "x-pack/plugins/global_search/public/services/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -92,6 +97,7 @@ ], "path": "x-pack/plugins/global_search/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "globalSearch", @@ -106,7 +112,8 @@ "string | undefined" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -121,7 +128,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -136,7 +144,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -152,6 +161,7 @@ ], "path": "x-pack/plugins/global_search/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "globalSearch", @@ -163,7 +173,8 @@ "\nA custom preference token associated with a search 'session' that should be used to get consistent scoring\nwhen performing calls to ES. Can also be used as a 'session' token for providers returning data from elsewhere\nthan an elasticsearch cluster." ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -179,7 +190,8 @@ "" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -191,7 +203,8 @@ "\nThe total maximum number of results (including all batches, not per emission) that should be returned by the provider for a given `find` request.\nAny result emitted exceeding this quota will be ignored by the service and not emitted to the consumer." ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -207,6 +220,7 @@ ], "path": "x-pack/plugins/global_search/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "globalSearch", @@ -218,7 +232,8 @@ "an id that should be unique for an individual provider's results" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -230,7 +245,8 @@ "the title/label of the result" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -242,7 +258,8 @@ "the type of result" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -257,7 +274,8 @@ "string | undefined" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -272,7 +290,8 @@ "string | { path: string; prependBasePath: boolean; }" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -284,7 +303,8 @@ "the score of the result, from 1 (lowest) to 100 (highest)" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -301,7 +321,8 @@ "> | undefined" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -317,6 +338,7 @@ ], "path": "x-pack/plugins/global_search/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "globalSearch", @@ -328,7 +350,8 @@ "\nid of the provider" ], "path": "x-pack/plugins/global_search/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -352,6 +375,7 @@ ], "path": "x-pack/plugins/global_search/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "globalSearch", @@ -365,6 +389,7 @@ ], "path": "x-pack/plugins/global_search/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -379,6 +404,7 @@ ], "path": "x-pack/plugins/global_search/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -398,6 +424,7 @@ ], "path": "x-pack/plugins/global_search/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -419,6 +446,7 @@ ], "path": "x-pack/plugins/global_search/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -435,6 +463,7 @@ ], "path": "x-pack/plugins/global_search/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -453,6 +482,7 @@ ], "path": "x-pack/plugins/global_search/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -477,6 +507,7 @@ ], "path": "x-pack/plugins/global_search/public/types.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "setup", "initialIsOpen": true }, @@ -506,6 +537,7 @@ ], "path": "x-pack/plugins/global_search/public/types.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -525,6 +557,7 @@ ], "path": "x-pack/plugins/global_search/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "globalSearch", @@ -540,7 +573,8 @@ "[]" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -556,6 +590,7 @@ ], "path": "x-pack/plugins/global_search/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "globalSearch", @@ -570,7 +605,8 @@ "string | undefined" ], "path": "x-pack/plugins/global_search/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -586,7 +622,8 @@ " | undefined" ], "path": "x-pack/plugins/global_search/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -602,6 +639,7 @@ ], "path": "x-pack/plugins/global_search/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "globalSearch", @@ -630,7 +668,8 @@ ">; }" ], "path": "x-pack/plugins/global_search/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -646,6 +685,7 @@ ], "path": "x-pack/plugins/global_search/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "globalSearch", @@ -657,7 +697,8 @@ "\nA custom preference token associated with a search 'session' that should be used to get consistent scoring\nwhen performing calls to ES. Can also be used as a 'session' token for providers returning data from elsewhere\nthan an elasticsearch cluster." ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -673,7 +714,8 @@ "" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -685,7 +727,8 @@ "\nThe total maximum number of results (including all batches, not per emission) that should be returned by the provider for a given `find` request.\nAny result emitted exceeding this quota will be ignored by the service and not emitted to the consumer." ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -701,6 +744,7 @@ ], "path": "x-pack/plugins/global_search/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "globalSearch", @@ -712,7 +756,8 @@ "an id that should be unique for an individual provider's results" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -724,7 +769,8 @@ "the title/label of the result" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -736,7 +782,8 @@ "the type of result" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -751,7 +798,8 @@ "string | undefined" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -766,7 +814,8 @@ "string | { path: string; prependBasePath: boolean; }" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -778,7 +827,8 @@ "the score of the result, from 1 (lowest) to 100 (highest)" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -795,7 +845,8 @@ "> | undefined" ], "path": "x-pack/plugins/global_search/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -811,6 +862,7 @@ ], "path": "x-pack/plugins/global_search/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "globalSearch", @@ -822,7 +874,8 @@ "\nid of the provider" ], "path": "x-pack/plugins/global_search/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "globalSearch", @@ -854,6 +907,7 @@ ], "path": "x-pack/plugins/global_search/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "globalSearch", @@ -867,6 +921,7 @@ ], "path": "x-pack/plugins/global_search/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -881,6 +936,7 @@ ], "path": "x-pack/plugins/global_search/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -901,6 +957,7 @@ ], "path": "x-pack/plugins/global_search/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -928,6 +985,7 @@ ], "path": "x-pack/plugins/global_search/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "globalSearch", @@ -947,6 +1005,7 @@ ], "path": "x-pack/plugins/global_search/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -966,6 +1025,7 @@ ], "path": "x-pack/plugins/global_search/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "globalSearch", @@ -995,6 +1055,7 @@ ], "path": "x-pack/plugins/global_search/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "globalSearch", @@ -1008,6 +1069,7 @@ ], "path": "x-pack/plugins/global_search/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1028,6 +1090,7 @@ ], "path": "x-pack/plugins/global_search/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1047,6 +1110,7 @@ ], "path": "x-pack/plugins/global_search/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1070,6 +1134,7 @@ ], "path": "x-pack/plugins/global_search/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1088,6 +1153,7 @@ ], "path": "x-pack/plugins/global_search/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1122,6 +1188,7 @@ ], "path": "x-pack/plugins/global_search/server/types.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true }, @@ -1145,6 +1212,7 @@ ], "path": "x-pack/plugins/global_search/server/types.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "setup", "initialIsOpen": true } diff --git a/api_docs/global_search.mdx b/api_docs/global_search.mdx index 6103a7b82ab4b..b034c8b7cb9e0 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'globalSearch'] --- import globalSearchObj from './global_search.devdocs.json'; diff --git a/api_docs/home.devdocs.json b/api_docs/home.devdocs.json index aa53c3ca6d9dc..fb0744959b803 100644 --- a/api_docs/home.devdocs.json +++ b/api_docs/home.devdocs.json @@ -11,6 +11,7 @@ "description": [], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -40,6 +41,7 @@ ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -57,6 +59,7 @@ ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -67,6 +70,7 @@ "description": [], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -79,7 +83,8 @@ "Capabilities" ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -106,6 +111,7 @@ ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -129,6 +135,7 @@ ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -144,6 +151,7 @@ ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -157,6 +165,7 @@ ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -184,6 +193,7 @@ ], "path": "src/plugins/home/common/instruction_variant.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -197,6 +207,7 @@ ], "path": "src/plugins/home/common/instruction_variant.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -216,6 +227,7 @@ "description": [], "path": "src/plugins/home/public/services/add_data/add_data_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -225,7 +237,8 @@ "label": "id", "description": [], "path": "src/plugins/home/public/services/add_data/add_data_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -235,7 +248,8 @@ "label": "name", "description": [], "path": "src/plugins/home/public/services/add_data/add_data_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -249,6 +263,7 @@ ], "path": "src/plugins/home/public/services/add_data/add_data_service.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -262,7 +277,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -275,7 +291,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -291,6 +308,7 @@ "description": [], "path": "src/plugins/home/public/services/environment/environment.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -302,7 +320,8 @@ "\nFlag whether the home app should advertise cloud features" ], "path": "src/plugins/home/public/services/environment/environment.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -314,7 +333,8 @@ "\nFlag whether the home app should advertise apm features" ], "path": "src/plugins/home/public/services/environment/environment.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -326,7 +346,8 @@ "\nFlag whether the home app should advertise ml features" ], "path": "src/plugins/home/public/services/environment/environment.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -340,6 +361,7 @@ "description": [], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -351,7 +373,8 @@ "Unique string identifier for this feature." ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -363,7 +386,8 @@ "Title of feature displayed to the user." ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -378,7 +402,8 @@ "\"data\" | \"other\" | \"admin\"" ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -393,7 +418,8 @@ "string | undefined" ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -405,7 +431,8 @@ "One-line description of feature displayed to the user." ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -420,7 +447,8 @@ "string | React.ComponentType<{}>" ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -432,7 +460,8 @@ "URL path to link to this future. Should not include the basePath." ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -444,7 +473,8 @@ "Whether or not this link should be shown on the front page of Kibana." ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -459,7 +489,8 @@ "number | undefined" ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -475,6 +506,7 @@ ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -491,7 +523,8 @@ "string | undefined" ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -505,6 +538,7 @@ "description": [], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -516,7 +550,8 @@ "Unique string identifier for this solution." ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -528,7 +563,8 @@ "Title of solution displayed to the user." ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -540,7 +576,8 @@ "One-line description of the solution displayed to the user." ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -555,7 +592,8 @@ "string | React.ComponentType<{}>" ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -567,7 +605,8 @@ "URL path to link to this future. Should not include the basePath." ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -579,7 +618,8 @@ "An ordinal used to sort solutions relative to one another for display on the home page" ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -593,6 +633,7 @@ "description": [], "path": "src/plugins/home/public/services/welcome/welcome_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -608,6 +649,7 @@ ], "path": "src/plugins/home/public/services/welcome/welcome_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -621,6 +663,7 @@ ], "path": "src/plugins/home/public/services/welcome/welcome_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -648,6 +691,7 @@ ], "path": "src/plugins/home/public/services/welcome/welcome_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -667,6 +711,7 @@ ], "path": "src/plugins/home/public/services/welcome/welcome_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -698,6 +743,7 @@ ], "path": "src/plugins/home/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -712,6 +758,7 @@ ], "path": "src/plugins/home/public/services/feature_catalogue/feature_catalogue_registry.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -742,6 +789,7 @@ ], "path": "src/plugins/home/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -756,6 +804,7 @@ ], "path": "src/plugins/home/public/services/tutorials/tutorial_service.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -769,7 +818,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -782,7 +832,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -799,6 +850,7 @@ ], "path": "src/plugins/home/public/services/tutorials/tutorial_service.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -812,7 +864,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -825,7 +878,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -858,6 +912,7 @@ ], "path": "src/plugins/home/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -872,6 +927,7 @@ ], "path": "src/plugins/home/public/services/tutorials/tutorial_service.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -886,6 +942,7 @@ ], "path": "src/plugins/home/public/services/welcome/welcome_service.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -901,6 +958,7 @@ "description": [], "path": "src/plugins/home/common/instruction_variant.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -910,7 +968,8 @@ "label": "ESC", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -920,7 +979,8 @@ "label": "OSX", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -930,7 +990,8 @@ "label": "DEB", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -940,7 +1001,8 @@ "label": "RPM", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -950,7 +1012,8 @@ "label": "DOCKER", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -960,7 +1023,8 @@ "label": "WINDOWS", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -970,7 +1034,8 @@ "label": "NODE", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -980,7 +1045,8 @@ "label": "DJANGO", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -990,7 +1056,8 @@ "label": "FLASK", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1000,7 +1067,8 @@ "label": "RAILS", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1010,7 +1078,8 @@ "label": "RACK", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1020,7 +1089,8 @@ "label": "JS", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1030,7 +1100,8 @@ "label": "GO", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1040,7 +1111,8 @@ "label": "JAVA", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1050,7 +1122,8 @@ "label": "DOTNET", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1060,7 +1133,8 @@ "label": "LINUX", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1070,7 +1144,8 @@ "label": "PHP", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1080,7 +1155,8 @@ "label": "FLEET", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1090,7 +1166,8 @@ "label": "OPEN_TELEMETRY", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1105,6 +1182,7 @@ "description": [], "path": "src/plugins/home/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -1133,7 +1211,8 @@ ") => void; registerCustomStatusCheck: (name: string, fnCallback: CustomStatusCheckCallback) => void; registerCustomComponent: (name: string, component: CustomComponent) => void; }" ], "path": "src/plugins/home/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1154,7 +1233,8 @@ ") => void; }" ], "path": "src/plugins/home/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1183,7 +1263,8 @@ ") => void; }" ], "path": "src/plugins/home/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1202,7 +1283,8 @@ } ], "path": "src/plugins/home/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1229,6 +1311,7 @@ "path": "src/plugins/home/public/plugin.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [ { "plugin": "cloud", @@ -1253,6 +1336,7 @@ "description": [], "path": "src/plugins/home/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -1271,7 +1355,8 @@ } ], "path": "src/plugins/home/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", @@ -1293,6 +1378,7 @@ ], "path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -1314,7 +1400,8 @@ " | null" ], "path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1330,6 +1417,7 @@ ], "path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -1343,6 +1431,7 @@ ], "path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1358,7 +1447,8 @@ "\nThe label for this app link." ], "path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1370,7 +1460,8 @@ "\nThe icon for this app link." ], "path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1385,7 +1476,8 @@ "number | undefined" ], "path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1399,6 +1491,7 @@ "description": [], "path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -1408,7 +1501,8 @@ "label": "sampleDataId", "description": [], "path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1418,7 +1512,8 @@ "label": "dashboardId", "description": [], "path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1428,7 +1523,8 @@ "label": "oldEmbeddableId", "description": [], "path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1438,7 +1534,8 @@ "label": "embeddableId", "description": [], "path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1457,7 +1554,8 @@ } ], "path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1470,7 +1568,8 @@ "object" ], "path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1486,6 +1585,7 @@ ], "path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -1497,7 +1597,8 @@ "The type of the sample object." ], "path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1509,7 +1610,8 @@ "The ID of the sample object." ], "path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1523,6 +1625,7 @@ "description": [], "path": "src/plugins/home/server/services/tutorials/lib/tutorials_registry_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -1532,7 +1635,8 @@ "label": "kibanaBranch", "description": [], "path": "src/plugins/home/server/services/tutorials/lib/tutorials_registry_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1545,7 +1649,8 @@ "[key: string]: unknown" ], "path": "src/plugins/home/server/services/tutorials/lib/tutorials_registry_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1561,6 +1666,7 @@ "description": [], "path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1572,6 +1678,7 @@ "description": [], "path": "src/plugins/home/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1588,6 +1695,7 @@ ], "path": "src/plugins/home/server/services/tutorials/lib/tutorial_schema.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1602,6 +1710,7 @@ ], "path": "src/plugins/home/server/services/tutorials/lib/tutorial_schema.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1616,6 +1725,7 @@ ], "path": "src/plugins/home/server/services/tutorials/lib/tutorial_schema.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1650,6 +1760,7 @@ ], "path": "src/plugins/home/server/services/sample_data/sample_data_registry.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1666,6 +1777,7 @@ ], "path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -1682,6 +1794,7 @@ ], "path": "src/plugins/home/server/services/tutorials/lib/tutorials_registry_types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1695,7 +1808,8 @@ "any[]" ], "path": "src/plugins/home/server/services/tutorials/lib/tutorials_registry_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1720,6 +1834,7 @@ ], "path": "src/plugins/home/server/services/tutorials/lib/tutorials_registry_types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1739,7 +1854,8 @@ } ], "path": "src/plugins/home/server/services/tutorials/lib/tutorials_registry_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1756,6 +1872,7 @@ ], "path": "src/plugins/home/server/services/tutorials/lib/tutorial_schema.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1769,6 +1886,7 @@ "description": [], "path": "src/plugins/home/common/instruction_variant.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -1778,7 +1896,8 @@ "label": "ESC", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1788,7 +1907,8 @@ "label": "OSX", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1798,7 +1918,8 @@ "label": "DEB", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1808,7 +1929,8 @@ "label": "RPM", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1818,7 +1940,8 @@ "label": "DOCKER", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1828,7 +1951,8 @@ "label": "WINDOWS", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1838,7 +1962,8 @@ "label": "NODE", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1848,7 +1973,8 @@ "label": "DJANGO", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1858,7 +1984,8 @@ "label": "FLASK", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1868,7 +1995,8 @@ "label": "RAILS", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1878,7 +2006,8 @@ "label": "RACK", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1888,7 +2017,8 @@ "label": "JS", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1898,7 +2028,8 @@ "label": "GO", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1908,7 +2039,8 @@ "label": "JAVA", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1918,7 +2050,8 @@ "label": "DOTNET", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1928,7 +2061,8 @@ "label": "LINUX", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1938,7 +2072,8 @@ "label": "PHP", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1948,7 +2083,8 @@ "label": "FLEET", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -1958,7 +2094,8 @@ "label": "OPEN_TELEMETRY", "description": [], "path": "src/plugins/home/common/instruction_variant.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1973,6 +2110,7 @@ "description": [], "path": "src/plugins/home/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -2009,7 +2147,8 @@ ") => void; }" ], "path": "src/plugins/home/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -2042,7 +2181,8 @@ ") => void; }" ], "path": "src/plugins/home/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -2057,6 +2197,7 @@ "description": [], "path": "src/plugins/home/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "home", @@ -2069,7 +2210,8 @@ "{}" ], "path": "src/plugins/home/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "home", @@ -2082,7 +2224,8 @@ "{}" ], "path": "src/plugins/home/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", diff --git a/api_docs/home.mdx b/api_docs/home.mdx index a7a4e2c588e7b..4c9eda5502b86 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'home'] --- import homeObj from './home.devdocs.json'; diff --git a/api_docs/index_lifecycle_management.devdocs.json b/api_docs/index_lifecycle_management.devdocs.json index cf986a92aaaae..da2d945350c0b 100644 --- a/api_docs/index_lifecycle_management.devdocs.json +++ b/api_docs/index_lifecycle_management.devdocs.json @@ -24,6 +24,7 @@ ], "path": "x-pack/plugins/index_lifecycle_management/public/locator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexLifecycleManagement", @@ -36,7 +37,8 @@ "\"policies_list\" | \"policy_edit\" | \"policy_create\"" ], "path": "x-pack/plugins/index_lifecycle_management/public/locator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexLifecycleManagement", @@ -49,7 +51,8 @@ "string | undefined" ], "path": "x-pack/plugins/index_lifecycle_management/public/locator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -69,6 +72,7 @@ ], "path": "x-pack/plugins/index_lifecycle_management/public/locator.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/index_lifecycle_management.mdx b/api_docs/index_lifecycle_management.mdx index b5ad96a5f2a19..f034d977a97fc 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'indexLifecycleManagement'] --- import indexLifecycleManagementObj from './index_lifecycle_management.devdocs.json'; diff --git a/api_docs/index_management.devdocs.json b/api_docs/index_management.devdocs.json index 89672d6e856d7..50bacf0ad5086 100644 --- a/api_docs/index_management.devdocs.json +++ b/api_docs/index_management.devdocs.json @@ -15,6 +15,7 @@ ], "path": "x-pack/plugins/index_management/public/application/services/routing.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -28,6 +29,7 @@ ], "path": "x-pack/plugins/index_management/public/application/services/routing.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -42,6 +44,7 @@ ], "path": "x-pack/plugins/index_management/public/application/services/routing.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -60,6 +63,7 @@ ], "path": "x-pack/plugins/index_management/public/application/services/routing.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -73,6 +77,7 @@ ], "path": "x-pack/plugins/index_management/public/application/services/routing.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -87,6 +92,7 @@ ], "path": "x-pack/plugins/index_management/public/application/services/routing.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -104,6 +110,7 @@ "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -116,7 +123,8 @@ "string | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -129,7 +137,8 @@ "string | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -139,7 +148,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -152,7 +162,8 @@ "string | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -165,7 +176,8 @@ "string | number | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -178,7 +190,8 @@ "string | number | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -188,7 +201,8 @@ "label": "documents", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -198,7 +212,8 @@ "label": "documents_deleted", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -208,7 +223,8 @@ "label": "size", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -218,7 +234,8 @@ "label": "primary_size", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -228,7 +245,8 @@ "label": "isFrozen", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -238,7 +256,8 @@ "label": "hidden", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -251,7 +270,8 @@ "string | string[]" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -264,7 +284,8 @@ "string | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -277,7 +298,8 @@ "[key: string]: any" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -291,6 +313,7 @@ "description": [], "path": "x-pack/plugins/index_management/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -303,7 +326,8 @@ "ExtensionsSetup" ], "path": "x-pack/plugins/index_management/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -326,6 +350,7 @@ "description": [], "path": "x-pack/plugins/index_management/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -344,7 +369,8 @@ } ], "path": "x-pack/plugins/index_management/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -363,7 +389,8 @@ } ], "path": "x-pack/plugins/index_management/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -382,7 +409,8 @@ } ], "path": "x-pack/plugins/index_management/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -396,6 +424,7 @@ "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -408,7 +437,8 @@ "string | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -421,7 +451,8 @@ "string | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -431,7 +462,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -444,7 +476,8 @@ "string | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -457,7 +490,8 @@ "string | number | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -470,7 +504,8 @@ "string | number | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -480,7 +515,8 @@ "label": "documents", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -490,7 +526,8 @@ "label": "documents_deleted", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -500,7 +537,8 @@ "label": "size", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -510,7 +548,8 @@ "label": "primary_size", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -520,7 +559,8 @@ "label": "isFrozen", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -530,7 +570,8 @@ "label": "hidden", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -543,7 +584,8 @@ "string | string[]" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -556,7 +598,8 @@ "string | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -569,7 +612,8 @@ "[key: string]: any" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -585,6 +629,7 @@ ], "path": "x-pack/plugins/index_management/common/types/templates.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -597,7 +642,8 @@ "string[]" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -610,7 +656,8 @@ "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -630,7 +677,8 @@ " | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -650,7 +698,8 @@ " | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -670,7 +719,8 @@ " | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -683,7 +733,8 @@ "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -703,6 +754,7 @@ ], "path": "x-pack/plugins/index_management/server/config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -716,6 +768,7 @@ "description": [], "path": "x-pack/plugins/index_management/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -730,7 +783,8 @@ ") => void; }" ], "path": "x-pack/plugins/index_management/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -776,6 +830,7 @@ ], "path": "x-pack/plugins/index_management/common/lib/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -803,6 +858,7 @@ ], "path": "x-pack/plugins/index_management/common/lib/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -817,6 +873,7 @@ ], "path": "x-pack/plugins/index_management/common/lib/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -834,6 +891,7 @@ "description": [], "path": "x-pack/plugins/index_management/common/types/aliases.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -846,7 +904,8 @@ "[key: string]: any" ], "path": "x-pack/plugins/index_management/common/types/aliases.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -860,6 +919,7 @@ "description": [], "path": "x-pack/plugins/index_management/common/types/component_templates.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -872,7 +932,8 @@ "string[]" ], "path": "x-pack/plugins/index_management/common/types/component_templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -903,6 +964,7 @@ ], "path": "x-pack/plugins/index_management/common/types/component_templates.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -912,7 +974,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/index_management/common/types/component_templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -925,7 +988,8 @@ "{ usedBy: string[]; isManaged: boolean; }" ], "path": "x-pack/plugins/index_management/common/types/component_templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -939,6 +1003,7 @@ "description": [], "path": "x-pack/plugins/index_management/common/types/component_templates.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -948,7 +1013,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/index_management/common/types/component_templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -967,7 +1033,8 @@ } ], "path": "x-pack/plugins/index_management/common/types/component_templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -981,6 +1048,7 @@ "description": [], "path": "x-pack/plugins/index_management/common/types/component_templates.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -990,7 +1058,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/index_management/common/types/component_templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1003,7 +1072,8 @@ "string[]" ], "path": "x-pack/plugins/index_management/common/types/component_templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1013,7 +1083,8 @@ "label": "hasMappings", "description": [], "path": "x-pack/plugins/index_management/common/types/component_templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1023,7 +1094,8 @@ "label": "hasAliases", "description": [], "path": "x-pack/plugins/index_management/common/types/component_templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1033,7 +1105,8 @@ "label": "hasSettings", "description": [], "path": "x-pack/plugins/index_management/common/types/component_templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1043,7 +1116,8 @@ "label": "isManaged", "description": [], "path": "x-pack/plugins/index_management/common/types/component_templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1057,6 +1131,7 @@ "description": [], "path": "x-pack/plugins/index_management/common/types/component_templates.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -1093,7 +1168,8 @@ " | undefined; }" ], "path": "x-pack/plugins/index_management/common/types/component_templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1106,7 +1182,8 @@ "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/component_templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1119,7 +1196,8 @@ "{ [key: string]: any; } | undefined" ], "path": "x-pack/plugins/index_management/common/types/component_templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1133,6 +1211,7 @@ "description": [], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -1142,7 +1221,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1155,7 +1235,8 @@ "TimestampFieldFromEs" ], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1175,7 +1256,8 @@ "[]" ], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1185,7 +1267,8 @@ "label": "generation", "description": [], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1198,7 +1281,8 @@ "\"green\" | \"yellow\" | \"red\"" ], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1208,7 +1292,8 @@ "label": "indexTemplateName", "description": [], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1221,7 +1306,8 @@ "string | undefined" ], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1234,7 +1320,8 @@ "string | undefined" ], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1247,7 +1334,8 @@ "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1260,7 +1348,8 @@ "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1273,7 +1362,8 @@ "MetaFromEs | undefined" ], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1286,7 +1376,8 @@ "PrivilegesFromEs" ], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1296,7 +1387,8 @@ "label": "hidden", "description": [], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1310,6 +1402,7 @@ "description": [], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -1319,7 +1412,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1332,7 +1426,8 @@ "TimestampFieldFromEs" ], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1346,7 +1441,8 @@ "[]" ], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1356,7 +1452,8 @@ "label": "generation", "description": [], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1369,7 +1466,8 @@ "MetaFromEs | undefined" ], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1382,7 +1480,8 @@ "\"GREEN\" | \"YELLOW\" | \"RED\"" ], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1392,7 +1491,8 @@ "label": "template", "description": [], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1405,7 +1505,8 @@ "string | undefined" ], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1418,7 +1519,8 @@ "string | undefined" ], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1431,7 +1533,8 @@ "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1444,7 +1547,8 @@ "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1457,7 +1561,8 @@ "PrivilegesFromEs" ], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1467,7 +1572,8 @@ "label": "hidden", "description": [], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1481,6 +1587,7 @@ "description": [], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -1490,7 +1597,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1500,7 +1608,8 @@ "label": "uuid", "description": [], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1514,6 +1623,7 @@ "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -1526,7 +1636,8 @@ "string | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1539,7 +1650,8 @@ "string | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1549,7 +1661,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1562,7 +1675,8 @@ "string | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1575,7 +1689,8 @@ "string | number | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1588,7 +1703,8 @@ "string | number | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1598,7 +1714,8 @@ "label": "documents", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1608,7 +1725,8 @@ "label": "documents_deleted", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1618,7 +1736,8 @@ "label": "size", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1628,7 +1747,8 @@ "label": "primary_size", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1638,7 +1758,8 @@ "label": "isFrozen", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1648,7 +1769,8 @@ "label": "hidden", "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1661,7 +1783,8 @@ "string | string[]" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1674,7 +1797,8 @@ "string | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1687,7 +1811,8 @@ "[key: string]: any" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1701,6 +1826,7 @@ "description": [], "path": "x-pack/plugins/index_management/common/types/indices.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -1713,7 +1839,8 @@ "Partial | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1726,7 +1853,8 @@ "AnalysisModule | undefined" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1739,7 +1867,8 @@ "[key: string]: any" ], "path": "x-pack/plugins/index_management/common/types/indices.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1755,6 +1884,7 @@ ], "path": "x-pack/plugins/index_management/common/types/templates.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -1767,7 +1897,8 @@ "string[]" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1780,7 +1911,8 @@ "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1800,7 +1932,8 @@ " | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1820,7 +1953,8 @@ " | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1840,7 +1974,8 @@ " | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1853,7 +1988,8 @@ "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1867,6 +2003,7 @@ "description": [], "path": "x-pack/plugins/index_management/common/types/mappings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -1879,7 +2016,8 @@ "[key: string]: any" ], "path": "x-pack/plugins/index_management/common/types/mappings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1895,6 +2033,7 @@ ], "path": "x-pack/plugins/index_management/common/types/templates.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -1904,7 +2043,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1917,7 +2057,8 @@ "string[]" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1954,7 +2095,8 @@ " | undefined; } | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1967,7 +2109,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1980,7 +2123,8 @@ "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -1993,7 +2137,8 @@ "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2006,7 +2151,8 @@ "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2019,7 +2165,8 @@ "{ name: string; } | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2032,7 +2179,8 @@ "{ [key: string]: any; } | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2045,7 +2193,8 @@ "{ [key: string]: any; hidden?: boolean | undefined; } | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2066,7 +2215,8 @@ "; hasDatastream: boolean; isLegacy?: boolean | undefined; }" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2080,6 +2230,7 @@ "description": [], "path": "x-pack/plugins/index_management/common/types/templates.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -2089,7 +2240,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2108,7 +2260,8 @@ } ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2124,6 +2277,7 @@ ], "path": "x-pack/plugins/index_management/common/types/templates.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -2133,7 +2287,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2146,7 +2301,8 @@ "string[]" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2159,7 +2315,8 @@ "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2172,7 +2329,8 @@ "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2185,7 +2343,8 @@ "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2195,7 +2354,8 @@ "label": "hasSettings", "description": [], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2205,7 +2365,8 @@ "label": "hasAliases", "description": [], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2215,7 +2376,8 @@ "label": "hasMappings", "description": [], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2228,7 +2390,8 @@ "{ name: string; } | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2249,7 +2412,8 @@ "; hasDatastream: boolean; isLegacy?: boolean | undefined; }" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2265,6 +2429,7 @@ ], "path": "x-pack/plugins/index_management/common/types/templates.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "indexManagement", @@ -2277,7 +2442,8 @@ "string[]" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2314,7 +2480,8 @@ " | undefined; } | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2327,7 +2494,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2340,7 +2508,8 @@ "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2353,7 +2522,8 @@ "number | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2366,7 +2536,8 @@ "{ [key: string]: any; } | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "indexManagement", @@ -2379,7 +2550,8 @@ "{} | undefined" ], "path": "x-pack/plugins/index_management/common/types/templates.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2399,6 +2571,7 @@ ], "path": "x-pack/plugins/index_management/common/constants/api_base_path.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2413,6 +2586,7 @@ ], "path": "x-pack/plugins/index_management/common/constants/base_path.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2427,6 +2601,7 @@ ], "path": "x-pack/plugins/index_management/common/types/data_streams.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2441,6 +2616,7 @@ ], "path": "x-pack/plugins/index_management/common/constants/plugin.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2455,6 +2631,7 @@ ], "path": "x-pack/plugins/index_management/common/types/templates.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/index_management.mdx b/api_docs/index_management.mdx index 270b8a847f2a5..15c82e01c6a32 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'indexManagement'] --- import indexManagementObj from './index_management.devdocs.json'; diff --git a/api_docs/infra.devdocs.json b/api_docs/infra.devdocs.json index 9fb1cc6dedd69..8982b332b7913 100644 --- a/api_docs/infra.devdocs.json +++ b/api_docs/infra.devdocs.json @@ -23,6 +23,7 @@ ], "path": "x-pack/plugins/infra/public/components/log_stream/lazy_log_stream_wrapper.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "infra", @@ -42,6 +43,7 @@ ], "path": "x-pack/plugins/infra/public/components/log_stream/lazy_log_stream_wrapper.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -69,6 +71,7 @@ ], "path": "x-pack/plugins/infra/public/components/log_stream/log_stream.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "infra", @@ -81,7 +84,8 @@ "string | number | undefined" ], "path": "x-pack/plugins/infra/public/components/log_stream/log_stream.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -97,6 +101,7 @@ "description": [], "path": "x-pack/plugins/infra/public/lib/lib.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -113,6 +118,7 @@ ], "path": "x-pack/plugins/infra/public/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -126,6 +132,7 @@ "description": [], "path": "x-pack/plugins/infra/common/formatters/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "infra", @@ -139,6 +146,7 @@ ], "path": "x-pack/plugins/infra/common/formatters/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -149,7 +157,8 @@ "label": "val", "description": [], "path": "x-pack/plugins/infra/common/formatters/number.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -167,6 +176,7 @@ ], "path": "x-pack/plugins/infra/common/formatters/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -177,7 +187,8 @@ "label": "bytes", "description": [], "path": "x-pack/plugins/infra/common/formatters/bytes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -195,6 +206,7 @@ ], "path": "x-pack/plugins/infra/common/formatters/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -205,7 +217,8 @@ "label": "bytes", "description": [], "path": "x-pack/plugins/infra/common/formatters/bytes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -223,6 +236,7 @@ ], "path": "x-pack/plugins/infra/common/formatters/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -233,7 +247,8 @@ "label": "bytes", "description": [], "path": "x-pack/plugins/infra/common/formatters/bytes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -249,6 +264,7 @@ ], "path": "x-pack/plugins/infra/common/formatters/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -259,7 +275,8 @@ "label": "val", "description": [], "path": "x-pack/plugins/infra/common/formatters/percent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -275,6 +292,7 @@ ], "path": "x-pack/plugins/infra/common/formatters/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -285,7 +303,8 @@ "label": "val", "description": [], "path": "x-pack/plugins/infra/common/formatters/high_precision.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -302,6 +321,7 @@ "description": [], "path": "x-pack/plugins/infra/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "infra", @@ -314,7 +334,8 @@ "LogViewsServiceStart" ], "path": "x-pack/plugins/infra/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "infra", @@ -332,6 +353,7 @@ ], "path": "x-pack/plugins/infra/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "infra", @@ -348,6 +370,7 @@ ], "path": "x-pack/plugins/infra/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -369,6 +392,7 @@ ], "path": "x-pack/plugins/infra/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "infra", @@ -385,6 +409,7 @@ ], "path": "x-pack/plugins/infra/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -406,6 +431,7 @@ ], "path": "x-pack/plugins/infra/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "infra", @@ -422,6 +448,7 @@ ], "path": "x-pack/plugins/infra/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -445,6 +472,7 @@ "description": [], "path": "x-pack/plugins/infra/common/plugin_config_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "infra", @@ -457,7 +485,8 @@ "{ inventory_threshold: { group_by_page_size: number; }; metric_threshold: { group_by_page_size: number; }; }" ], "path": "x-pack/plugins/infra/common/plugin_config_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "infra", @@ -470,7 +499,8 @@ "{ compositeSize: number; }" ], "path": "x-pack/plugins/infra/common/plugin_config_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "infra", @@ -483,7 +513,8 @@ "{ default?: { fields?: { message?: string[] | undefined; } | undefined; } | undefined; } | undefined" ], "path": "x-pack/plugins/infra/common/plugin_config_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -505,6 +536,7 @@ ], "path": "x-pack/plugins/infra/server/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -518,6 +550,7 @@ "description": [], "path": "x-pack/plugins/infra/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "infra", @@ -533,6 +566,7 @@ ], "path": "x-pack/plugins/infra/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "infra", @@ -546,6 +580,7 @@ ], "path": "x-pack/plugins/infra/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -560,6 +595,7 @@ ], "path": "x-pack/plugins/infra/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -576,7 +612,8 @@ "LogViewsServiceSetup" ], "path": "x-pack/plugins/infra/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -591,6 +628,7 @@ "description": [], "path": "x-pack/plugins/infra/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "infra", @@ -603,7 +641,8 @@ "LogViewsServiceStart" ], "path": "x-pack/plugins/infra/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "infra", @@ -619,6 +658,7 @@ ], "path": "x-pack/plugins/infra/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "infra", @@ -632,6 +672,7 @@ ], "path": "x-pack/plugins/infra/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -646,6 +687,7 @@ ], "path": "x-pack/plugins/infra/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], diff --git a/api_docs/infra.mdx b/api_docs/infra.mdx index 7b5c9c58bda66..5926c936d8864 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'infra'] --- import infraObj from './infra.devdocs.json'; diff --git a/api_docs/inspector.devdocs.json b/api_docs/inspector.devdocs.json index 1aac13b985a6d..98bf271e80e44 100644 --- a/api_docs/inspector.devdocs.json +++ b/api_docs/inspector.devdocs.json @@ -45,6 +45,7 @@ ], "path": "src/plugins/inspector/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -58,7 +59,8 @@ " | undefined" ], "path": "src/plugins/inspector/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -72,6 +74,7 @@ ], "path": "src/plugins/inspector/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -92,6 +95,7 @@ ], "path": "src/plugins/inspector/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -127,6 +131,7 @@ ], "path": "src/plugins/inspector/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -147,6 +152,7 @@ ], "path": "src/plugins/inspector/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -200,6 +206,7 @@ ], "path": "src/plugins/inspector/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -219,6 +226,7 @@ ], "path": "src/plugins/inspector/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -233,6 +241,7 @@ ], "path": "src/plugins/inspector/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -250,6 +259,7 @@ ], "path": "src/plugins/inspector/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -279,6 +289,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -292,6 +303,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -320,6 +332,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -335,6 +348,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -351,6 +365,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -367,6 +382,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -386,6 +402,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -401,6 +418,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -414,6 +432,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -439,6 +458,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -456,6 +476,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -469,6 +490,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -488,6 +510,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -502,6 +525,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -526,6 +550,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -539,6 +564,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -571,6 +597,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -590,6 +617,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -617,6 +645,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -636,6 +665,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -650,6 +680,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -669,6 +700,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -682,6 +714,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -701,6 +734,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -714,6 +748,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -736,6 +771,7 @@ ], "path": "src/plugins/inspector/common/adapters/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -755,7 +791,8 @@ " | undefined" ], "path": "src/plugins/inspector/common/adapters/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -768,7 +805,8 @@ "[key: string]: any" ], "path": "src/plugins/inspector/common/adapters/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -787,6 +825,7 @@ ], "path": "src/plugins/inspector/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -799,7 +838,8 @@ "string | undefined" ], "path": "src/plugins/inspector/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -812,7 +852,8 @@ "unknown" ], "path": "src/plugins/inspector/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -830,6 +871,7 @@ ], "path": "src/plugins/inspector/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -874,7 +916,8 @@ ">>" ], "path": "src/plugins/inspector/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -887,7 +930,8 @@ "string | undefined" ], "path": "src/plugins/inspector/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -900,7 +944,8 @@ "number | undefined" ], "path": "src/plugins/inspector/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -922,6 +967,7 @@ ], "path": "src/plugins/inspector/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -941,6 +987,7 @@ ], "path": "src/plugins/inspector/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -954,7 +1001,8 @@ "label": "title", "description": [], "path": "src/plugins/inspector/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -980,6 +1028,7 @@ ], "path": "src/plugins/inspector/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -994,7 +1043,8 @@ "TAdapters" ], "path": "src/plugins/inspector/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -1006,7 +1056,8 @@ "\nThe title that the inspector is currently using e.g. a visualization name." ], "path": "src/plugins/inspector/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -1021,7 +1072,8 @@ "unknown" ], "path": "src/plugins/inspector/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1046,6 +1098,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -1055,7 +1108,8 @@ "label": "id", "description": [], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -1065,7 +1119,8 @@ "label": "name", "description": [], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -1078,7 +1133,8 @@ "object | undefined" ], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -1092,7 +1148,8 @@ " | undefined" ], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -1102,7 +1159,8 @@ "label": "startTime", "description": [], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -1122,7 +1180,8 @@ " | undefined" ], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -1141,7 +1200,8 @@ } ], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -1154,7 +1214,8 @@ "number | undefined" ], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1168,6 +1229,7 @@ "description": [], "path": "src/plugins/inspector/common/adapters/request/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -1177,7 +1239,8 @@ "label": "label", "description": [], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -1190,7 +1253,8 @@ "string | undefined" ], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -1203,7 +1267,8 @@ "any" ], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1217,6 +1282,7 @@ "description": [], "path": "src/plugins/inspector/common/adapters/request/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -1236,7 +1302,8 @@ } ], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1254,6 +1321,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1270,6 +1338,7 @@ ], "path": "src/plugins/inspector/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1283,6 +1352,7 @@ "description": [], "path": "src/plugins/inspector/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -1304,6 +1374,7 @@ ], "path": "src/plugins/inspector/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1323,7 +1394,8 @@ } ], "path": "src/plugins/inspector/public/view_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1340,7 +1412,8 @@ "; }" ], "path": "src/plugins/inspector/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -1355,6 +1428,7 @@ "description": [], "path": "src/plugins/inspector/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -1378,6 +1452,7 @@ ], "path": "src/plugins/inspector/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -1400,6 +1475,7 @@ ], "path": "src/plugins/inspector/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1441,6 +1517,7 @@ ], "path": "src/plugins/inspector/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -1462,6 +1539,7 @@ ], "path": "src/plugins/inspector/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1485,6 +1563,7 @@ ], "path": "src/plugins/inspector/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1530,6 +1609,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -1543,6 +1623,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1571,6 +1652,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -1586,6 +1668,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1602,6 +1685,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1618,6 +1702,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1637,6 +1722,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1652,6 +1738,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -1665,6 +1752,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1690,6 +1778,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1707,6 +1796,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -1720,6 +1810,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -1739,6 +1830,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1753,6 +1845,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1777,6 +1870,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -1790,6 +1884,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1822,6 +1917,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -1841,6 +1937,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1868,6 +1965,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -1887,6 +1985,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1901,6 +2000,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1920,6 +2020,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -1933,6 +2034,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1952,6 +2054,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -1965,6 +2068,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/request_responder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1987,6 +2091,7 @@ ], "path": "src/plugins/inspector/common/adapters/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -2006,7 +2111,8 @@ " | undefined" ], "path": "src/plugins/inspector/common/adapters/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -2019,7 +2125,8 @@ "[key: string]: any" ], "path": "src/plugins/inspector/common/adapters/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2044,6 +2151,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -2053,7 +2161,8 @@ "label": "id", "description": [], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -2063,7 +2172,8 @@ "label": "name", "description": [], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -2076,7 +2186,8 @@ "object | undefined" ], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -2090,7 +2201,8 @@ " | undefined" ], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -2100,7 +2212,8 @@ "label": "startTime", "description": [], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -2120,7 +2233,8 @@ " | undefined" ], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -2139,7 +2253,8 @@ } ], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -2152,7 +2267,8 @@ "number | undefined" ], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2166,6 +2282,7 @@ "description": [], "path": "src/plugins/inspector/common/adapters/request/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -2175,7 +2292,8 @@ "label": "label", "description": [], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -2188,7 +2306,8 @@ "string | undefined" ], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "inspector", @@ -2201,7 +2320,8 @@ "any" ], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2215,6 +2335,7 @@ "description": [], "path": "src/plugins/inspector/common/adapters/request/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "inspector", @@ -2234,7 +2355,8 @@ } ], "path": "src/plugins/inspector/common/adapters/request/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2252,6 +2374,7 @@ ], "path": "src/plugins/inspector/common/adapters/request/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/inspector.mdx b/api_docs/inspector.mdx index bf4099a93cda9..6935d2be13e2d 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'inspector'] --- import inspectorObj from './inspector.devdocs.json'; diff --git a/api_docs/interactive_setup.devdocs.json b/api_docs/interactive_setup.devdocs.json index c5f798c05b83c..6ca84a4af9baa 100644 --- a/api_docs/interactive_setup.devdocs.json +++ b/api_docs/interactive_setup.devdocs.json @@ -29,6 +29,7 @@ "description": [], "path": "src/plugins/interactive_setup/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "interactiveSetup", @@ -41,7 +42,8 @@ "{ C?: string | undefined; ST?: string | undefined; L?: string | undefined; O?: string | undefined; OU?: string | undefined; CN?: string | undefined; }" ], "path": "src/plugins/interactive_setup/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "interactiveSetup", @@ -51,7 +53,8 @@ "label": "valid_from", "description": [], "path": "src/plugins/interactive_setup/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "interactiveSetup", @@ -61,7 +64,8 @@ "label": "valid_to", "description": [], "path": "src/plugins/interactive_setup/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "interactiveSetup", @@ -74,7 +78,8 @@ "{ C?: string | undefined; ST?: string | undefined; L?: string | undefined; O?: string | undefined; OU?: string | undefined; CN?: string | undefined; }" ], "path": "src/plugins/interactive_setup/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "interactiveSetup", @@ -84,7 +89,8 @@ "label": "fingerprint256", "description": [], "path": "src/plugins/interactive_setup/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "interactiveSetup", @@ -94,7 +100,8 @@ "label": "raw", "description": [], "path": "src/plugins/interactive_setup/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -110,6 +117,7 @@ ], "path": "src/plugins/interactive_setup/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "interactiveSetup", @@ -121,7 +129,8 @@ "\nThe version of the Elasticsearch node that generated this enrollment token." ], "path": "src/plugins/interactive_setup/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "interactiveSetup", @@ -136,7 +145,8 @@ "readonly string[]" ], "path": "src/plugins/interactive_setup/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "interactiveSetup", @@ -148,7 +158,8 @@ "\nThe SHA-256 fingerprint of the CA certificate that is used to sign the certificate that the Elasticsearch node presents for HTTP over TLS connections." ], "path": "src/plugins/interactive_setup/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "interactiveSetup", @@ -160,7 +171,8 @@ "\nAn Elasticsearch API key (not encoded) that can be used as credentials authorized to call the enrollment related APIs in Elasticsearch." ], "path": "src/plugins/interactive_setup/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -174,6 +186,7 @@ "description": [], "path": "src/plugins/interactive_setup/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "interactiveSetup", @@ -185,7 +198,8 @@ "\nIndicates whether the cluster requires authentication." ], "path": "src/plugins/interactive_setup/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "interactiveSetup", @@ -207,7 +221,8 @@ "[] | undefined" ], "path": "src/plugins/interactive_setup/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -221,6 +236,7 @@ "description": [], "path": "src/plugins/interactive_setup/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "interactiveSetup", @@ -241,7 +257,8 @@ } ], "path": "src/plugins/interactive_setup/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "interactiveSetup", @@ -253,7 +270,8 @@ "\nIndicates whether Kibana is currently on hold and cannot proceed to `setup` yet." ], "path": "src/plugins/interactive_setup/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -271,6 +289,7 @@ ], "path": "src/plugins/interactive_setup/common/elasticsearch_connection_status.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -287,6 +306,7 @@ ], "path": "src/plugins/interactive_setup/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -301,6 +321,7 @@ ], "path": "src/plugins/interactive_setup/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -315,6 +336,7 @@ ], "path": "src/plugins/interactive_setup/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -329,6 +351,7 @@ ], "path": "src/plugins/interactive_setup/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -343,6 +366,7 @@ ], "path": "src/plugins/interactive_setup/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -357,6 +381,7 @@ ], "path": "src/plugins/interactive_setup/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -371,6 +396,7 @@ ], "path": "src/plugins/interactive_setup/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -385,6 +411,7 @@ ], "path": "src/plugins/interactive_setup/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -399,6 +426,7 @@ ], "path": "src/plugins/interactive_setup/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/interactive_setup.mdx b/api_docs/interactive_setup.mdx index fada03848b9cf..8f4d5abc9e06a 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'interactiveSetup'] --- import interactiveSetupObj from './interactive_setup.devdocs.json'; diff --git a/api_docs/kbn_ace.devdocs.json b/api_docs/kbn_ace.devdocs.json index e61625f00b6ae..31b9c39264e4d 100644 --- a/api_docs/kbn_ace.devdocs.json +++ b/api_docs/kbn_ace.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/kbn-ace/src/ace/modes/lexer_rules/x_json_highlight_rules.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ace", @@ -44,6 +45,7 @@ ], "path": "packages/kbn-ace/src/ace/modes/lexer_rules/x_json_highlight_rules.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -58,6 +60,7 @@ ], "path": "packages/kbn-ace/src/ace/modes/lexer_rules/x_json_highlight_rules.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -76,6 +79,7 @@ ], "path": "packages/kbn-ace/src/ace/modes/lexer_rules/elasticsearch_sql_highlight_rules.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -94,6 +98,7 @@ ], "path": "packages/kbn-ace/src/ace/modes/x_json/x_json.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ace", @@ -107,6 +112,7 @@ ], "path": "packages/kbn-ace/src/ace/modes/x_json/x_json.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -125,6 +131,7 @@ ], "path": "packages/kbn-ace/src/ace/modes/lexer_rules/script_highlight_rules.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ace", @@ -138,6 +145,7 @@ ], "path": "packages/kbn-ace/src/ace/modes/lexer_rules/script_highlight_rules.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -156,6 +164,7 @@ ], "path": "packages/kbn-ace/src/ace/modes/lexer_rules/x_json_highlight_rules.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ace", @@ -169,6 +178,7 @@ ], "path": "packages/kbn-ace/src/ace/modes/lexer_rules/x_json_highlight_rules.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -191,6 +201,7 @@ ], "path": "packages/kbn-ace/src/ace/modes/x_json/x_json.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_ace.mdx b/api_docs/kbn_ace.mdx index ad1e1862df361..121e38701329c 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ace'] --- import kbnAceObj from './kbn_ace.devdocs.json'; diff --git a/api_docs/kbn_aiops_components.devdocs.json b/api_docs/kbn_aiops_components.devdocs.json index f72706ba13e58..04d030fd8fcee 100644 --- a/api_docs/kbn_aiops_components.devdocs.json +++ b/api_docs/kbn_aiops_components.devdocs.json @@ -31,6 +31,7 @@ ], "path": "x-pack/packages/ml/aiops_components/src/dual_brush/dual_brush.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/aiops-components", @@ -44,6 +45,7 @@ ], "path": "x-pack/packages/ml/aiops_components/src/dual_brush/dual_brush.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -62,6 +64,7 @@ ], "path": "x-pack/packages/ml/aiops_components/src/dual_brush/dual_brush_annotation.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/aiops-components", @@ -75,6 +78,7 @@ ], "path": "x-pack/packages/ml/aiops_components/src/dual_brush/dual_brush_annotation.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -93,6 +97,7 @@ ], "path": "x-pack/packages/ml/aiops_components/src/progress_controls/progress_controls.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/aiops-components", @@ -106,6 +111,7 @@ ], "path": "x-pack/packages/ml/aiops_components/src/progress_controls/progress_controls.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_aiops_components.mdx b/api_docs/kbn_aiops_components.mdx index eb40373a982c1..6d5933c4337e9 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/aiops-components'] --- import kbnAiopsComponentsObj from './kbn_aiops_components.devdocs.json'; diff --git a/api_docs/kbn_aiops_utils.devdocs.json b/api_docs/kbn_aiops_utils.devdocs.json index 5b96cc8b8b7c7..3a2e48949a52b 100644 --- a/api_docs/kbn_aiops_utils.devdocs.json +++ b/api_docs/kbn_aiops_utils.devdocs.json @@ -48,6 +48,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/get_window_parameters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/aiops-utils", @@ -69,6 +70,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/get_window_parameters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -85,6 +87,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/get_window_parameters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -114,6 +117,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/get_window_parameters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/aiops-utils", @@ -129,6 +133,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/get_window_parameters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -145,6 +150,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/get_window_parameters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -161,6 +167,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/get_window_parameters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -185,6 +192,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/stream_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/aiops-utils", @@ -200,6 +208,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/stream_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -214,6 +223,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/stream_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -238,6 +248,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/stream_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/aiops-utils", @@ -253,6 +264,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/stream_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -267,6 +279,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/stream_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -287,6 +300,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/aiops-utils", @@ -300,6 +314,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -314,6 +329,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -332,6 +348,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/aiops-utils", @@ -345,6 +362,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -359,6 +377,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -370,6 +389,7 @@ "description": [], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/aiops-utils", @@ -383,6 +403,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -396,7 +417,8 @@ "S" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/aiops-utils", @@ -409,7 +431,8 @@ "A" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -424,7 +447,8 @@ "I[\"reducer\"] extends React.Reducer ? S : never" ], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -446,6 +470,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/aiops-utils", @@ -461,6 +486,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -477,6 +503,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -488,6 +515,7 @@ "description": [], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/aiops-utils", @@ -501,6 +529,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -514,7 +543,8 @@ "S" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/aiops-utils", @@ -527,7 +557,8 @@ "A" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -542,7 +573,8 @@ "I[\"reducer\"] extends React.Reducer ? S : never" ], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -565,6 +597,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/aiops-utils", @@ -574,7 +607,8 @@ "label": "endpoint", "description": [], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/aiops-utils", @@ -587,7 +621,8 @@ "object" ], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/aiops-utils", @@ -601,6 +636,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -614,7 +650,8 @@ "S" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/aiops-utils", @@ -627,7 +664,8 @@ "A" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -645,6 +683,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/aiops-utils", @@ -654,7 +693,8 @@ "label": "endpoint", "description": [], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/aiops-utils", @@ -667,7 +707,8 @@ "object" ], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/aiops-utils", @@ -681,6 +722,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/use_fetch_stream.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -694,7 +736,8 @@ "S" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/aiops-utils", @@ -707,7 +750,8 @@ "A" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -725,6 +769,7 @@ ], "path": "x-pack/packages/ml/aiops_utils/src/get_window_parameters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/aiops-utils", @@ -734,7 +779,8 @@ "label": "baselineMin", "description": [], "path": "x-pack/packages/ml/aiops_utils/src/get_window_parameters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/aiops-utils", @@ -744,7 +790,8 @@ "label": "baselineMax", "description": [], "path": "x-pack/packages/ml/aiops_utils/src/get_window_parameters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/aiops-utils", @@ -754,7 +801,8 @@ "label": "deviationMin", "description": [], "path": "x-pack/packages/ml/aiops_utils/src/get_window_parameters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/aiops-utils", @@ -764,7 +812,8 @@ "label": "deviationMax", "description": [], "path": "x-pack/packages/ml/aiops_utils/src/get_window_parameters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_aiops_utils.mdx b/api_docs/kbn_aiops_utils.mdx index 8c607c84520a7..54ba172cc6220 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/aiops-utils'] --- import kbnAiopsUtilsObj from './kbn_aiops_utils.devdocs.json'; diff --git a/api_docs/kbn_alerts.devdocs.json b/api_docs/kbn_alerts.devdocs.json index c5b3ff62837f2..d31f88657c06e 100644 --- a/api_docs/kbn_alerts.devdocs.json +++ b/api_docs/kbn_alerts.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/kbn-alerts/src/features_no_permissions/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/alerts", @@ -44,6 +45,7 @@ ], "path": "packages/kbn-alerts/src/features_no_permissions/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -69,6 +71,7 @@ ], "path": "packages/kbn-alerts/src/hooks/use_get_alerts_permissions/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/alerts", @@ -82,6 +85,7 @@ ], "path": "packages/kbn-alerts/src/hooks/use_get_alerts_permissions/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -96,6 +100,7 @@ ], "path": "packages/kbn-alerts/src/hooks/use_get_alerts_permissions/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -113,6 +118,7 @@ "description": [], "path": "packages/kbn-alerts/src/hooks/use_get_alerts_permissions/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/alerts", @@ -122,7 +128,8 @@ "label": "crud", "description": [], "path": "packages/kbn-alerts/src/hooks/use_get_alerts_permissions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/alerts", @@ -132,7 +139,8 @@ "label": "read", "description": [], "path": "packages/kbn-alerts/src/hooks/use_get_alerts_permissions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/alerts", @@ -142,7 +150,8 @@ "label": "loading", "description": [], "path": "packages/kbn-alerts/src/hooks/use_get_alerts_permissions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_alerts.mdx b/api_docs/kbn_alerts.mdx index ea63d7589fc45..2c6d1d0c39de0 100644 --- a/api_docs/kbn_alerts.mdx +++ b/api_docs/kbn_alerts.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-alerts title: "@kbn/alerts" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/alerts plugin -date: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerts'] --- import kbnAlertsObj from './kbn_alerts.devdocs.json'; diff --git a/api_docs/kbn_analytics.devdocs.json b/api_docs/kbn_analytics.devdocs.json index a0f43f867fc4a..22f3231c8f3c1 100644 --- a/api_docs/kbn_analytics.devdocs.json +++ b/api_docs/kbn_analytics.devdocs.json @@ -27,6 +27,7 @@ "description": [], "path": "packages/kbn-analytics/src/application_usage_tracker.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -40,6 +41,7 @@ ], "path": "packages/kbn-analytics/src/application_usage_tracker.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -59,6 +61,7 @@ ], "path": "packages/kbn-analytics/src/application_usage_tracker.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -76,6 +79,7 @@ ], "path": "packages/kbn-analytics/src/application_usage_tracker.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -89,6 +93,7 @@ ], "path": "packages/kbn-analytics/src/application_usage_tracker.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -106,6 +111,7 @@ ], "path": "packages/kbn-analytics/src/application_usage_tracker.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -119,6 +125,7 @@ ], "path": "packages/kbn-analytics/src/application_usage_tracker.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -136,6 +143,7 @@ ], "path": "packages/kbn-analytics/src/application_usage_tracker.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -151,6 +159,7 @@ ], "path": "packages/kbn-analytics/src/application_usage_tracker.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -166,6 +175,7 @@ ], "path": "packages/kbn-analytics/src/application_usage_tracker.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -179,6 +189,7 @@ ], "path": "packages/kbn-analytics/src/application_usage_tracker.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -196,6 +207,7 @@ ], "path": "packages/kbn-analytics/src/application_usage_tracker.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -209,6 +221,7 @@ ], "path": "packages/kbn-analytics/src/application_usage_tracker.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -226,6 +239,7 @@ ], "path": "packages/kbn-analytics/src/application_usage_tracker.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -241,6 +255,7 @@ ], "path": "packages/kbn-analytics/src/application_usage_tracker.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -256,6 +271,7 @@ ], "path": "packages/kbn-analytics/src/application_usage_tracker.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -269,6 +285,7 @@ ], "path": "packages/kbn-analytics/src/application_usage_tracker.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -286,6 +303,7 @@ "description": [], "path": "packages/kbn-analytics/src/reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -295,7 +313,8 @@ "label": "checkInterval", "description": [], "path": "packages/kbn-analytics/src/reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics", @@ -309,6 +328,7 @@ ], "path": "packages/kbn-analytics/src/reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -328,6 +348,7 @@ ], "path": "packages/kbn-analytics/src/reporter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -345,6 +366,7 @@ ], "path": "packages/kbn-analytics/src/reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -360,6 +382,7 @@ ], "path": "packages/kbn-analytics/src/reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -373,6 +396,7 @@ ], "path": "packages/kbn-analytics/src/reporter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -387,6 +411,7 @@ ], "path": "packages/kbn-analytics/src/reporter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -401,6 +426,7 @@ ], "path": "packages/kbn-analytics/src/reporter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -415,6 +441,7 @@ ], "path": "packages/kbn-analytics/src/reporter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -432,6 +459,7 @@ ], "path": "packages/kbn-analytics/src/reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -445,6 +473,7 @@ ], "path": "packages/kbn-analytics/src/reporter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -464,6 +493,7 @@ ], "path": "packages/kbn-analytics/src/reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -477,6 +507,7 @@ ], "path": "packages/kbn-analytics/src/reporter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -494,6 +525,7 @@ ], "path": "packages/kbn-analytics/src/reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -509,6 +541,7 @@ "description": [], "path": "packages/kbn-analytics/src/report.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -518,7 +551,8 @@ "label": "REPORT_VERSION", "description": [], "path": "packages/kbn-analytics/src/report.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics", @@ -537,7 +571,8 @@ } ], "path": "packages/kbn-analytics/src/report.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics", @@ -551,6 +586,7 @@ ], "path": "packages/kbn-analytics/src/report.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -571,6 +607,7 @@ ], "path": "packages/kbn-analytics/src/report.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -595,6 +632,7 @@ ], "path": "packages/kbn-analytics/src/report.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -610,6 +648,7 @@ ], "path": "packages/kbn-analytics/src/report.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -625,6 +664,7 @@ ], "path": "packages/kbn-analytics/src/report.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -652,6 +692,7 @@ ], "path": "packages/kbn-analytics/src/report.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -668,6 +709,7 @@ ], "path": "packages/kbn-analytics/src/report.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -687,6 +729,7 @@ ], "path": "packages/kbn-analytics/src/report.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -700,6 +743,7 @@ ], "path": "packages/kbn-analytics/src/report.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -720,6 +764,7 @@ "description": [], "path": "packages/kbn-analytics/src/report.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -732,7 +777,8 @@ "3" ], "path": "packages/kbn-analytics/src/report.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics", @@ -745,7 +791,8 @@ "Record | undefined" ], "path": "packages/kbn-analytics/src/report.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics", @@ -766,7 +813,8 @@ ".USER_AGENT; appName: string; }> | undefined" ], "path": "packages/kbn-analytics/src/report.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics", @@ -779,7 +827,8 @@ "Record | undefined" ], "path": "packages/kbn-analytics/src/report.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -793,6 +842,7 @@ "description": [], "path": "packages/kbn-analytics/src/reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -814,6 +864,7 @@ ], "path": "packages/kbn-analytics/src/reporter.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -833,7 +884,8 @@ } ], "path": "packages/kbn-analytics/src/reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -863,7 +915,8 @@ ", void> | undefined" ], "path": "packages/kbn-analytics/src/reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics", @@ -876,7 +929,8 @@ "number | undefined" ], "path": "packages/kbn-analytics/src/reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics", @@ -889,7 +943,8 @@ "boolean | undefined" ], "path": "packages/kbn-analytics/src/reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics", @@ -902,7 +957,8 @@ "string | undefined" ], "path": "packages/kbn-analytics/src/reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -926,6 +982,7 @@ ], "path": "packages/kbn-analytics/src/storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -939,6 +996,7 @@ ], "path": "packages/kbn-analytics/src/storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -952,6 +1010,7 @@ ], "path": "packages/kbn-analytics/src/storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -969,6 +1028,7 @@ ], "path": "packages/kbn-analytics/src/storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -982,6 +1042,7 @@ ], "path": "packages/kbn-analytics/src/storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -996,6 +1057,7 @@ ], "path": "packages/kbn-analytics/src/storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1013,6 +1075,7 @@ ], "path": "packages/kbn-analytics/src/storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -1026,6 +1089,7 @@ ], "path": "packages/kbn-analytics/src/storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1043,6 +1107,7 @@ ], "path": "packages/kbn-analytics/src/storage.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1058,6 +1123,7 @@ "description": [], "path": "packages/kbn-analytics/src/metrics/user_agent.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics", @@ -1077,7 +1143,8 @@ ".USER_AGENT" ], "path": "packages/kbn-analytics/src/metrics/user_agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics", @@ -1087,7 +1154,8 @@ "label": "appName", "description": [], "path": "packages/kbn-analytics/src/metrics/user_agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics", @@ -1097,7 +1165,8 @@ "label": "userAgent", "description": [], "path": "packages/kbn-analytics/src/metrics/user_agent.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1113,6 +1182,7 @@ "description": [], "path": "packages/kbn-analytics/src/metrics/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1137,6 +1207,7 @@ ], "path": "packages/kbn-analytics/src/reporter.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1156,7 +1227,8 @@ } ], "path": "packages/kbn-analytics/src/reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1173,6 +1245,7 @@ ], "path": "packages/kbn-analytics/src/metrics/ui_counter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_analytics.mdx b/api_docs/kbn_analytics.mdx index 8198f9302590e..7ec9a3e17c035 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: 2022-09-05 +date: 2022-09-08 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 b72ad3daaed89..e9f518ba24c3f 100644 --- a/api_docs/kbn_analytics_client.devdocs.json +++ b/api_docs/kbn_analytics_client.devdocs.json @@ -48,6 +48,7 @@ ], "path": "packages/analytics/client/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -69,6 +70,7 @@ ], "path": "packages/analytics/client/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -88,6 +90,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -99,7 +102,8 @@ "\nBoolean indicating if it's running in developer mode." ], "path": "packages/analytics/client/src/analytics_client/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -114,7 +118,8 @@ "\"staging\" | \"production\"" ], "path": "packages/analytics/client/src/analytics_client/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -129,7 +134,8 @@ "Logger" ], "path": "packages/analytics/client/src/analytics_client/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -155,6 +161,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -166,7 +173,8 @@ "\nThe name of the provider." ], "path": "packages/analytics/client/src/analytics_client/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -182,7 +190,8 @@ "" ], "path": "packages/analytics/client/src/analytics_client/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -205,7 +214,8 @@ "; }" ], "path": "packages/analytics/client/src/analytics_client/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -231,6 +241,7 @@ ], "path": "packages/analytics/client/src/events/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -242,7 +253,8 @@ "\nThe time the event was generated in ISO format." ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -254,7 +266,8 @@ "\nThe event type." ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -269,7 +282,8 @@ "Properties" ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -290,7 +304,8 @@ } ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -306,6 +321,7 @@ ], "path": "packages/analytics/client/src/events/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -320,7 +336,8 @@ "string | undefined" ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -335,7 +352,8 @@ "string | undefined" ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -350,7 +368,8 @@ "string | undefined" ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -365,7 +384,8 @@ "string | undefined" ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -380,7 +400,8 @@ "string | undefined" ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -395,7 +416,8 @@ "boolean | undefined" ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -410,7 +432,8 @@ "string | undefined" ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -425,7 +448,8 @@ "string | undefined" ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -440,7 +464,8 @@ "string | undefined" ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -455,7 +480,8 @@ "string | undefined" ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -470,7 +496,8 @@ "[key: string]: unknown" ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -496,6 +523,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -507,7 +535,8 @@ "\nThe event type's unique name." ], "path": "packages/analytics/client/src/analytics_client/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -530,7 +559,8 @@ "; }" ], "path": "packages/analytics/client/src/analytics_client/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -546,12 +576,15 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", "id": "def-common.IAnalyticsClient.reportEvent", "type": "Function", - "tags": [], + "tags": [ + "track-adoption" + ], "label": "reportEvent", "description": [ "\nReports a telemetry event." @@ -561,6 +594,8 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": true, + "references": [], "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -576,6 +611,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -592,6 +628,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -619,6 +656,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -641,6 +679,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -684,6 +723,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -706,6 +746,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -722,6 +763,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -745,6 +787,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -772,6 +815,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -793,6 +837,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -802,10 +847,12 @@ "parentPluginId": "@kbn/analytics-client", "id": "def-common.IAnalyticsClient.registerContextProvider", "type": "Function", - "tags": [], + "tags": [ + "track-adoption" + ], "label": "registerContextProvider", "description": [ - "\nRegisters the context provider to enrich the any reported events." + "\nRegisters the context provider to enrich any reported events." ], "signature": [ "(contextProviderOpts: ", @@ -820,6 +867,8 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": true, + "references": [], "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -842,6 +891,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -861,6 +911,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -876,6 +927,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -903,7 +955,8 @@ ">" ], "path": "packages/analytics/client/src/analytics_client/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -919,6 +972,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -936,6 +990,7 @@ ], "path": "packages/analytics/client/src/shippers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -959,6 +1014,7 @@ ], "path": "packages/analytics/client/src/shippers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -981,6 +1037,7 @@ ], "path": "packages/analytics/client/src/shippers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1000,6 +1057,7 @@ ], "path": "packages/analytics/client/src/shippers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -1015,6 +1073,7 @@ ], "path": "packages/analytics/client/src/shippers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1042,6 +1101,7 @@ ], "path": "packages/analytics/client/src/shippers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -1063,6 +1123,7 @@ ], "path": "packages/analytics/client/src/shippers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1090,7 +1151,8 @@ "> | undefined" ], "path": "packages/analytics/client/src/shippers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -1106,6 +1168,7 @@ ], "path": "packages/analytics/client/src/shippers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1123,6 +1186,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -1143,7 +1207,8 @@ } ], "path": "packages/analytics/client/src/analytics_client/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -1166,7 +1231,8 @@ " | undefined> | undefined" ], "path": "packages/analytics/client/src/analytics_client/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1182,6 +1248,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -1193,7 +1260,8 @@ "\nThe event type is globally enabled." ], "path": "packages/analytics/client/src/analytics_client/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -1208,7 +1276,8 @@ "Record | undefined" ], "path": "packages/analytics/client/src/analytics_client/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1224,6 +1293,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false }, @@ -1256,6 +1326,7 @@ ], "path": "packages/analytics/client/src/schema/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -1270,7 +1341,8 @@ "\"array\"" ], "path": "packages/analytics/client/src/schema/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -1349,7 +1421,8 @@ ")" ], "path": "packages/analytics/client/src/schema/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1375,6 +1448,7 @@ ], "path": "packages/analytics/client/src/schema/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -1412,7 +1486,8 @@ } ], "path": "packages/analytics/client/src/schema/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -1435,7 +1510,8 @@ "" ], "path": "packages/analytics/client/src/schema/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1461,6 +1537,7 @@ ], "path": "packages/analytics/client/src/schema/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -1483,7 +1560,8 @@ ") | undefined" ], "path": "packages/analytics/client/src/schema/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1517,6 +1595,7 @@ ], "path": "packages/analytics/client/src/schema/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -1539,7 +1618,8 @@ "; }" ], "path": "packages/analytics/client/src/schema/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1565,6 +1645,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -1576,7 +1657,8 @@ "\nThe shipper's unique name" ], "path": "packages/analytics/client/src/analytics_client/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -1592,6 +1674,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -1607,6 +1690,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1629,6 +1713,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1648,6 +1733,7 @@ ], "path": "packages/analytics/client/src/events/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-client", @@ -1662,7 +1748,8 @@ "\"failed\" | \"enqueued\" | \"sent_to_shipper\" | \"succeeded\" | \"dropped\"" ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -1674,7 +1761,8 @@ "\nWho emitted the event? It can be \"client\" or the name of the shipper." ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -1686,7 +1774,8 @@ "\nThe event type the success/failure/drop event refers to." ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -1698,7 +1787,8 @@ "\nCode to provide additional information about the success or failure. Examples are 200/400/504/ValidationError/UnknownError" ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-client", @@ -1710,7 +1800,8 @@ "\nThe number of events that this counter refers to." ], "path": "packages/analytics/client/src/events/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1732,6 +1823,7 @@ ], "path": "packages/analytics/client/src/schema/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1748,6 +1840,7 @@ ], "path": "packages/analytics/client/src/schema/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1764,6 +1857,7 @@ ], "path": "packages/analytics/client/src/schema/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1780,6 +1874,7 @@ ], "path": "packages/analytics/client/src/schema/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1796,6 +1891,7 @@ ], "path": "packages/analytics/client/src/events/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1835,6 +1931,7 @@ ], "path": "packages/analytics/client/src/schema/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1859,6 +1956,7 @@ ], "path": "packages/analytics/client/src/schema/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1875,6 +1973,7 @@ ], "path": "packages/analytics/client/src/schema/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1955,6 +2054,7 @@ ], "path": "packages/analytics/client/src/schema/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1971,6 +2071,7 @@ ], "path": "packages/analytics/client/src/analytics_client/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1987,6 +2088,7 @@ ], "path": "packages/analytics/client/src/events/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_analytics_client.mdx b/api_docs/kbn_analytics_client.mdx index 62ed5ab1ae750..9a511085c8190 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-client'] --- import kbnAnalyticsClientObj from './kbn_analytics_client.devdocs.json'; diff --git a/api_docs/kbn_analytics_shippers_elastic_v3_browser.devdocs.json b/api_docs/kbn_analytics_shippers_elastic_v3_browser.devdocs.json index 6e2887f902564..b73733babcf66 100644 --- a/api_docs/kbn_analytics_shippers_elastic_v3_browser.devdocs.json +++ b/api_docs/kbn_analytics_shippers_elastic_v3_browser.devdocs.json @@ -40,6 +40,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/browser/src/browser_shipper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-browser", @@ -51,7 +52,8 @@ "Shipper's unique name" ], "path": "packages/analytics/shippers/elastic_v3/browser/src/browser_shipper.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-browser", @@ -69,7 +71,8 @@ ">" ], "path": "packages/analytics/shippers/elastic_v3/browser/src/browser_shipper.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-browser", @@ -85,6 +88,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/browser/src/browser_shipper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-browser", @@ -100,6 +104,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/browser/src/browser_shipper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -116,6 +121,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/browser/src/browser_shipper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -137,6 +143,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/browser/src/browser_shipper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-browser", @@ -152,6 +159,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/browser/src/browser_shipper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -171,6 +179,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/browser/src/browser_shipper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-browser", @@ -186,6 +195,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/browser/src/browser_shipper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -207,6 +217,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/browser/src/browser_shipper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-browser", @@ -223,6 +234,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/browser/src/browser_shipper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -242,6 +254,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/browser/src/browser_shipper.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -265,6 +278,7 @@ ], "path": "node_modules/@types/kbn__analytics-shippers-elastic-v3-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-browser", @@ -276,7 +290,8 @@ "\nThe name of the channel to stream all the events to." ], "path": "node_modules/@types/kbn__analytics-shippers-elastic-v3-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-browser", @@ -288,7 +303,8 @@ "\nThe product's version." ], "path": "node_modules/@types/kbn__analytics-shippers-elastic-v3-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-browser", @@ -303,7 +319,8 @@ "\"staging\" | \"production\" | undefined" ], "path": "node_modules/@types/kbn__analytics-shippers-elastic-v3-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-browser", @@ -318,7 +335,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__analytics-shippers-elastic-v3-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_analytics_shippers_elastic_v3_browser.mdx b/api_docs/kbn_analytics_shippers_elastic_v3_browser.mdx index 1795ffeb73cb2..ec0dee99a8470 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_analytics_shippers_elastic_v3_common.devdocs.json index cd7ecef5e5286..f0bc3a04cff0e 100644 --- a/api_docs/kbn_analytics_shippers_elastic_v3_common.devdocs.json +++ b/api_docs/kbn_analytics_shippers_elastic_v3_common.devdocs.json @@ -39,6 +39,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/common/src/error_with_code.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-common", @@ -54,6 +55,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/common/src/error_with_code.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-common", @@ -69,6 +71,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/common/src/error_with_code.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -85,6 +88,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/common/src/error_with_code.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -109,6 +113,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/common/src/build_headers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-common", @@ -124,6 +129,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/common/src/build_headers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -140,6 +146,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/common/src/build_headers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -156,6 +163,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/common/src/build_headers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -184,6 +192,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/common/src/build_url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-common", @@ -205,6 +214,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/common/src/build_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -233,6 +243,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/common/src/report_telemetry_counters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-common", @@ -251,6 +262,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/common/src/report_telemetry_counters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -267,6 +279,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/common/src/report_telemetry_counters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -289,6 +302,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/common/src/events_to_ndjson.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-common", @@ -305,6 +319,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/common/src/events_to_ndjson.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -324,6 +339,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/common/src/build_url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-common", @@ -338,7 +354,8 @@ "\"staging\" | \"production\"" ], "path": "packages/analytics/shippers/elastic_v3/common/src/build_url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-common", @@ -350,7 +367,8 @@ "The name of the channel to send the data to." ], "path": "packages/analytics/shippers/elastic_v3/common/src/build_url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -366,6 +384,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/common/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-common", @@ -377,7 +396,8 @@ "\nThe name of the channel to stream all the events to." ], "path": "packages/analytics/shippers/elastic_v3/common/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-common", @@ -389,7 +409,8 @@ "\nThe product's version." ], "path": "packages/analytics/shippers/elastic_v3/common/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-common", @@ -404,7 +425,8 @@ "\"staging\" | \"production\" | undefined" ], "path": "packages/analytics/shippers/elastic_v3/common/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-common", @@ -419,7 +441,8 @@ "boolean | undefined" ], "path": "packages/analytics/shippers/elastic_v3/common/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_analytics_shippers_elastic_v3_common.mdx b/api_docs/kbn_analytics_shippers_elastic_v3_common.mdx index f888bba14b79e..2e503510d978f 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_analytics_shippers_elastic_v3_server.devdocs.json index 1d4721767610f..a5b5e11e33d65 100644 --- a/api_docs/kbn_analytics_shippers_elastic_v3_server.devdocs.json +++ b/api_docs/kbn_analytics_shippers_elastic_v3_server.devdocs.json @@ -32,6 +32,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/server/src/server_shipper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-server", @@ -43,7 +44,8 @@ "Shipper's unique name" ], "path": "packages/analytics/shippers/elastic_v3/server/src/server_shipper.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-server", @@ -61,7 +63,8 @@ ">" ], "path": "packages/analytics/shippers/elastic_v3/server/src/server_shipper.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-server", @@ -77,6 +80,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/server/src/server_shipper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-server", @@ -92,6 +96,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/server/src/server_shipper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -108,6 +113,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/server/src/server_shipper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -129,6 +135,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/server/src/server_shipper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-server", @@ -144,6 +151,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/server/src/server_shipper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -163,6 +171,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/server/src/server_shipper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-server", @@ -178,6 +187,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/server/src/server_shipper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -199,6 +209,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/server/src/server_shipper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-server", @@ -215,6 +226,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/server/src/server_shipper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -234,6 +246,7 @@ ], "path": "packages/analytics/shippers/elastic_v3/server/src/server_shipper.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -257,6 +270,7 @@ ], "path": "node_modules/@types/kbn__analytics-shippers-elastic-v3-common/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-server", @@ -268,7 +282,8 @@ "\nThe name of the channel to stream all the events to." ], "path": "node_modules/@types/kbn__analytics-shippers-elastic-v3-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-server", @@ -280,7 +295,8 @@ "\nThe product's version." ], "path": "node_modules/@types/kbn__analytics-shippers-elastic-v3-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-server", @@ -295,7 +311,8 @@ "\"staging\" | \"production\" | undefined" ], "path": "node_modules/@types/kbn__analytics-shippers-elastic-v3-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-shippers-elastic-v3-server", @@ -310,7 +327,8 @@ "boolean | undefined" ], "path": "node_modules/@types/kbn__analytics-shippers-elastic-v3-common/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_analytics_shippers_elastic_v3_server.mdx b/api_docs/kbn_analytics_shippers_elastic_v3_server.mdx index 68ae12af77e72..ae8f78c83ab2b 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_analytics_shippers_fullstory.devdocs.json index 005302e9a1a7b..3ddce3a3b1119 100644 --- a/api_docs/kbn_analytics_shippers_fullstory.devdocs.json +++ b/api_docs/kbn_analytics_shippers_fullstory.devdocs.json @@ -40,6 +40,7 @@ ], "path": "packages/analytics/shippers/fullstory/src/fullstory_shipper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-fullstory", @@ -51,7 +52,8 @@ "Shipper's unique name" ], "path": "packages/analytics/shippers/fullstory/src/fullstory_shipper.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-shippers-fullstory", @@ -67,6 +69,7 @@ ], "path": "packages/analytics/shippers/fullstory/src/fullstory_shipper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-fullstory", @@ -88,6 +91,7 @@ ], "path": "packages/analytics/shippers/fullstory/src/fullstory_shipper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -104,6 +108,7 @@ ], "path": "packages/analytics/shippers/fullstory/src/fullstory_shipper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -125,6 +130,7 @@ ], "path": "packages/analytics/shippers/fullstory/src/fullstory_shipper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-fullstory", @@ -140,6 +146,7 @@ ], "path": "packages/analytics/shippers/fullstory/src/fullstory_shipper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -159,6 +166,7 @@ ], "path": "packages/analytics/shippers/fullstory/src/fullstory_shipper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-fullstory", @@ -174,6 +182,7 @@ ], "path": "packages/analytics/shippers/fullstory/src/fullstory_shipper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -195,6 +204,7 @@ ], "path": "packages/analytics/shippers/fullstory/src/fullstory_shipper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-fullstory", @@ -211,6 +221,7 @@ ], "path": "packages/analytics/shippers/fullstory/src/fullstory_shipper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -230,6 +241,7 @@ ], "path": "packages/analytics/shippers/fullstory/src/fullstory_shipper.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -267,6 +279,7 @@ ], "path": "packages/analytics/shippers/fullstory/src/fullstory_shipper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-fullstory", @@ -281,7 +294,8 @@ "string[] | undefined" ], "path": "packages/analytics/shippers/fullstory/src/fullstory_shipper.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -297,6 +311,7 @@ ], "path": "packages/analytics/shippers/fullstory/src/load_snippet.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/analytics-shippers-fullstory", @@ -308,7 +323,8 @@ "\nThe FullStory account id." ], "path": "packages/analytics/shippers/fullstory/src/load_snippet.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-shippers-fullstory", @@ -323,7 +339,8 @@ "string | undefined" ], "path": "packages/analytics/shippers/fullstory/src/load_snippet.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-shippers-fullstory", @@ -338,7 +355,8 @@ "string | undefined" ], "path": "packages/analytics/shippers/fullstory/src/load_snippet.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-shippers-fullstory", @@ -353,7 +371,8 @@ "boolean | undefined" ], "path": "packages/analytics/shippers/fullstory/src/load_snippet.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/analytics-shippers-fullstory", @@ -368,7 +387,8 @@ "string | undefined" ], "path": "packages/analytics/shippers/fullstory/src/load_snippet.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_analytics_shippers_fullstory.mdx b/api_docs/kbn_analytics_shippers_fullstory.mdx index 42723f81eee51..b9bd132b73244 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_apm_config_loader.devdocs.json index 134f3435ee02c..9319d14c16b1a 100644 --- a/api_docs/kbn_apm_config_loader.devdocs.json +++ b/api_docs/kbn_apm_config_loader.devdocs.json @@ -19,6 +19,7 @@ "description": [], "path": "packages/kbn-apm-config-loader/src/config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-config-loader", @@ -32,6 +33,7 @@ ], "path": "packages/kbn-apm-config-loader/src/config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-config-loader", @@ -45,6 +47,7 @@ ], "path": "packages/kbn-apm-config-loader/src/config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -59,6 +62,7 @@ ], "path": "packages/kbn-apm-config-loader/src/config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -73,6 +77,7 @@ ], "path": "packages/kbn-apm-config-loader/src/config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -91,6 +96,7 @@ ], "path": "packages/kbn-apm-config-loader/src/config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-config-loader", @@ -104,6 +110,7 @@ ], "path": "packages/kbn-apm-config-loader/src/config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -128,6 +135,7 @@ ], "path": "packages/kbn-apm-config-loader/src/config_loader.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-config-loader", @@ -141,6 +149,7 @@ ], "path": "packages/kbn-apm-config-loader/src/config_loader.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -159,6 +168,7 @@ ], "path": "packages/kbn-apm-config-loader/src/init_apm.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-config-loader", @@ -172,6 +182,7 @@ ], "path": "packages/kbn-apm-config-loader/src/init_apm.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -186,6 +197,7 @@ ], "path": "packages/kbn-apm-config-loader/src/init_apm.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -200,6 +212,7 @@ ], "path": "packages/kbn-apm-config-loader/src/init_apm.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -214,6 +227,7 @@ ], "path": "packages/kbn-apm-config-loader/src/init_apm.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -234,6 +248,7 @@ ], "path": "packages/kbn-apm-config-loader/src/rum_agent_configuration.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-config-loader", @@ -248,6 +263,7 @@ ], "path": "packages/kbn-apm-config-loader/src/rum_agent_configuration.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], diff --git a/api_docs/kbn_apm_config_loader.mdx b/api_docs/kbn_apm_config_loader.mdx index 3dc263cc741db..c4f8b6213ed6d 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_apm_synthtrace.devdocs.json index 142d988330fbd..647bcc1237623 100644 --- a/api_docs/kbn_apm_synthtrace.devdocs.json +++ b/api_docs/kbn_apm_synthtrace.devdocs.json @@ -19,6 +19,7 @@ "description": [], "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -32,6 +33,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -45,6 +47,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -59,6 +62,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -74,6 +78,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -91,6 +96,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -106,6 +112,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -119,6 +126,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -136,6 +144,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -149,6 +158,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -166,6 +176,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -179,6 +190,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -192,13 +204,30 @@ "label": "refresh", "description": [], "signature": [ - "() => Promise<", + "(dataStreams?: string[] | undefined) => Promise<", "ShardsOperationResponseBase", ">" ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", "deprecated": false, - "children": [], + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/apm-synthtrace", + "id": "def-server.ApmSynthtraceEsClient.refresh.$1", + "type": "Array", + "tags": [], + "label": "dataStreams", + "description": [], + "signature": [ + "string[] | undefined" + ], + "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": false + } + ], "returnComment": [] }, { @@ -249,6 +278,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -277,6 +307,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -300,6 +331,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -323,6 +355,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -350,6 +383,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -372,6 +406,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -407,6 +442,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -420,6 +456,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -433,6 +470,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -450,21 +488,23 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, { "parentPluginId": "@kbn/apm-synthtrace", - "id": "def-server.EntityArrayIterable.ratePerMinute", + "id": "def-server.EntityArrayIterable.estimatedRatePerMinute", "type": "Function", "tags": [], - "label": "ratePerMinute", + "label": "estimatedRatePerMinute", "description": [], "signature": [ "() => number" ], "path": "packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -480,6 +520,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -495,6 +536,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -520,6 +562,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -540,6 +583,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -557,6 +601,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -579,6 +624,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/utils/clean_write_targets.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -589,6 +635,7 @@ "description": [], "path": "packages/kbn-apm-synthtrace/src/lib/utils/clean_write_targets.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -601,7 +648,8 @@ "string[]" ], "path": "packages/kbn-apm-synthtrace/src/lib/utils/clean_write_targets.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/apm-synthtrace", @@ -614,7 +662,8 @@ "default" ], "path": "packages/kbn-apm-synthtrace/src/lib/utils/clean_write_targets.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/apm-synthtrace", @@ -627,7 +676,8 @@ "{ perf: (name: string, cb: () => T) => T; debug: (...args: any[]) => void; info: (...args: any[]) => void; error: (...args: any[]) => void; }" ], "path": "packages/kbn-apm-synthtrace/src/lib/utils/clean_write_targets.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -655,6 +705,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/utils/create_logger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -674,6 +725,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/utils/create_logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -693,6 +745,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/agent_config/observer.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -710,6 +763,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/timerange.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -723,6 +777,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/timerange.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -737,6 +792,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/timerange.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -754,6 +810,7 @@ "description": [], "path": "packages/kbn-apm-synthtrace/src/lib/apm/apm_fields.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -763,7 +820,8 @@ "label": "message", "description": [], "path": "packages/kbn-apm-synthtrace/src/lib/apm/apm_fields.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -787,6 +845,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -800,21 +859,23 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, { "parentPluginId": "@kbn/apm-synthtrace", - "id": "def-server.EntityIterable.ratePerMinute", + "id": "def-server.EntityIterable.estimatedRatePerMinute", "type": "Function", "tags": [], - "label": "ratePerMinute", + "label": "estimatedRatePerMinute", "description": [], "signature": [ "() => number" ], "path": "packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -838,6 +899,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -863,6 +925,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -883,6 +946,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -900,6 +964,7 @@ "description": [], "path": "packages/kbn-apm-synthtrace/src/lib/entity.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -912,7 +977,8 @@ "number | undefined" ], "path": "packages/kbn-apm-synthtrace/src/lib/entity.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -928,6 +994,7 @@ "description": [], "path": "packages/kbn-apm-synthtrace/src/lib/utils/create_logger.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -947,7 +1014,7 @@ "section": "def-server.Fields", "text": "Fields" }, - " & Partial<{ 'timestamp.us'?: number | undefined; 'agent.name': string; 'agent.version': string; 'container.id': string; 'ecs.version': string; 'event.outcome': string; 'event.ingested': number; 'error.id': string; 'error.exception': ", + " & Partial<{ 'timestamp.us'?: number | undefined; 'agent.name': string; 'agent.version': string; 'container.id': string; 'destination.address': string; 'destination.port': number; 'ecs.version': string; 'event.outcome': string; 'event.ingested': number; 'error.id': string; 'error.exception': ", { "pluginId": "@kbn/apm-synthtrace", "scope": "server", @@ -957,10 +1024,11 @@ }, "[]; 'error.grouping_name': string; 'error.grouping_key': string; 'host.name': string; 'host.hostname': string; 'kubernetes.pod.uid': string; 'kubernetes.pod.name': string; 'metricset.name': string; observer: ", "Observer", - "; 'parent.id': string; 'processor.event': string; 'processor.name': string; 'trace.id': string; 'transaction.name': string; 'transaction.type': string; 'transaction.id': string; 'transaction.duration.us': number; 'transaction.duration.histogram': { values: number[]; counts: number[]; }; 'transaction.sampled': true; 'service.name': string; 'service.version': string; 'service.environment': string; 'service.node.name': string; 'service.runtime.name': string; 'service.runtime.version': string; 'service.framework.name': string; 'span.id': string; 'span.name': string; 'span.type': string; 'span.subtype': string; 'span.duration.us': number; 'span.destination.service.name': string; 'span.destination.service.resource': string; 'span.destination.service.type': string; 'span.destination.service.response_time.sum.us': number; 'span.destination.service.response_time.count': number; 'span.self_time.count': number; 'span.self_time.sum.us': number; 'span.links': { trace: { id: string; }; span: { id: string; }; }[]; 'cloud.provider': string; 'cloud.project.name': string; 'cloud.service.name': string; 'cloud.availability_zone': string; 'cloud.machine.type': string; 'cloud.region': string; 'host.os.platform': string; 'faas.id': string; 'faas.coldstart': boolean; 'faas.execution': string; 'faas.trigger.type': string; 'faas.trigger.request_id': string; }> & Partial<{ 'system.process.memory.size': number; 'system.memory.actual.free': number; 'system.memory.total': number; 'system.cpu.total.norm.pct': number; 'system.process.memory.rss.bytes': number; 'system.process.cpu.total.norm.pct': number; 'jvm.memory.heap.used': number; 'jvm.memory.non_heap.used': number; 'jvm.thread.count': number; }>" + "; 'parent.id': string; 'processor.event': string; 'processor.name': string; 'trace.id': string; 'transaction.name': string; 'transaction.type': string; 'transaction.id': string; 'transaction.duration.us': number; 'transaction.duration.histogram': { values: number[]; counts: number[]; }; 'transaction.sampled': true; 'service.name': string; 'service.version': string; 'service.environment': string; 'service.node.name': string; 'service.runtime.name': string; 'service.runtime.version': string; 'service.framework.name': string; 'service.target.name': string; 'service.target.type': string; 'span.id': string; 'span.name': string; 'span.type': string; 'span.subtype': string; 'span.duration.us': number; 'span.destination.service.name': string; 'span.destination.service.resource': string; 'span.destination.service.type': string; 'span.destination.service.response_time.sum.us': number; 'span.destination.service.response_time.count': number; 'span.self_time.count': number; 'span.self_time.sum.us': number; 'span.links': { trace: { id: string; }; span: { id: string; }; }[]; 'cloud.provider': string; 'cloud.project.name': string; 'cloud.service.name': string; 'cloud.availability_zone': string; 'cloud.machine.type': string; 'cloud.region': string; 'host.os.platform': string; 'faas.id': string; 'faas.coldstart': boolean; 'faas.execution': string; 'faas.trigger.type': string; 'faas.trigger.request_id': string; }> & Partial<{ 'system.process.memory.size': number; 'system.memory.actual.free': number; 'system.memory.total': number; 'system.cpu.total.norm.pct': number; 'system.process.memory.rss.bytes': number; 'system.process.cpu.total.norm.pct': number; 'jvm.memory.heap.used': number; 'jvm.memory.non_heap.used': number; 'jvm.thread.count': number; }>" ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/apm_fields.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -974,6 +1042,7 @@ "description": [], "path": "packages/kbn-apm-synthtrace/src/lib/apm/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -988,6 +1057,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -998,7 +1068,8 @@ "label": "name", "description": [], "path": "packages/kbn-apm-synthtrace/src/lib/apm/service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/apm-synthtrace", @@ -1008,7 +1079,8 @@ "label": "environment", "description": [], "path": "packages/kbn-apm-synthtrace/src/lib/apm/service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/apm-synthtrace", @@ -1018,7 +1090,8 @@ "label": "agentName", "description": [], "path": "packages/kbn-apm-synthtrace/src/lib/apm/service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1035,6 +1108,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1045,7 +1119,8 @@ "label": "serviceName", "description": [], "path": "packages/kbn-apm-synthtrace/src/lib/apm/browser.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/apm-synthtrace", @@ -1055,7 +1130,8 @@ "label": "production", "description": [], "path": "packages/kbn-apm-synthtrace/src/lib/apm/browser.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/apm-synthtrace", @@ -1068,7 +1144,8 @@ "{ 'user_agent.original'?: string | undefined; 'user_agent.os.name'?: string | undefined; 'user_agent.name'?: string | undefined; 'user_agent.device.name'?: string | undefined; 'user_agent.version'?: number | undefined; }" ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/browser.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1088,7 +1165,7 @@ "section": "def-server.ApmFields", "text": "ApmFields" }, - "[]) => { 'metricset.name': string; 'transaction.duration.histogram': { values: number[]; counts: number[]; }; _doc_count: number; '@timestamp'?: number | undefined; 'timestamp.us'?: number | undefined; 'agent.name'?: string | undefined; 'agent.version'?: string | undefined; 'container.id'?: string | undefined; 'ecs.version'?: string | undefined; 'event.outcome'?: string | undefined; 'event.ingested'?: number | undefined; 'error.id'?: string | undefined; 'error.exception'?: ", + "[]) => { 'metricset.name': string; 'transaction.duration.histogram': { values: number[]; counts: number[]; }; _doc_count: number; '@timestamp'?: number | undefined; 'timestamp.us'?: number | undefined; 'agent.name'?: string | undefined; 'agent.version'?: string | undefined; 'container.id'?: string | undefined; 'destination.address'?: string | undefined; 'destination.port'?: number | undefined; 'ecs.version'?: string | undefined; 'event.outcome'?: string | undefined; 'event.ingested'?: number | undefined; 'error.id'?: string | undefined; 'error.exception'?: ", { "pluginId": "@kbn/apm-synthtrace", "scope": "server", @@ -1098,10 +1175,11 @@ }, "[] | undefined; 'error.grouping_name'?: string | undefined; 'error.grouping_key'?: string | undefined; 'host.name'?: string | undefined; 'host.hostname'?: string | undefined; 'kubernetes.pod.uid'?: string | undefined; 'kubernetes.pod.name'?: string | undefined; observer?: ", "Observer", - " | undefined; 'parent.id'?: string | undefined; 'processor.event'?: string | undefined; 'processor.name'?: string | undefined; 'trace.id'?: string | undefined; 'transaction.name'?: string | undefined; 'transaction.type'?: string | undefined; 'transaction.id'?: string | undefined; 'transaction.duration.us'?: number | undefined; 'transaction.sampled'?: true | undefined; 'service.name'?: string | undefined; 'service.version'?: string | undefined; 'service.environment'?: string | undefined; 'service.node.name'?: string | undefined; 'service.runtime.name'?: string | undefined; 'service.runtime.version'?: string | undefined; 'service.framework.name'?: string | undefined; 'span.id'?: string | undefined; 'span.name'?: string | undefined; 'span.type'?: string | undefined; 'span.subtype'?: string | undefined; 'span.duration.us'?: number | undefined; 'span.destination.service.name'?: string | undefined; 'span.destination.service.resource'?: string | undefined; 'span.destination.service.type'?: string | undefined; 'span.destination.service.response_time.sum.us'?: number | undefined; 'span.destination.service.response_time.count'?: number | undefined; 'span.self_time.count'?: number | undefined; 'span.self_time.sum.us'?: number | undefined; 'span.links'?: { trace: { id: string; }; span: { id: string; }; }[] | undefined; 'cloud.provider'?: string | undefined; 'cloud.project.name'?: string | undefined; 'cloud.service.name'?: string | undefined; 'cloud.availability_zone'?: string | undefined; 'cloud.machine.type'?: string | undefined; 'cloud.region'?: string | undefined; 'host.os.platform'?: string | undefined; 'faas.id'?: string | undefined; 'faas.coldstart'?: boolean | undefined; 'faas.execution'?: string | undefined; 'faas.trigger.type'?: string | undefined; 'faas.trigger.request_id'?: string | undefined; 'system.process.memory.size'?: number | undefined; 'system.memory.actual.free'?: number | undefined; 'system.memory.total'?: number | undefined; 'system.cpu.total.norm.pct'?: number | undefined; 'system.process.memory.rss.bytes'?: number | undefined; 'system.process.cpu.total.norm.pct'?: number | undefined; 'jvm.memory.heap.used'?: number | undefined; 'jvm.memory.non_heap.used'?: number | undefined; 'jvm.thread.count'?: number | undefined; }[]" + " | undefined; 'parent.id'?: string | undefined; 'processor.event'?: string | undefined; 'processor.name'?: string | undefined; 'trace.id'?: string | undefined; 'transaction.name'?: string | undefined; 'transaction.type'?: string | undefined; 'transaction.id'?: string | undefined; 'transaction.duration.us'?: number | undefined; 'transaction.sampled'?: true | undefined; 'service.name'?: string | undefined; 'service.version'?: string | undefined; 'service.environment'?: string | undefined; 'service.node.name'?: string | undefined; 'service.runtime.name'?: string | undefined; 'service.runtime.version'?: string | undefined; 'service.framework.name'?: string | undefined; 'service.target.name'?: string | undefined; 'service.target.type'?: string | undefined; 'span.id'?: string | undefined; 'span.name'?: string | undefined; 'span.type'?: string | undefined; 'span.subtype'?: string | undefined; 'span.duration.us'?: number | undefined; 'span.destination.service.name'?: string | undefined; 'span.destination.service.resource'?: string | undefined; 'span.destination.service.type'?: string | undefined; 'span.destination.service.response_time.sum.us'?: number | undefined; 'span.destination.service.response_time.count'?: number | undefined; 'span.self_time.count'?: number | undefined; 'span.self_time.sum.us'?: number | undefined; 'span.links'?: { trace: { id: string; }; span: { id: string; }; }[] | undefined; 'cloud.provider'?: string | undefined; 'cloud.project.name'?: string | undefined; 'cloud.service.name'?: string | undefined; 'cloud.availability_zone'?: string | undefined; 'cloud.machine.type'?: string | undefined; 'cloud.region'?: string | undefined; 'host.os.platform'?: string | undefined; 'faas.id'?: string | undefined; 'faas.coldstart'?: boolean | undefined; 'faas.execution'?: string | undefined; 'faas.trigger.type'?: string | undefined; 'faas.trigger.request_id'?: string | undefined; 'system.process.memory.size'?: number | undefined; 'system.memory.actual.free'?: number | undefined; 'system.memory.total'?: number | undefined; 'system.cpu.total.norm.pct'?: number | undefined; 'system.process.memory.rss.bytes'?: number | undefined; 'system.process.cpu.total.norm.pct'?: number | undefined; 'jvm.memory.heap.used'?: number | undefined; 'jvm.memory.non_heap.used'?: number | undefined; 'jvm.thread.count'?: number | undefined; }[]" ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1122,7 +1200,8 @@ "[]" ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/processors/get_transaction_metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1142,7 +1221,7 @@ "section": "def-server.ApmFields", "text": "ApmFields" }, - "[]) => { \"metricset.name\": string; 'span.destination.service.response_time.sum.us': number; 'span.destination.service.response_time.count': number; '@timestamp'?: number | undefined; 'timestamp.us'?: number | undefined; 'agent.name'?: string | undefined; 'agent.version'?: string | undefined; 'container.id'?: string | undefined; 'ecs.version'?: string | undefined; 'event.outcome'?: string | undefined; 'event.ingested'?: number | undefined; 'error.id'?: string | undefined; 'error.exception'?: ", + "[]) => { \"metricset.name\": string; 'span.destination.service.response_time.sum.us': number; 'span.destination.service.response_time.count': number; '@timestamp'?: number | undefined; 'timestamp.us'?: number | undefined; 'agent.name'?: string | undefined; 'agent.version'?: string | undefined; 'container.id'?: string | undefined; 'destination.address'?: string | undefined; 'destination.port'?: number | undefined; 'ecs.version'?: string | undefined; 'event.outcome'?: string | undefined; 'event.ingested'?: number | undefined; 'error.id'?: string | undefined; 'error.exception'?: ", { "pluginId": "@kbn/apm-synthtrace", "scope": "server", @@ -1152,10 +1231,11 @@ }, "[] | undefined; 'error.grouping_name'?: string | undefined; 'error.grouping_key'?: string | undefined; 'host.name'?: string | undefined; 'host.hostname'?: string | undefined; 'kubernetes.pod.uid'?: string | undefined; 'kubernetes.pod.name'?: string | undefined; observer?: ", "Observer", - " | undefined; 'parent.id'?: string | undefined; 'processor.event'?: string | undefined; 'processor.name'?: string | undefined; 'trace.id'?: string | undefined; 'transaction.name'?: string | undefined; 'transaction.type'?: string | undefined; 'transaction.id'?: string | undefined; 'transaction.duration.us'?: number | undefined; 'transaction.duration.histogram'?: { values: number[]; counts: number[]; } | undefined; 'transaction.sampled'?: true | undefined; 'service.name'?: string | undefined; 'service.version'?: string | undefined; 'service.environment'?: string | undefined; 'service.node.name'?: string | undefined; 'service.runtime.name'?: string | undefined; 'service.runtime.version'?: string | undefined; 'service.framework.name'?: string | undefined; 'span.id'?: string | undefined; 'span.name'?: string | undefined; 'span.type'?: string | undefined; 'span.subtype'?: string | undefined; 'span.duration.us'?: number | undefined; 'span.destination.service.name'?: string | undefined; 'span.destination.service.resource'?: string | undefined; 'span.destination.service.type'?: string | undefined; 'span.self_time.count'?: number | undefined; 'span.self_time.sum.us'?: number | undefined; 'span.links'?: { trace: { id: string; }; span: { id: string; }; }[] | undefined; 'cloud.provider'?: string | undefined; 'cloud.project.name'?: string | undefined; 'cloud.service.name'?: string | undefined; 'cloud.availability_zone'?: string | undefined; 'cloud.machine.type'?: string | undefined; 'cloud.region'?: string | undefined; 'host.os.platform'?: string | undefined; 'faas.id'?: string | undefined; 'faas.coldstart'?: boolean | undefined; 'faas.execution'?: string | undefined; 'faas.trigger.type'?: string | undefined; 'faas.trigger.request_id'?: string | undefined; 'system.process.memory.size'?: number | undefined; 'system.memory.actual.free'?: number | undefined; 'system.memory.total'?: number | undefined; 'system.cpu.total.norm.pct'?: number | undefined; 'system.process.memory.rss.bytes'?: number | undefined; 'system.process.cpu.total.norm.pct'?: number | undefined; 'jvm.memory.heap.used'?: number | undefined; 'jvm.memory.non_heap.used'?: number | undefined; 'jvm.thread.count'?: number | undefined; }[]" + " | undefined; 'parent.id'?: string | undefined; 'processor.event'?: string | undefined; 'processor.name'?: string | undefined; 'trace.id'?: string | undefined; 'transaction.name'?: string | undefined; 'transaction.type'?: string | undefined; 'transaction.id'?: string | undefined; 'transaction.duration.us'?: number | undefined; 'transaction.duration.histogram'?: { values: number[]; counts: number[]; } | undefined; 'transaction.sampled'?: true | undefined; 'service.name'?: string | undefined; 'service.version'?: string | undefined; 'service.environment'?: string | undefined; 'service.node.name'?: string | undefined; 'service.runtime.name'?: string | undefined; 'service.runtime.version'?: string | undefined; 'service.framework.name'?: string | undefined; 'service.target.name'?: string | undefined; 'service.target.type'?: string | undefined; 'span.id'?: string | undefined; 'span.name'?: string | undefined; 'span.type'?: string | undefined; 'span.subtype'?: string | undefined; 'span.duration.us'?: number | undefined; 'span.destination.service.name'?: string | undefined; 'span.destination.service.resource'?: string | undefined; 'span.destination.service.type'?: string | undefined; 'span.self_time.count'?: number | undefined; 'span.self_time.sum.us'?: number | undefined; 'span.links'?: { trace: { id: string; }; span: { id: string; }; }[] | undefined; 'cloud.provider'?: string | undefined; 'cloud.project.name'?: string | undefined; 'cloud.service.name'?: string | undefined; 'cloud.availability_zone'?: string | undefined; 'cloud.machine.type'?: string | undefined; 'cloud.region'?: string | undefined; 'host.os.platform'?: string | undefined; 'faas.id'?: string | undefined; 'faas.coldstart'?: boolean | undefined; 'faas.execution'?: string | undefined; 'faas.trigger.type'?: string | undefined; 'faas.trigger.request_id'?: string | undefined; 'system.process.memory.size'?: number | undefined; 'system.memory.actual.free'?: number | undefined; 'system.memory.total'?: number | undefined; 'system.cpu.total.norm.pct'?: number | undefined; 'system.process.memory.rss.bytes'?: number | undefined; 'system.process.cpu.total.norm.pct'?: number | undefined; 'jvm.memory.heap.used'?: number | undefined; 'jvm.memory.non_heap.used'?: number | undefined; 'jvm.thread.count'?: number | undefined; }[]" ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1176,7 +1256,8 @@ "[]" ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/processors/get_span_destination_metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1192,6 +1273,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -1223,6 +1305,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1243,7 +1326,8 @@ "[]" ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/processors/get_breakdown_metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1263,6 +1347,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1278,7 +1363,8 @@ "; forceLegacyIndices?: boolean | undefined; }" ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/utils/get_apm_write_targets.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1300,7 +1386,8 @@ } ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/apm-synthtrace", @@ -1314,7 +1401,8 @@ "ApmSynthtraceKibanaClient" ], "path": "packages/kbn-apm-synthtrace/src/lib/apm/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1328,6 +1416,7 @@ "description": [], "path": "packages/kbn-apm-synthtrace/src/lib/stack_monitoring/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-synthtrace", @@ -1342,6 +1431,7 @@ ], "path": "packages/kbn-apm-synthtrace/src/lib/stack_monitoring/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1352,7 +1442,8 @@ "label": "name", "description": [], "path": "packages/kbn-apm-synthtrace/src/lib/stack_monitoring/cluster.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kbn_apm_synthtrace.mdx b/api_docs/kbn_apm_synthtrace.mdx index fd8d3a5798e80..a61909d3c5481 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/apm-synthtrace'] --- import kbnApmSynthtraceObj from './kbn_apm_synthtrace.devdocs.json'; @@ -21,7 +21,7 @@ Contact [Owner missing] for questions regarding this plugin. | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 75 | 0 | 75 | 12 | +| 76 | 0 | 76 | 12 | ## Server diff --git a/api_docs/kbn_apm_utils.devdocs.json b/api_docs/kbn_apm_utils.devdocs.json index 500f2336c84fb..7152f8b316759 100644 --- a/api_docs/kbn_apm_utils.devdocs.json +++ b/api_docs/kbn_apm_utils.devdocs.json @@ -38,6 +38,7 @@ ], "path": "packages/kbn-apm-utils/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-utils", @@ -58,6 +59,7 @@ ], "path": "packages/kbn-apm-utils/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -86,6 +88,7 @@ ], "path": "packages/kbn-apm-utils/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-utils", @@ -106,6 +109,7 @@ ], "path": "packages/kbn-apm-utils/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -122,6 +126,7 @@ ], "path": "packages/kbn-apm-utils/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -139,6 +144,7 @@ "description": [], "path": "packages/kbn-apm-utils/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/apm-utils", @@ -148,7 +154,8 @@ "label": "name", "description": [], "path": "packages/kbn-apm-utils/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/apm-utils", @@ -161,7 +168,8 @@ "string | undefined" ], "path": "packages/kbn-apm-utils/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/apm-utils", @@ -174,7 +182,8 @@ "string | undefined" ], "path": "packages/kbn-apm-utils/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/apm-utils", @@ -187,7 +196,8 @@ "Record | undefined" ], "path": "packages/kbn-apm-utils/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/apm-utils", @@ -200,7 +210,8 @@ "boolean | undefined" ], "path": "packages/kbn-apm-utils/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_apm_utils.mdx b/api_docs/kbn_apm_utils.mdx index 605cde20f7a0c..c51c92f4e555b 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/apm-utils'] --- import kbnApmUtilsObj from './kbn_apm_utils.devdocs.json'; diff --git a/api_docs/kbn_axe_config.devdocs.json b/api_docs/kbn_axe_config.devdocs.json index fa7443c837907..cced23e731f01 100644 --- a/api_docs/kbn_axe_config.devdocs.json +++ b/api_docs/kbn_axe_config.devdocs.json @@ -32,6 +32,7 @@ "description": [], "path": "packages/kbn-axe-config/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/axe-config", @@ -44,7 +45,8 @@ "{ id: string; selector: string; }[]" ], "path": "packages/kbn-axe-config/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -58,6 +60,7 @@ "description": [], "path": "packages/kbn-axe-config/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/axe-config", @@ -70,7 +73,8 @@ "\"raw\" | \"v2\" | \"v1\" | \"raw-env\" | \"no-passes\"" ], "path": "packages/kbn-axe-config/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/axe-config", @@ -83,7 +87,8 @@ "string[]" ], "path": "packages/kbn-axe-config/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/axe-config", @@ -94,6 +99,7 @@ "description": [], "path": "packages/kbn-axe-config/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/axe-config", @@ -104,6 +110,7 @@ "description": [], "path": "packages/kbn-axe-config/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/axe-config", @@ -113,7 +120,8 @@ "label": "enabled", "description": [], "path": "packages/kbn-axe-config/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -126,6 +134,7 @@ "description": [], "path": "packages/kbn-axe-config/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/axe-config", @@ -135,7 +144,8 @@ "label": "enabled", "description": [], "path": "packages/kbn-axe-config/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kbn_axe_config.mdx b/api_docs/kbn_axe_config.mdx index 5c9b60a3fd900..257134279eba5 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/axe-config'] --- import kbnAxeConfigObj from './kbn_axe_config.devdocs.json'; diff --git a/api_docs/kbn_chart_icons.devdocs.json b/api_docs/kbn_chart_icons.devdocs.json index aad32da9e7286..457c21bea03c4 100644 --- a/api_docs/kbn_chart_icons.devdocs.json +++ b/api_docs/kbn_chart_icons.devdocs.json @@ -33,6 +33,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/drop_illustration.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -48,6 +49,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/drop_illustration.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -66,6 +68,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/axis_bottom.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -76,6 +79,7 @@ "description": [], "path": "packages/kbn-chart-icons/src/assets/axis_bottom.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -85,7 +89,8 @@ "label": "title", "description": [], "path": "packages/kbn-chart-icons/src/assets/axis_bottom.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/chart-icons", @@ -95,7 +100,8 @@ "label": "titleId", "description": [], "path": "packages/kbn-chart-icons/src/assets/axis_bottom.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -115,6 +121,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/axis_left.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -125,6 +132,7 @@ "description": [], "path": "packages/kbn-chart-icons/src/assets/axis_left.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -134,7 +142,8 @@ "label": "title", "description": [], "path": "packages/kbn-chart-icons/src/assets/axis_left.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/chart-icons", @@ -144,7 +153,8 @@ "label": "titleId", "description": [], "path": "packages/kbn-chart-icons/src/assets/axis_left.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -164,6 +174,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/axis_right.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -174,6 +185,7 @@ "description": [], "path": "packages/kbn-chart-icons/src/assets/axis_right.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -183,7 +195,8 @@ "label": "title", "description": [], "path": "packages/kbn-chart-icons/src/assets/axis_right.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/chart-icons", @@ -193,7 +206,8 @@ "label": "titleId", "description": [], "path": "packages/kbn-chart-icons/src/assets/axis_right.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -213,6 +227,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/axis_top.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -223,6 +238,7 @@ "description": [], "path": "packages/kbn-chart-icons/src/assets/axis_top.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -232,7 +248,8 @@ "label": "title", "description": [], "path": "packages/kbn-chart-icons/src/assets/axis_top.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/chart-icons", @@ -242,7 +259,8 @@ "label": "titleId", "description": [], "path": "packages/kbn-chart-icons/src/assets/axis_top.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -262,6 +280,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/legend.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -272,6 +291,7 @@ "description": [], "path": "packages/kbn-chart-icons/src/assets/legend.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -281,7 +301,8 @@ "label": "title", "description": [], "path": "packages/kbn-chart-icons/src/assets/legend.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/chart-icons", @@ -291,7 +312,8 @@ "label": "titleId", "description": [], "path": "packages/kbn-chart-icons/src/assets/legend.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -313,6 +335,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/globe_illustration.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -328,6 +351,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/globe_illustration.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -348,6 +372,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_area.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -363,6 +388,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_area.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -383,6 +409,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_area_percentage.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -398,6 +425,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_area_percentage.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -418,6 +446,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_area_stacked.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -433,6 +462,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_area_stacked.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -453,6 +483,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_bar.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -468,6 +499,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_bar.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -488,6 +520,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_bar_annotations.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -503,6 +536,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_bar_annotations.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -523,6 +557,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_bar_horizontal.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -538,6 +573,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_bar_horizontal.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -558,6 +594,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_bar_horizontal_percentage.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -573,6 +610,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_bar_horizontal_percentage.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -593,6 +631,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_bar_horizontal_stacked.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -608,6 +647,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_bar_horizontal_stacked.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -628,6 +668,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_bar_percentage.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -643,6 +684,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_bar_percentage.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -663,6 +705,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_bar_reference_line.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -678,6 +721,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_bar_reference_line.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -698,6 +742,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_bar_stacked.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -713,6 +758,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_bar_stacked.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -733,6 +779,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_datatable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -748,6 +795,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_datatable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -768,6 +816,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_donut.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -783,6 +832,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_donut.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -803,6 +853,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_heatmap.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -818,6 +869,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_heatmap.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -838,6 +890,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_horizontal_bullet.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -853,6 +906,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_horizontal_bullet.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -873,6 +927,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_line.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -888,6 +943,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_line.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -908,6 +964,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_metric.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -923,6 +980,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_metric.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -943,6 +1001,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_mixed_xy.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -958,6 +1017,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_mixed_xy.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -978,6 +1038,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_mosaic.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -993,6 +1054,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_mosaic.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1013,6 +1075,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_pie.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -1028,6 +1091,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_pie.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1048,6 +1112,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_treemap.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -1063,6 +1128,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_treemap.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1083,6 +1149,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_vertical_bullet.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -1098,6 +1165,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_vertical_bullet.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1118,6 +1186,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_waffle.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -1133,6 +1202,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/chart_waffle.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1153,6 +1223,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/annotation_icons/circle.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -1168,6 +1239,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/annotation_icons/circle.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1188,6 +1260,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/region_map.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -1203,6 +1276,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/region_map.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1223,6 +1297,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/annotation_icons/triangle.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/chart-icons", @@ -1238,6 +1313,7 @@ ], "path": "packages/kbn-chart-icons/src/assets/annotation_icons/triangle.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_chart_icons.mdx b/api_docs/kbn_chart_icons.mdx index 5ad4a4144f792..3145ac4c1a5ac 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_ci_stats_core.devdocs.json index c992ff04fbe96..c7f7a7630b0d7 100644 --- a/api_docs/kbn_ci_stats_core.devdocs.json +++ b/api_docs/kbn_ci_stats_core.devdocs.json @@ -33,6 +33,7 @@ ], "path": "packages/kbn-ci-stats-core/src/ci_stats_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ci-stats-core", @@ -46,6 +47,7 @@ ], "path": "packages/kbn-ci-stats-core/src/ci_stats_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -65,6 +67,7 @@ ], "path": "packages/kbn-ci-stats-core/src/ci_stats_metadata.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ci-stats-core", @@ -79,7 +82,8 @@ "[key: string]: string | number | boolean | string[] | undefined" ], "path": "packages/kbn-ci-stats-core/src/ci_stats_metadata.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -95,6 +99,7 @@ ], "path": "packages/kbn-ci-stats-core/src/ci_stats_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ci-stats-core", @@ -106,7 +111,8 @@ "ApiToken necessary for writing build data to ci-stats service" ], "path": "packages/kbn-ci-stats-core/src/ci_stats_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-core", @@ -118,7 +124,8 @@ "\nuuid which should be obtained by first creating a build with the\nci-stats service and then passing it to all subsequent steps" ], "path": "packages/kbn-ci-stats-core/src/ci_stats_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_ci_stats_core.mdx b/api_docs/kbn_ci_stats_core.mdx index 5eabeb9f04706..2ffa59cb7e82b 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_ci_stats_performance_metrics.devdocs.json index 87ed9278a28f4..bc5d1bc3a9e5d 100644 --- a/api_docs/kbn_ci_stats_performance_metrics.devdocs.json +++ b/api_docs/kbn_ci_stats_performance_metrics.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/kbn-ci-stats-performance-metrics/src/reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ci-stats-performance-metrics", @@ -36,6 +37,7 @@ ], "path": "packages/kbn-ci-stats-performance-metrics/src/reporter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -54,6 +56,7 @@ ], "path": "packages/kbn-ci-stats-performance-metrics/src/cli.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false diff --git a/api_docs/kbn_ci_stats_performance_metrics.mdx b/api_docs/kbn_ci_stats_performance_metrics.mdx index 3332fa7884c1d..2686b6b92199b 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_ci_stats_reporter.devdocs.json index 5a13643eff898..f831ac502a939 100644 --- a/api_docs/kbn_ci_stats_reporter.devdocs.json +++ b/api_docs/kbn_ci_stats_reporter.devdocs.json @@ -21,6 +21,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ci-stats-reporter", @@ -45,6 +46,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ci-stats-reporter", @@ -58,6 +60,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -75,6 +78,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ci-stats-reporter", @@ -89,6 +93,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -103,6 +108,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -122,6 +128,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -139,6 +146,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -164,6 +172,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ci-stats-reporter", @@ -183,6 +192,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -218,6 +228,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ci-stats-reporter", @@ -238,6 +249,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -259,6 +271,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -286,6 +299,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ci-stats-reporter", @@ -305,6 +319,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -324,6 +339,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ci-stats-reporter", @@ -337,6 +353,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -361,6 +378,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/report_time.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ci-stats-reporter", @@ -374,6 +392,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/report_time.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -388,6 +407,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/report_time.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -407,6 +427,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ci-stats-reporter", @@ -418,7 +439,8 @@ "Top-level categorization for the metric, e.g. \"page load bundle size\"" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -430,7 +452,8 @@ "Specific sub-set of the \"group\", e.g. \"dashboard\"" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -442,7 +465,8 @@ "integer value recorded as the value of this metric" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -457,7 +481,8 @@ "number | undefined" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -466,13 +491,14 @@ "tags": [], "label": "limitConfigPath", "description": [ - "\npath, relative to the repo, where the config file contianing limits\nis kept. Linked from PR comments instructing contributors how to fix\ntheir PRs." + "\npath, relative to the repo, where the config file containing limits\nis kept. Linked from PR comments instructing contributors how to fix\ntheir PRs." ], "signature": [ "string | undefined" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -488,7 +514,8 @@ " | undefined" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -504,6 +531,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ci-stats-reporter", @@ -524,7 +552,8 @@ } ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -546,7 +575,8 @@ "[]" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -560,6 +590,7 @@ "description": [], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ci-stats-reporter", @@ -571,7 +602,8 @@ "\nISO-8601 formatted datetime representing when the group of tests started running" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -583,7 +615,8 @@ "\nThe number of miliseconds that the tests ran for" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -595,7 +628,8 @@ "\nThe type of tests run in this group, any value is valid but test groups are groupped by type in the UI so use something consistent" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -607,7 +641,8 @@ "\nThe name of this specific group (within the \"type\")" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -622,7 +657,8 @@ "\"fail\" | \"pass\" | \"skip\"" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -637,7 +673,8 @@ "CiStatsMetadata" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -651,6 +688,7 @@ "description": [], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ci-stats-reporter", @@ -662,7 +700,8 @@ "\nISO-8601 formatted datetime representing when the tests started running" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -674,7 +713,8 @@ "\nDuration of the tests in milliseconds" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -686,7 +726,8 @@ "\nA sequence number, this is used to order the tests in a specific test run" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -701,7 +742,8 @@ "\"after all hook\" | \"after each hook\" | \"before all hook\" | \"before each hook\" | \"test\"" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -716,7 +758,8 @@ "\"fail\" | \"pass\" | \"skip\"" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -731,7 +774,8 @@ "string[]" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -743,7 +787,8 @@ "\nThe name of this specific test run" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -755,7 +800,8 @@ "\nRelative path from the root of the repo contianing this test" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -770,7 +816,8 @@ "string | undefined" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -785,7 +832,8 @@ "string | undefined" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -800,7 +848,8 @@ "{ name: string; base64Png: string; }[] | undefined" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -816,6 +865,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ci-stats-reporter", @@ -827,7 +877,8 @@ "Top-level categorization for the timing, e.g. \"scripts/foo\", process type, etc." ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -839,7 +890,8 @@ "Specific timing (witin the \"group\" being tracked) e.g. \"total\"" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -851,7 +903,8 @@ "time in milliseconds which should be recorded" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -867,7 +920,8 @@ " | undefined" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -883,6 +937,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ci-stats-reporter", @@ -898,7 +953,8 @@ " | undefined" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -914,6 +970,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ci-stats-reporter", @@ -935,7 +992,8 @@ "[]" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -950,7 +1008,8 @@ "string | undefined" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ci-stats-reporter", @@ -965,7 +1024,8 @@ "string | null | undefined" ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -985,6 +1045,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -999,6 +1060,7 @@ ], "path": "packages/kbn-ci-stats-reporter/src/ci_stats_test_group_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_ci_stats_reporter.mdx b/api_docs/kbn_ci_stats_reporter.mdx index dc5e8c79acab8..9f99819517f57 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_cli_dev_mode.devdocs.json index 8c46a55b9e382..2f1b44dd52f5e 100644 --- a/api_docs/kbn_cli_dev_mode.devdocs.json +++ b/api_docs/kbn_cli_dev_mode.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/kbn-cli-dev-mode/src/bootstrap.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/cli-dev-mode", @@ -36,6 +37,7 @@ ], "path": "packages/kbn-cli-dev-mode/src/bootstrap.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_cli_dev_mode.mdx b/api_docs/kbn_cli_dev_mode.mdx index fd34dab65f093..296dc4ec77bac 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/cli-dev-mode'] --- import kbnCliDevModeObj from './kbn_cli_dev_mode.devdocs.json'; diff --git a/api_docs/kbn_coloring.devdocs.json b/api_docs/kbn_coloring.devdocs.json index 3533691ae415d..f8c78bf06c6b9 100644 --- a/api_docs/kbn_coloring.devdocs.json +++ b/api_docs/kbn_coloring.devdocs.json @@ -39,6 +39,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -59,6 +60,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -85,6 +87,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -105,6 +108,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -127,6 +131,7 @@ ], "path": "packages/kbn-coloring/src/shared_components/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -140,7 +145,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -157,12 +163,13 @@ "signature": [ "React.ExoticComponent<", "CustomizablePaletteProps", - "> & { readonly _result: ({ palettes, activePalette, setPalette, dataBounds, showExtraActions, showRangeTypeSelector, disableSwitchingContinuity, displayInfinity, }: ", + "> & { readonly _result: ({ palettes, activePalette, setPalette, dataBounds, showExtraActions, showRangeTypeSelector, disableSwitchingContinuity, }: ", "CustomizablePaletteProps", ") => JSX.Element; }" ], "path": "packages/kbn-coloring/src/shared_components/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -176,7 +183,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -201,6 +209,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -214,6 +223,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -234,6 +244,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -259,6 +270,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -272,6 +284,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -316,6 +329,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -335,6 +349,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -355,6 +370,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -366,6 +382,7 @@ "description": [], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -378,7 +395,8 @@ "string | undefined" ], "path": "packages/kbn-coloring/src/palettes/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -397,7 +415,8 @@ } ], "path": "packages/kbn-coloring/src/palettes/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -410,7 +429,8 @@ "boolean | undefined" ], "path": "packages/kbn-coloring/src/palettes/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -423,7 +443,8 @@ "string | undefined" ], "path": "packages/kbn-coloring/src/palettes/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -459,6 +480,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -479,6 +501,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -500,6 +523,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -514,6 +538,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -540,6 +565,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -560,6 +586,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -571,6 +598,7 @@ "description": [], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -580,7 +608,8 @@ "label": "newInterval", "description": [], "path": "packages/kbn-coloring/src/palettes/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -590,7 +619,8 @@ "label": "oldInterval", "description": [], "path": "packages/kbn-coloring/src/palettes/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -600,7 +630,8 @@ "label": "newMin", "description": [], "path": "packages/kbn-coloring/src/palettes/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -610,7 +641,8 @@ "label": "oldMin", "description": [], "path": "packages/kbn-coloring/src/palettes/utils.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -638,6 +670,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -658,6 +691,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -676,6 +710,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -689,6 +724,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -703,6 +739,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -729,6 +766,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -749,6 +787,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -763,6 +802,7 @@ ], "path": "packages/kbn-coloring/src/palettes/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -782,6 +822,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -796,7 +837,8 @@ "number | undefined" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -811,7 +853,8 @@ "number | undefined" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -826,7 +869,8 @@ "boolean | undefined" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -841,7 +885,8 @@ "boolean | undefined" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -855,6 +900,7 @@ "description": [], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -864,7 +910,8 @@ "label": "color", "description": [], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -874,7 +921,8 @@ "label": "stop", "description": [], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -888,6 +936,7 @@ "description": [], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -900,7 +949,8 @@ "string | undefined" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -913,7 +963,8 @@ "boolean | undefined" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -926,7 +977,8 @@ "\"number\" | \"percent\" | undefined" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -946,7 +998,8 @@ " | undefined" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -959,7 +1012,8 @@ "\"fixed\" | undefined" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -972,7 +1026,8 @@ "number | undefined" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -985,7 +1040,8 @@ "number | undefined" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -1005,7 +1061,8 @@ "[] | undefined" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -1025,7 +1082,8 @@ "[] | undefined" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -1038,7 +1096,8 @@ "number | undefined" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -1051,7 +1110,8 @@ "number | undefined" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1065,6 +1125,7 @@ "description": [], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -1074,7 +1135,8 @@ "label": "min", "description": [], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -1084,7 +1146,8 @@ "label": "max", "description": [], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -1097,7 +1160,8 @@ "boolean | undefined" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1123,6 +1187,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -1134,7 +1199,8 @@ "\nUnique id of the palette (this will be persisted along with the visualization state)" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -1146,7 +1212,8 @@ "\nUser facing title (should be i18n-ized)" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -1161,7 +1228,8 @@ "boolean | undefined" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -1178,6 +1246,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -1193,6 +1262,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1228,6 +1298,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -1250,6 +1321,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1271,6 +1343,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1287,6 +1360,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1306,6 +1380,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -1319,6 +1394,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1333,6 +1409,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1351,7 +1428,8 @@ "boolean | undefined" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -1367,6 +1445,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -1380,6 +1459,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1394,6 +1474,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1405,6 +1486,7 @@ "description": [], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -1414,7 +1496,8 @@ "label": "min", "description": [], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -1424,7 +1507,8 @@ "label": "max", "description": [], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1453,6 +1537,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -1465,7 +1550,8 @@ "\"palette\" | \"system_palette\"" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -1475,7 +1561,8 @@ "label": "name", "description": [], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -1488,7 +1575,8 @@ "T | undefined" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1502,6 +1590,7 @@ "description": [], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -1523,6 +1612,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -1536,6 +1626,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1561,6 +1652,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1578,6 +1670,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/coloring", @@ -1589,7 +1682,8 @@ "\nName of the series (can be used for lookup-based coloring)" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -1601,7 +1695,8 @@ "\nRank of the series compared to siblings with the same ancestor" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/coloring", @@ -1613,7 +1708,8 @@ "\nTotal number of series with the same ancestor" ], "path": "packages/kbn-coloring/src/palettes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1633,6 +1729,7 @@ ], "path": "packages/kbn-coloring/src/palettes/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1647,6 +1744,7 @@ ], "path": "packages/kbn-coloring/src/palettes/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1661,6 +1759,7 @@ ], "path": "packages/kbn-coloring/src/palettes/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1675,6 +1774,7 @@ ], "path": "packages/kbn-coloring/src/palettes/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1689,6 +1789,7 @@ ], "path": "packages/kbn-coloring/src/palettes/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1703,6 +1804,7 @@ ], "path": "packages/kbn-coloring/src/palettes/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1717,6 +1819,7 @@ ], "path": "packages/kbn-coloring/src/palettes/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1731,6 +1834,7 @@ ], "path": "packages/kbn-coloring/src/palettes/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1745,6 +1849,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1783,6 +1888,7 @@ ], "path": "packages/kbn-coloring/src/palettes/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_coloring.mdx b/api_docs/kbn_coloring.mdx index 4101d97d0ec4d..94885afcb9162 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/coloring'] --- import kbnColoringObj from './kbn_coloring.devdocs.json'; diff --git a/api_docs/kbn_config.devdocs.json b/api_docs/kbn_config.devdocs.json index 1d8c49810f069..ed22f3e9d58ac 100644 --- a/api_docs/kbn_config.devdocs.json +++ b/api_docs/kbn_config.devdocs.json @@ -19,6 +19,7 @@ "description": [], "path": "packages/kbn-config/src/env.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config", @@ -33,7 +34,8 @@ "{ readonly version: string; readonly branch: string; readonly buildNum: number; readonly buildSha: string; readonly dist: boolean; }" ], "path": "packages/kbn-config/src/env.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config", @@ -48,7 +50,8 @@ "{ readonly name: \"production\" | \"development\"; readonly dev: boolean; readonly prod: boolean; }" ], "path": "packages/kbn-config/src/env.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -67,6 +70,7 @@ ], "path": "packages/kbn-config/src/config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config", @@ -80,6 +84,7 @@ ], "path": "packages/kbn-config/src/config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -94,6 +99,7 @@ ], "path": "packages/kbn-config/src/config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -114,6 +120,7 @@ ], "path": "packages/kbn-config/src/config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config", @@ -129,6 +136,7 @@ ], "path": "packages/kbn-config/src/config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -148,6 +156,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config", @@ -160,7 +169,8 @@ "string[]" ], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config", @@ -173,7 +183,8 @@ "string[]" ], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -189,6 +200,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config", @@ -201,7 +213,8 @@ "{ path: string; value: any; }[] | undefined" ], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config", @@ -214,7 +227,8 @@ "{ path: string; }[] | undefined" ], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -230,6 +244,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config", @@ -241,7 +256,8 @@ "The current Kibana version, e.g `7.16.1`, `8.0.0`" ], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config", @@ -253,7 +269,8 @@ "The current Kibana branch, e.g `7.x`, `7.16`, `master`" ], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config", @@ -268,7 +285,8 @@ "DocLinks" ], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -284,6 +302,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config", @@ -308,6 +327,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config", @@ -321,6 +341,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -335,6 +356,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -349,6 +371,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -377,6 +400,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config", @@ -390,6 +414,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -404,6 +429,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -418,6 +444,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -446,6 +473,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config", @@ -459,6 +487,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -473,6 +502,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -487,6 +517,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -515,6 +546,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config", @@ -528,6 +560,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -542,6 +575,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -556,6 +590,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -584,6 +619,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config", @@ -597,6 +633,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -611,6 +648,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -639,6 +677,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config", @@ -652,6 +691,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -666,6 +706,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -685,6 +726,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config", @@ -696,7 +738,8 @@ "The path of the deprecated config setting" ], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config", @@ -711,7 +754,8 @@ "string | undefined" ], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config", @@ -723,7 +767,8 @@ "The message to be displayed for the deprecation." ], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config", @@ -738,7 +783,8 @@ "\"warning\" | \"critical\"" ], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config", @@ -753,7 +799,8 @@ "boolean | undefined" ], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config", @@ -768,7 +815,8 @@ "string | undefined" ], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config", @@ -783,7 +831,8 @@ "{ manualSteps: string[]; }" ], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -797,6 +846,7 @@ "description": [], "path": "packages/kbn-config/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config", @@ -809,7 +859,8 @@ "\"production\" | \"development\"" ], "path": "packages/kbn-config/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config", @@ -819,7 +870,8 @@ "label": "dev", "description": [], "path": "packages/kbn-config/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config", @@ -829,7 +881,8 @@ "label": "prod", "description": [], "path": "packages/kbn-config/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -843,6 +896,7 @@ "description": [], "path": "packages/kbn-config/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config", @@ -852,7 +906,8 @@ "label": "version", "description": [], "path": "packages/kbn-config/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config", @@ -862,7 +917,8 @@ "label": "branch", "description": [], "path": "packages/kbn-config/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config", @@ -872,7 +928,8 @@ "label": "buildNum", "description": [], "path": "packages/kbn-config/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config", @@ -882,7 +939,8 @@ "label": "buildSha", "description": [], "path": "packages/kbn-config/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config", @@ -892,7 +950,8 @@ "label": "dist", "description": [], "path": "packages/kbn-config/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -922,6 +981,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -941,7 +1001,8 @@ } ], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -983,6 +1044,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -998,7 +1060,8 @@ "{ readonly [x: string]: any; }" ], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config", @@ -1008,7 +1071,8 @@ "label": "fromPath", "description": [], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config", @@ -1030,6 +1094,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1049,7 +1114,8 @@ } ], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1070,7 +1136,8 @@ } ], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1105,6 +1172,7 @@ ], "path": "packages/kbn-config/src/deprecation/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1124,7 +1192,8 @@ } ], "path": "packages/kbn-config/src/deprecation/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1141,6 +1210,7 @@ ], "path": "packages/kbn-config/src/config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1155,6 +1225,7 @@ ], "path": "packages/kbn-config/src/raw/raw_config_service.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1168,7 +1239,8 @@ "{ [x: string]: any; }" ], "path": "packages/kbn-config/src/raw/raw_config_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1187,6 +1259,7 @@ ], "path": "packages/kbn-config/src/raw/raw_config_service.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_config.mdx b/api_docs/kbn_config.mdx index 746a5597925b1..e5bf6e1dbfb83 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/config'] --- import kbnConfigObj from './kbn_config.devdocs.json'; diff --git a/api_docs/kbn_config_mocks.devdocs.json b/api_docs/kbn_config_mocks.devdocs.json index 37f34e99f2e4d..07f519cb4e4a0 100644 --- a/api_docs/kbn_config_mocks.devdocs.json +++ b/api_docs/kbn_config_mocks.devdocs.json @@ -26,6 +26,7 @@ ], "path": "packages/kbn-config-mocks/src/env.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-mocks", @@ -41,6 +42,7 @@ ], "path": "packages/kbn-config-mocks/src/env.mock.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -63,6 +65,7 @@ ], "path": "packages/kbn-config-mocks/src/deprecations.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -84,6 +87,7 @@ ], "path": "packages/kbn-config-mocks/src/config.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -127,6 +131,7 @@ ], "path": "packages/kbn-config-mocks/src/config_service.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -147,6 +152,7 @@ ], "path": "packages/kbn-config-mocks/src/raw_config_service.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -160,6 +166,7 @@ "description": [], "path": "packages/kbn-config-mocks/src/deprecations.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-mocks", @@ -174,6 +181,7 @@ ], "path": "packages/kbn-config-mocks/src/deprecations.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -189,6 +197,7 @@ "description": [], "path": "packages/kbn-config-mocks/src/config.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-mocks", @@ -209,6 +218,7 @@ ], "path": "packages/kbn-config-mocks/src/config.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -224,6 +234,7 @@ "description": [], "path": "packages/kbn-config-mocks/src/config_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-mocks", @@ -244,6 +255,7 @@ ], "path": "packages/kbn-config-mocks/src/config_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -257,7 +269,8 @@ "{ atPath?: Record | undefined; getConfig$?: Record | undefined; }" ], "path": "packages/kbn-config-mocks/src/config_service.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -273,6 +286,7 @@ "description": [], "path": "packages/kbn-config-mocks/src/raw_config_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-mocks", @@ -295,6 +309,7 @@ ], "path": "packages/kbn-config-mocks/src/raw_config_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -310,7 +325,8 @@ "> | undefined; }" ], "path": "packages/kbn-config-mocks/src/raw_config_service.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kbn_config_mocks.mdx b/api_docs/kbn_config_mocks.mdx index 8b824f59c015e..710c8557fec4e 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/config-mocks'] --- import kbnConfigMocksObj from './kbn_config_mocks.devdocs.json'; diff --git a/api_docs/kbn_config_schema.devdocs.json b/api_docs/kbn_config_schema.devdocs.json index 8d3665d262c60..dffe21fe32845 100644 --- a/api_docs/kbn_config_schema.devdocs.json +++ b/api_docs/kbn_config_schema.devdocs.json @@ -37,6 +37,7 @@ ], "path": "packages/kbn-config-schema/src/types/any_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -50,6 +51,7 @@ ], "path": "packages/kbn-config-schema/src/types/any_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -64,6 +66,7 @@ ], "path": "packages/kbn-config-schema/src/types/any_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -81,6 +84,7 @@ ], "path": "packages/kbn-config-schema/src/types/any_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -94,6 +98,7 @@ ], "path": "packages/kbn-config-schema/src/types/any_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -108,6 +113,7 @@ ], "path": "packages/kbn-config-schema/src/types/any_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -125,6 +131,7 @@ "description": [], "path": "packages/kbn-config-schema/src/byte_size_value/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -145,6 +152,7 @@ ], "path": "packages/kbn-config-schema/src/byte_size_value/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -158,6 +166,7 @@ ], "path": "packages/kbn-config-schema/src/byte_size_value/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -175,6 +184,7 @@ ], "path": "packages/kbn-config-schema/src/byte_size_value/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -188,6 +198,7 @@ ], "path": "packages/kbn-config-schema/src/byte_size_value/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -213,6 +224,7 @@ ], "path": "packages/kbn-config-schema/src/byte_size_value/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -232,6 +244,7 @@ ], "path": "packages/kbn-config-schema/src/byte_size_value/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -257,6 +270,7 @@ ], "path": "packages/kbn-config-schema/src/byte_size_value/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -276,6 +290,7 @@ ], "path": "packages/kbn-config-schema/src/byte_size_value/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -301,6 +316,7 @@ ], "path": "packages/kbn-config-schema/src/byte_size_value/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -320,6 +336,7 @@ ], "path": "packages/kbn-config-schema/src/byte_size_value/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -337,6 +354,7 @@ ], "path": "packages/kbn-config-schema/src/byte_size_value/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -354,6 +372,7 @@ ], "path": "packages/kbn-config-schema/src/byte_size_value/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -368,6 +387,7 @@ ], "path": "packages/kbn-config-schema/src/byte_size_value/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -403,6 +423,7 @@ ], "path": "packages/kbn-config-schema/src/types/conditional_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -416,6 +437,7 @@ ], "path": "packages/kbn-config-schema/src/types/conditional_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -430,6 +452,7 @@ ], "path": "packages/kbn-config-schema/src/types/conditional_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -454,6 +477,7 @@ ], "path": "packages/kbn-config-schema/src/types/conditional_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -475,6 +499,7 @@ ], "path": "packages/kbn-config-schema/src/types/conditional_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -496,6 +521,7 @@ ], "path": "packages/kbn-config-schema/src/types/conditional_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -511,6 +537,7 @@ ], "path": "packages/kbn-config-schema/src/types/conditional_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -528,6 +555,7 @@ ], "path": "packages/kbn-config-schema/src/types/conditional_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -541,6 +569,7 @@ ], "path": "packages/kbn-config-schema/src/types/conditional_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -555,6 +584,7 @@ ], "path": "packages/kbn-config-schema/src/types/conditional_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -606,6 +636,7 @@ ], "path": "packages/kbn-config-schema/src/types/object_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -619,6 +650,7 @@ ], "path": "packages/kbn-config-schema/src/types/object_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -632,6 +664,7 @@ ], "path": "packages/kbn-config-schema/src/types/object_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -647,6 +680,7 @@ ], "path": "packages/kbn-config-schema/src/types/object_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -674,6 +708,7 @@ ], "path": "packages/kbn-config-schema/src/types/object_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -687,6 +722,7 @@ ], "path": "packages/kbn-config-schema/src/types/object_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -701,6 +737,7 @@ ], "path": "packages/kbn-config-schema/src/types/object_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -718,6 +755,7 @@ ], "path": "packages/kbn-config-schema/src/types/object_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -731,6 +769,7 @@ ], "path": "packages/kbn-config-schema/src/types/object_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -745,6 +784,7 @@ ], "path": "packages/kbn-config-schema/src/types/object_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -762,6 +802,7 @@ ], "path": "packages/kbn-config-schema/src/types/object_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -775,6 +816,7 @@ ], "path": "packages/kbn-config-schema/src/types/object_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -789,6 +831,7 @@ ], "path": "packages/kbn-config-schema/src/types/object_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -817,6 +860,7 @@ ], "path": "packages/kbn-config-schema/src/errors/schema_type_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -830,6 +874,7 @@ ], "path": "packages/kbn-config-schema/src/errors/schema_type_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -843,6 +888,7 @@ ], "path": "packages/kbn-config-schema/src/errors/schema_type_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -857,6 +903,7 @@ ], "path": "packages/kbn-config-schema/src/errors/schema_type_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -884,6 +931,7 @@ ], "path": "packages/kbn-config-schema/src/types/type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -896,7 +944,8 @@ "V" ], "path": "packages/kbn-config-schema/src/types/type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config-schema", @@ -909,7 +958,8 @@ "true" ], "path": "packages/kbn-config-schema/src/types/type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config-schema", @@ -926,7 +976,8 @@ "AnySchema" ], "path": "packages/kbn-config-schema/src/types/type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config-schema", @@ -940,6 +991,7 @@ ], "path": "packages/kbn-config-schema/src/types/type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -953,6 +1005,7 @@ ], "path": "packages/kbn-config-schema/src/types/type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -968,6 +1021,7 @@ ], "path": "packages/kbn-config-schema/src/types/type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -985,6 +1039,7 @@ ], "path": "packages/kbn-config-schema/src/types/type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -998,6 +1053,7 @@ ], "path": "packages/kbn-config-schema/src/types/type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1012,6 +1068,7 @@ ], "path": "packages/kbn-config-schema/src/types/type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1026,6 +1083,7 @@ ], "path": "packages/kbn-config-schema/src/types/type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1051,6 +1109,7 @@ ], "path": "packages/kbn-config-schema/src/types/type.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1073,6 +1132,7 @@ ], "path": "packages/kbn-config-schema/src/types/type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -1086,6 +1146,7 @@ ], "path": "packages/kbn-config-schema/src/types/type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1100,6 +1161,7 @@ ], "path": "packages/kbn-config-schema/src/types/type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1114,6 +1176,7 @@ ], "path": "packages/kbn-config-schema/src/types/type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1142,6 +1205,7 @@ ], "path": "packages/kbn-config-schema/src/errors/validation_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -1155,6 +1219,7 @@ ], "path": "packages/kbn-config-schema/src/errors/validation_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -1174,6 +1239,7 @@ ], "path": "packages/kbn-config-schema/src/errors/validation_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1188,6 +1254,7 @@ ], "path": "packages/kbn-config-schema/src/errors/validation_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1210,6 +1277,7 @@ ], "path": "packages/kbn-config-schema/src/typeguards/is_config_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -1223,6 +1291,7 @@ ], "path": "packages/kbn-config-schema/src/typeguards/is_config_schema.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1240,6 +1309,7 @@ "description": [], "path": "packages/kbn-config-schema/src/types/type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -1252,7 +1322,8 @@ "string[]" ], "path": "packages/kbn-config-schema/src/types/type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config-schema", @@ -1262,7 +1333,8 @@ "label": "type", "description": [], "path": "packages/kbn-config-schema/src/types/type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1290,6 +1362,7 @@ ], "path": "packages/kbn-config-schema/src/types/object_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1312,6 +1385,7 @@ ], "path": "packages/kbn-config-schema/src/types/object_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2158,6 +2232,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2172,6 +2247,7 @@ ], "path": "packages/kbn-config-schema/src/types/object_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -2185,6 +2261,7 @@ "description": [], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/config-schema", @@ -2207,6 +2284,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2221,7 +2299,8 @@ " | undefined" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2255,6 +2334,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2275,7 +2355,8 @@ "" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config-schema", @@ -2289,7 +2370,8 @@ " | undefined" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2315,6 +2397,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2329,7 +2412,8 @@ " | undefined" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2355,6 +2439,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2369,7 +2454,8 @@ " | undefined" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2403,6 +2489,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2417,7 +2504,8 @@ " | undefined" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2473,6 +2561,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2487,7 +2576,8 @@ "" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config-schema", @@ -2509,7 +2599,8 @@ "" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config-schema", @@ -2529,7 +2620,8 @@ "" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config-schema", @@ -2549,7 +2641,8 @@ "" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config-schema", @@ -2563,7 +2656,8 @@ " | undefined" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2581,6 +2675,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2591,7 +2686,8 @@ "label": "key", "description": [], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2617,6 +2713,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2631,7 +2728,8 @@ " | undefined" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2657,6 +2755,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2671,7 +2770,8 @@ " | undefined" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2695,6 +2795,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2708,7 +2809,8 @@ "T" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2750,6 +2852,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2770,7 +2873,8 @@ "" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config-schema", @@ -2790,7 +2894,8 @@ "" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config-schema", @@ -2804,7 +2909,8 @@ " | undefined" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2836,6 +2942,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2856,7 +2963,8 @@ "" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2888,6 +2996,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2908,7 +3017,8 @@ "" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2932,6 +3042,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -2957,6 +3068,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2971,7 +3083,8 @@ " | undefined" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3005,6 +3118,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3018,7 +3132,8 @@ "P" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config-schema", @@ -3032,7 +3147,8 @@ "

| undefined" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3587,7 +3703,8 @@ "; }" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config-schema", @@ -3627,6 +3744,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3647,7 +3765,8 @@ "" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config-schema", @@ -3667,7 +3786,8 @@ "" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/config-schema", @@ -3681,7 +3801,8 @@ " | undefined" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3711,6 +3832,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3727,7 +3849,8 @@ "> | undefined" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3745,6 +3868,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3755,7 +3879,8 @@ "label": "key", "description": [], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3781,6 +3906,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3795,7 +3921,8 @@ " | undefined" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3821,6 +3948,7 @@ ], "path": "packages/kbn-config-schema/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3835,7 +3963,8 @@ " | undefined" ], "path": "packages/kbn-config-schema/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kbn_config_schema.mdx b/api_docs/kbn_config_schema.mdx index 91e6c6678e960..59050347d3e1d 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/config-schema'] --- import kbnConfigSchemaObj from './kbn_config_schema.devdocs.json'; diff --git a/api_docs/kbn_core_analytics_browser.devdocs.json b/api_docs/kbn_core_analytics_browser.devdocs.json index 7cb2e58a1c1cf..df9feddd3b17a 100644 --- a/api_docs/kbn_core_analytics_browser.devdocs.json +++ b/api_docs/kbn_core_analytics_browser.devdocs.json @@ -52,6 +52,7 @@ ], "path": "packages/core/analytics/core-analytics-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -74,6 +75,7 @@ ], "path": "packages/core/analytics/core-analytics-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_analytics_browser.mdx b/api_docs/kbn_core_analytics_browser.mdx index 11517290237d5..4de5f236edc48 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_analytics_browser_internal.devdocs.json index 6f83d74200b91..13176eda7ae3f 100644 --- a/api_docs/kbn_core_analytics_browser_internal.devdocs.json +++ b/api_docs/kbn_core_analytics_browser_internal.devdocs.json @@ -27,6 +27,7 @@ "description": [], "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-analytics-browser-internal", @@ -40,6 +41,7 @@ ], "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-analytics-browser-internal", @@ -53,6 +55,7 @@ ], "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -73,6 +76,7 @@ ], "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-analytics-browser-internal", @@ -86,6 +90,7 @@ ], "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -104,6 +109,7 @@ ], "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -119,6 +125,7 @@ ], "path": "packages/core/analytics/core-analytics-browser-internal/src/analytics_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } diff --git a/api_docs/kbn_core_analytics_browser_internal.mdx b/api_docs/kbn_core_analytics_browser_internal.mdx index 2e9299cd6baf0..17666254be1d6 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_analytics_browser_mocks.devdocs.json index 6a05b53e9e44d..edc408199dbc2 100644 --- a/api_docs/kbn_core_analytics_browser_mocks.devdocs.json +++ b/api_docs/kbn_core_analytics_browser_mocks.devdocs.json @@ -32,6 +32,7 @@ "description": [], "path": "packages/core/analytics/core-analytics-browser-mocks/src/analytics_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-analytics-browser-mocks", @@ -45,6 +46,7 @@ ], "path": "packages/core/analytics/core-analytics-browser-mocks/src/analytics_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -62,6 +64,7 @@ ], "path": "packages/core/analytics/core-analytics-browser-mocks/src/analytics_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -79,6 +82,7 @@ ], "path": "packages/core/analytics/core-analytics-browser-mocks/src/analytics_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_analytics_browser_mocks.mdx b/api_docs/kbn_core_analytics_browser_mocks.mdx index 9b85445dbd003..d1ab2d84b53c3 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_analytics_server.devdocs.json index 622c76c39b920..a675d4ad90684 100644 --- a/api_docs/kbn_core_analytics_server.devdocs.json +++ b/api_docs/kbn_core_analytics_server.devdocs.json @@ -44,6 +44,7 @@ ], "path": "packages/core/analytics/core-analytics-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -76,6 +77,7 @@ ], "path": "packages/core/analytics/core-analytics-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -98,6 +100,7 @@ ], "path": "packages/core/analytics/core-analytics-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_analytics_server.mdx b/api_docs/kbn_core_analytics_server.mdx index 14ee4919b6014..90bc6b5afe237 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_analytics_server_internal.devdocs.json index fda46f67f4a16..5f04684c1b169 100644 --- a/api_docs/kbn_core_analytics_server_internal.devdocs.json +++ b/api_docs/kbn_core_analytics_server_internal.devdocs.json @@ -19,6 +19,7 @@ "description": [], "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-analytics-server-internal", @@ -32,6 +33,7 @@ ], "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-analytics-server-internal", @@ -45,6 +47,7 @@ ], "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -63,6 +66,7 @@ ], "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -79,6 +83,7 @@ ], "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -95,6 +100,7 @@ ], "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -110,6 +116,7 @@ ], "path": "packages/core/analytics/core-analytics-server-internal/src/analytics_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } diff --git a/api_docs/kbn_core_analytics_server_internal.mdx b/api_docs/kbn_core_analytics_server_internal.mdx index efd24de4dc261..9d850e4df759d 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_analytics_server_mocks.devdocs.json index 6d6fe2b36e0e5..beb0ce1c497dd 100644 --- a/api_docs/kbn_core_analytics_server_mocks.devdocs.json +++ b/api_docs/kbn_core_analytics_server_mocks.devdocs.json @@ -24,6 +24,7 @@ "description": [], "path": "packages/core/analytics/core-analytics-server-mocks/src/analytics_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-analytics-server-mocks", @@ -37,6 +38,7 @@ ], "path": "packages/core/analytics/core-analytics-server-mocks/src/analytics_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -54,6 +56,7 @@ ], "path": "packages/core/analytics/core-analytics-server-mocks/src/analytics_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -71,6 +74,7 @@ ], "path": "packages/core/analytics/core-analytics-server-mocks/src/analytics_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -88,6 +92,7 @@ ], "path": "packages/core/analytics/core-analytics-server-mocks/src/analytics_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_analytics_server_mocks.mdx b/api_docs/kbn_core_analytics_server_mocks.mdx index dc16cc9b5b539..c5d70f92b8750 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-analytics-server-mocks'] --- import kbnCoreAnalyticsServerMocksObj from './kbn_core_analytics_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_application_browser.devdocs.json b/api_docs/kbn_core_application_browser.devdocs.json index 7942c26ed5f73..afc8071835d8f 100644 --- a/api_docs/kbn_core_application_browser.devdocs.json +++ b/api_docs/kbn_core_application_browser.devdocs.json @@ -46,6 +46,7 @@ ], "path": "packages/core/application/core-application-browser/src/application.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -57,7 +58,8 @@ "\nThe unique identifier of the application.\n\nCan only be composed of alphanumeric characters, `-`, `:` and `_`" ], "path": "packages/core/application/core-application-browser/src/application.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -69,7 +71,8 @@ "\nThe title of the application." ], "path": "packages/core/application/core-application-browser/src/application.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -85,7 +88,8 @@ " | undefined" ], "path": "packages/core/application/core-application-browser/src/application.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -107,7 +111,8 @@ " | undefined" ], "path": "packages/core/application/core-application-browser/src/application.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -129,7 +134,8 @@ " | undefined" ], "path": "packages/core/application/core-application-browser/src/application.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -144,7 +150,8 @@ "boolean | undefined" ], "path": "packages/core/application/core-application-browser/src/application.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -159,7 +166,8 @@ "string | undefined" ], "path": "packages/core/application/core-application-browser/src/application.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -183,7 +191,8 @@ "> | undefined" ], "path": "packages/core/application/core-application-browser/src/application.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -200,7 +209,8 @@ "> | undefined" ], "path": "packages/core/application/core-application-browser/src/application.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -215,7 +225,8 @@ "boolean | undefined" ], "path": "packages/core/application/core-application-browser/src/application.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -255,6 +266,7 @@ ], "path": "packages/core/application/core-application-browser/src/application.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -275,7 +287,8 @@ "" ], "path": "packages/core/application/core-application-browser/src/app_mount.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -292,7 +305,8 @@ "string | undefined" ], "path": "packages/core/application/core-application-browser/src/application.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -307,7 +321,8 @@ "boolean | undefined" ], "path": "packages/core/application/core-application-browser/src/application.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -322,7 +337,8 @@ "string[] | undefined" ], "path": "packages/core/application/core-application-browser/src/application.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -344,7 +360,8 @@ "[] | undefined" ], "path": "packages/core/application/core-application-browser/src/application.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -360,6 +377,7 @@ ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -384,6 +402,7 @@ ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -399,6 +418,7 @@ ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -415,6 +435,7 @@ ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -431,6 +452,7 @@ ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -447,6 +469,7 @@ ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -464,6 +487,7 @@ ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -490,6 +514,7 @@ ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -507,6 +532,7 @@ ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -526,7 +552,8 @@ ".confirm" ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -536,7 +563,8 @@ "label": "text", "description": [], "path": "packages/core/application/core-application-browser/src/app_leave.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -549,7 +577,8 @@ "string | undefined" ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -562,7 +591,8 @@ "string | undefined" ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -576,7 +606,8 @@ " | undefined" ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -590,6 +621,7 @@ ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -607,6 +639,7 @@ ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -626,7 +659,8 @@ ".default" ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -640,6 +674,7 @@ "description": [], "path": "packages/core/application/core-application-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -663,6 +698,7 @@ ], "path": "packages/core/application/core-application-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -685,6 +721,7 @@ ], "path": "packages/core/application/core-application-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -714,6 +751,7 @@ ], "path": "packages/core/application/core-application-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -736,6 +774,7 @@ ], "path": "packages/core/application/core-application-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -753,6 +792,7 @@ "description": [], "path": "packages/core/application/core-application-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -767,7 +807,8 @@ "{ readonly [x: string]: Readonly<{ [x: string]: boolean | Readonly<{ [x: string]: boolean; }>; }>; readonly navLinks: Readonly<{ [x: string]: boolean; }>; readonly management: Readonly<{ [x: string]: Readonly<{ [x: string]: boolean; }>; }>; readonly catalogue: Readonly<{ [x: string]: boolean; }>; }" ], "path": "packages/core/application/core-application-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -791,7 +832,8 @@ ">>" ], "path": "packages/core/application/core-application-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -815,6 +857,7 @@ ], "path": "packages/core/application/core-application-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -828,6 +871,7 @@ ], "path": "packages/core/application/core-application-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -851,6 +895,7 @@ ], "path": "packages/core/application/core-application-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -878,6 +923,7 @@ ], "path": "packages/core/application/core-application-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -893,6 +939,7 @@ ], "path": "packages/core/application/core-application-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -916,6 +963,7 @@ ], "path": "packages/core/application/core-application-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -935,6 +983,7 @@ ], "path": "packages/core/application/core-application-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -948,6 +997,7 @@ ], "path": "packages/core/application/core-application-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -959,6 +1009,7 @@ "description": [], "path": "packages/core/application/core-application-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -971,7 +1022,8 @@ "string | undefined" ], "path": "packages/core/application/core-application-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -984,7 +1036,8 @@ "boolean | undefined" ], "path": "packages/core/application/core-application-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -997,7 +1050,8 @@ "string | undefined" ], "path": "packages/core/application/core-application-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1018,7 +1072,8 @@ "" ], "path": "packages/core/application/core-application-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1042,6 +1097,7 @@ ], "path": "packages/core/application/core-application-browser/src/app_mount.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -1056,7 +1112,8 @@ "HTMLElement" ], "path": "packages/core/application/core-application-browser/src/app_mount.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -1078,7 +1135,8 @@ "" ], "path": "packages/core/application/core-application-browser/src/app_mount.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -1094,6 +1152,7 @@ "path": "packages/core/application/core-application-browser/src/app_mount.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [] }, { @@ -1121,6 +1180,7 @@ "path": "packages/core/application/core-application-browser/src/app_mount.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [], "children": [ { @@ -1141,6 +1201,7 @@ ], "path": "packages/core/application/core-application-browser/src/app_mount.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1162,6 +1223,7 @@ ], "path": "packages/core/application/core-application-browser/src/app_mount.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -1176,6 +1238,7 @@ ], "path": "packages/core/application/core-application-browser/src/app_mount.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1197,7 +1260,8 @@ ">" ], "path": "packages/core/application/core-application-browser/src/app_mount.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1213,6 +1277,7 @@ ], "path": "packages/core/application/core-application-browser/src/application.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -1227,7 +1292,8 @@ "number | undefined" ], "path": "packages/core/application/core-application-browser/src/application.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -1242,7 +1308,8 @@ "string | undefined" ], "path": "packages/core/application/core-application-browser/src/application.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -1257,7 +1324,8 @@ "string | undefined" ], "path": "packages/core/application/core-application-browser/src/application.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -1272,7 +1340,8 @@ "string | undefined" ], "path": "packages/core/application/core-application-browser/src/application.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1288,6 +1357,7 @@ ], "path": "packages/core/application/core-application-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -1302,7 +1372,8 @@ "string | undefined" ], "path": "packages/core/application/core-application-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -1317,7 +1388,8 @@ "string | undefined" ], "path": "packages/core/application/core-application-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -1332,7 +1404,8 @@ "unknown" ], "path": "packages/core/application/core-application-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -1347,7 +1420,8 @@ "boolean | undefined" ], "path": "packages/core/application/core-application-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -1362,7 +1436,8 @@ "boolean | undefined" ], "path": "packages/core/application/core-application-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -1377,7 +1452,8 @@ "boolean | undefined" ], "path": "packages/core/application/core-application-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1393,6 +1469,7 @@ ], "path": "packages/core/application/core-application-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -1407,7 +1484,8 @@ "boolean | undefined" ], "path": "packages/core/application/core-application-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -1422,7 +1500,8 @@ "boolean | undefined" ], "path": "packages/core/application/core-application-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -1437,7 +1516,8 @@ "unknown" ], "path": "packages/core/application/core-application-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1465,6 +1545,7 @@ ], "path": "packages/core/application/core-application-browser/src/scoped_history.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -1488,6 +1569,7 @@ ], "path": "packages/core/application/core-application-browser/src/scoped_history.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -1503,6 +1585,7 @@ ], "path": "packages/core/application/core-application-browser/src/scoped_history.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1524,6 +1607,7 @@ ], "path": "packages/core/application/core-application-browser/src/scoped_history.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -1538,6 +1622,7 @@ ], "path": "packages/core/application/core-application-browser/src/scoped_history.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1549,6 +1634,7 @@ "description": [], "path": "packages/core/application/core-application-browser/src/scoped_history.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser", @@ -1561,7 +1647,8 @@ "boolean | undefined" ], "path": "packages/core/application/core-application-browser/src/scoped_history.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1584,6 +1671,7 @@ ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1597,6 +1685,7 @@ ], "path": "packages/core/application/core-application-browser/src/application.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1610,6 +1699,7 @@ ], "path": "packages/core/application/core-application-browser/src/application.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1660,6 +1750,7 @@ ], "path": "packages/core/application/core-application-browser/src/application.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1690,6 +1781,7 @@ ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1724,6 +1816,7 @@ "path": "packages/core/application/core-application-browser/src/app_leave.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [], "returnComment": [], "children": [ @@ -1744,7 +1837,8 @@ } ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser", @@ -1757,7 +1851,8 @@ "string | undefined" ], "path": "packages/core/application/core-application-browser/src/app_leave.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1800,6 +1895,7 @@ ], "path": "packages/core/application/core-application-browser/src/app_mount.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [ "An unmounting function that will be called to unmount the application. See {@link AppUnmount }." ], @@ -1824,7 +1920,8 @@ "" ], "path": "packages/core/application/core-application-browser/src/app_mount.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1843,6 +1940,7 @@ ], "path": "packages/core/application/core-application-browser/src/app_mount.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -1885,6 +1983,7 @@ ], "path": "packages/core/application/core-application-browser/src/application.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1917,6 +2016,7 @@ ], "path": "packages/core/application/core-application-browser/src/application.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1937,7 +2037,8 @@ "" ], "path": "packages/core/application/core-application-browser/src/application.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1980,6 +2081,7 @@ ], "path": "packages/core/application/core-application-browser/src/application.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2028,6 +2130,7 @@ ], "path": "packages/core/application/core-application-browser/src/application.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_application_browser.mdx b/api_docs/kbn_core_application_browser.mdx index f46981e8a2324..6cc7d0b4866db 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_application_browser_internal.devdocs.json index 93699101317c3..afa55347fdb2d 100644 --- a/api_docs/kbn_core_application_browser_internal.devdocs.json +++ b/api_docs/kbn_core_application_browser_internal.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/core/application/core-application-browser-internal/src/utils/append_app_path.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser-internal", @@ -44,6 +45,7 @@ ], "path": "packages/core/application/core-application-browser-internal/src/utils/append_app_path.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -58,6 +60,7 @@ ], "path": "packages/core/application/core-application-browser-internal/src/utils/append_app_path.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -79,6 +82,7 @@ ], "path": "packages/core/application/core-application-browser-internal/src/utils/get_app_info.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser-internal", @@ -93,6 +97,7 @@ ], "path": "packages/core/application/core-application-browser-internal/src/utils/get_app_info.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -119,6 +124,7 @@ ], "path": "packages/core/application/core-application-browser-internal/src/utils/parse_app_url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser-internal", @@ -132,6 +138,7 @@ ], "path": "packages/core/application/core-application-browser-internal/src/utils/parse_app_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -146,6 +153,7 @@ ], "path": "packages/core/application/core-application-browser-internal/src/utils/parse_app_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -162,6 +170,7 @@ ], "path": "packages/core/application/core-application-browser-internal/src/utils/parse_app_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -176,6 +185,7 @@ ], "path": "packages/core/application/core-application-browser-internal/src/utils/parse_app_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -196,6 +206,7 @@ ], "path": "packages/core/application/core-application-browser-internal/src/utils/relative_to_absolute.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser-internal", @@ -209,6 +220,7 @@ ], "path": "packages/core/application/core-application-browser-internal/src/utils/relative_to_absolute.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -229,6 +241,7 @@ ], "path": "packages/core/application/core-application-browser-internal/src/utils/remove_slashes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser-internal", @@ -242,6 +255,7 @@ ], "path": "packages/core/application/core-application-browser-internal/src/utils/remove_slashes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -253,6 +267,7 @@ "description": [], "path": "packages/core/application/core-application-browser-internal/src/utils/remove_slashes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser-internal", @@ -265,7 +280,8 @@ "boolean | undefined" ], "path": "packages/core/application/core-application-browser-internal/src/utils/remove_slashes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser-internal", @@ -278,7 +294,8 @@ "boolean | undefined" ], "path": "packages/core/application/core-application-browser-internal/src/utils/remove_slashes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-browser-internal", @@ -291,7 +308,8 @@ "boolean | undefined" ], "path": "packages/core/application/core-application-browser-internal/src/utils/remove_slashes.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kbn_core_application_browser_internal.mdx b/api_docs/kbn_core_application_browser_internal.mdx index df7e0d2a9ec2f..79e8c34727b5d 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_application_browser_mocks.devdocs.json index 6bb377fdd3752..179ed3831178b 100644 --- a/api_docs/kbn_core_application_browser_mocks.devdocs.json +++ b/api_docs/kbn_core_application_browser_mocks.devdocs.json @@ -56,6 +56,7 @@ ], "path": "packages/core/application/core-application-browser-mocks/src/scoped_history.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -69,6 +70,7 @@ "description": [], "path": "packages/core/application/core-application-browser-mocks/src/application_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser-mocks", @@ -82,6 +84,7 @@ ], "path": "packages/core/application/core-application-browser-mocks/src/application_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -99,6 +102,7 @@ ], "path": "packages/core/application/core-application-browser-mocks/src/application_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -116,6 +120,7 @@ ], "path": "packages/core/application/core-application-browser-mocks/src/application_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -133,6 +138,7 @@ ], "path": "packages/core/application/core-application-browser-mocks/src/application_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -150,6 +156,7 @@ ], "path": "packages/core/application/core-application-browser-mocks/src/application_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -169,6 +176,7 @@ ], "path": "packages/core/application/core-application-browser-mocks/src/application_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -192,7 +200,8 @@ "> | undefined; }" ], "path": "packages/core/application/core-application-browser-mocks/src/application_service.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -208,6 +217,7 @@ "description": [], "path": "packages/core/application/core-application-browser-mocks/src/scoped_history.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-browser-mocks", @@ -230,6 +240,7 @@ ], "path": "packages/core/application/core-application-browser-mocks/src/scoped_history.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -243,7 +254,8 @@ "{ pathname?: string | undefined; search?: string | undefined; state?: unknown; hash?: string | undefined; key?: string | undefined; }" ], "path": "packages/core/application/core-application-browser-mocks/src/scoped_history.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kbn_core_application_browser_mocks.mdx b/api_docs/kbn_core_application_browser_mocks.mdx index 9b2d6dd168399..44d5b180671ba 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_application_common.devdocs.json index b81c9616306f4..3bb0e0508319c 100644 --- a/api_docs/kbn_core_application_common.devdocs.json +++ b/api_docs/kbn_core_application_common.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/core/application/core-application-common/src/app_category.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-application-common", @@ -42,7 +43,8 @@ "\nUnique identifier for the categories" ], "path": "packages/core/application/core-application-common/src/app_category.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-common", @@ -54,7 +56,8 @@ "\nLabel used for category name.\nAlso used as aria-label if one isn't set." ], "path": "packages/core/application/core-application-common/src/app_category.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-common", @@ -69,7 +72,8 @@ "string | undefined" ], "path": "packages/core/application/core-application-common/src/app_category.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-common", @@ -84,7 +88,8 @@ "number | undefined" ], "path": "packages/core/application/core-application-common/src/app_category.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-application-common", @@ -99,7 +104,8 @@ "string | undefined" ], "path": "packages/core/application/core-application-common/src/app_category.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -121,6 +127,7 @@ ], "path": "packages/core/application/core-application-common/src/app_wrapper_class.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -145,6 +152,7 @@ ], "path": "packages/core/application/core-application-common/src/default_app_categories.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/kbn_core_application_common.mdx b/api_docs/kbn_core_application_common.mdx index 3eb490e8495b4..5a94eee634d9a 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: 2022-09-05 +date: 2022-09-08 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_base_browser_mocks.devdocs.json b/api_docs/kbn_core_base_browser_mocks.devdocs.json index 66f7ca69015a3..26da0985adf56 100644 --- a/api_docs/kbn_core_base_browser_mocks.devdocs.json +++ b/api_docs/kbn_core_base_browser_mocks.devdocs.json @@ -32,6 +32,7 @@ "description": [], "path": "packages/core/base/core-base-browser-mocks/src/core_context.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-base-browser-mocks", @@ -46,6 +47,7 @@ ], "path": "packages/core/base/core-base-browser-mocks/src/core_context.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -59,7 +61,8 @@ "{ production?: boolean | undefined; }" ], "path": "packages/core/base/core-base-browser-mocks/src/core_context.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kbn_core_base_browser_mocks.mdx b/api_docs/kbn_core_base_browser_mocks.mdx index 23b7115cc6c75..915ba4547bc97 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_base_common.devdocs.json index 1fbce39e5273e..5a164327bf338 100644 --- a/api_docs/kbn_core_base_common.devdocs.json +++ b/api_docs/kbn_core_base_common.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/core/base/core-base-common/src/plugins.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-base-common", @@ -34,7 +35,8 @@ "\nIdentifier of the plugin." ], "path": "packages/core/base/core-base-common/src/plugins.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-base-common", @@ -49,7 +51,8 @@ "string | string[]" ], "path": "packages/core/base/core-base-common/src/plugins.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-base-common", @@ -70,7 +73,8 @@ } ], "path": "packages/core/base/core-base-common/src/plugins.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-base-common", @@ -85,7 +89,8 @@ "readonly string[]" ], "path": "packages/core/base/core-base-common/src/plugins.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-base-common", @@ -100,7 +105,8 @@ "readonly string[]" ], "path": "packages/core/base/core-base-common/src/plugins.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-base-common", @@ -115,7 +121,8 @@ "readonly string[]" ], "path": "packages/core/base/core-base-common/src/plugins.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-base-common", @@ -130,7 +137,8 @@ "boolean | undefined" ], "path": "packages/core/base/core-base-common/src/plugins.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -156,6 +164,7 @@ ], "path": "packages/core/base/core-base-common/src/service_status.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-base-common", @@ -170,7 +179,8 @@ "Readonly<{ toString: () => \"available\"; valueOf: () => 0; toJSON: () => \"available\"; }> | Readonly<{ toString: () => \"degraded\"; valueOf: () => 1; toJSON: () => \"degraded\"; }> | Readonly<{ toString: () => \"unavailable\"; valueOf: () => 2; toJSON: () => \"unavailable\"; }> | Readonly<{ toString: () => \"critical\"; valueOf: () => 3; toJSON: () => \"critical\"; }>" ], "path": "packages/core/base/core-base-common/src/service_status.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-base-common", @@ -182,7 +192,8 @@ "\nA high-level summary of the service status." ], "path": "packages/core/base/core-base-common/src/service_status.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-base-common", @@ -197,7 +208,8 @@ "string | undefined" ], "path": "packages/core/base/core-base-common/src/service_status.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-base-common", @@ -212,7 +224,8 @@ "string | undefined" ], "path": "packages/core/base/core-base-common/src/service_status.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-base-common", @@ -227,7 +240,8 @@ "Meta | undefined" ], "path": "packages/core/base/core-base-common/src/service_status.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -243,6 +257,7 @@ "description": [], "path": "packages/core/base/core-base-common/src/plugins.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -259,6 +274,7 @@ ], "path": "packages/core/base/core-base-common/src/eui.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -275,6 +291,7 @@ ], "path": "packages/core/base/core-base-common/src/plugins.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -289,6 +306,7 @@ ], "path": "packages/core/base/core-base-common/src/plugins.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -305,6 +323,7 @@ ], "path": "packages/core/base/core-base-common/src/service_status.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -323,6 +342,7 @@ ], "path": "packages/core/base/core-base-common/src/service_status.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/kbn_core_base_common.mdx b/api_docs/kbn_core_base_common.mdx index ea484edd1e612..2531446c382d6 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_base_server_internal.devdocs.json index a6e51794dbaa3..55eda9cdfc30a 100644 --- a/api_docs/kbn_core_base_server_internal.devdocs.json +++ b/api_docs/kbn_core_base_server_internal.devdocs.json @@ -29,6 +29,7 @@ ], "path": "packages/core/base/core-base-server-internal/src/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-base-server-internal", @@ -42,6 +43,7 @@ ], "path": "packages/core/base/core-base-server-internal/src/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-base-server-internal", @@ -55,6 +57,7 @@ ], "path": "packages/core/base/core-base-server-internal/src/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -69,6 +72,7 @@ ], "path": "packages/core/base/core-base-server-internal/src/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -83,6 +87,7 @@ ], "path": "packages/core/base/core-base-server-internal/src/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -97,6 +102,7 @@ ], "path": "packages/core/base/core-base-server-internal/src/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -123,6 +129,7 @@ ], "path": "packages/core/base/core-base-server-internal/src/regexp.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/kbn_core_base_server_internal.mdx b/api_docs/kbn_core_base_server_internal.mdx index eb7393556f063..327ea656abef0 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_base_server_mocks.devdocs.json index e3e079b8331f4..5b94ef7a6f470 100644 --- a/api_docs/kbn_core_base_server_mocks.devdocs.json +++ b/api_docs/kbn_core_base_server_mocks.devdocs.json @@ -24,6 +24,7 @@ "description": [], "path": "packages/core/base/core-base-server-mocks/src/core_context.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-base-server-mocks", @@ -47,6 +48,7 @@ ], "path": "packages/core/base/core-base-server-mocks/src/core_context.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -66,7 +68,8 @@ "> | undefined; }" ], "path": "packages/core/base/core-base-server-mocks/src/core_context.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kbn_core_base_server_mocks.mdx b/api_docs/kbn_core_base_server_mocks.mdx index 242026e8a64d4..141177c4ca7d8 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_capabilities_browser_mocks.devdocs.json index 36762937cf25b..f5d505c8100d2 100644 --- a/api_docs/kbn_core_capabilities_browser_mocks.devdocs.json +++ b/api_docs/kbn_core_capabilities_browser_mocks.devdocs.json @@ -32,6 +32,7 @@ "description": [], "path": "packages/core/capabilities/core-capabilities-browser-mocks/src/capabilities_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-capabilities-browser-mocks", @@ -49,6 +50,7 @@ ], "path": "packages/core/capabilities/core-capabilities-browser-mocks/src/capabilities_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -66,6 +68,7 @@ ], "path": "packages/core/capabilities/core-capabilities-browser-mocks/src/capabilities_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_capabilities_browser_mocks.mdx b/api_docs/kbn_core_capabilities_browser_mocks.mdx index c0f81de5033ea..9a72ce6e4bb89 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_capabilities_common.devdocs.json index 428d9901c8c62..254339249dc52 100644 --- a/api_docs/kbn_core_capabilities_common.devdocs.json +++ b/api_docs/kbn_core_capabilities_common.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/core/capabilities/core-capabilities-common/src/capabilities.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-capabilities-common", @@ -45,7 +46,8 @@ "{ [x: string]: boolean; }" ], "path": "packages/core/capabilities/core-capabilities-common/src/capabilities.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-capabilities-common", @@ -60,7 +62,8 @@ "{ [sectionId: string]: Record; }" ], "path": "packages/core/capabilities/core-capabilities-common/src/capabilities.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-capabilities-common", @@ -75,7 +78,8 @@ "{ [x: string]: boolean; }" ], "path": "packages/core/capabilities/core-capabilities-common/src/capabilities.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-capabilities-common", @@ -90,7 +94,8 @@ "[key: string]: Record>" ], "path": "packages/core/capabilities/core-capabilities-common/src/capabilities.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_core_capabilities_common.mdx b/api_docs/kbn_core_capabilities_common.mdx index 1dbf215025d8c..cb1ecb2091a92 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_capabilities_server.devdocs.json index 4713bfc357f49..7847b60af1bcf 100644 --- a/api_docs/kbn_core_capabilities_server.devdocs.json +++ b/api_docs/kbn_core_capabilities_server.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/core/capabilities/core-capabilities-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-capabilities-server", @@ -46,6 +47,7 @@ ], "path": "packages/core/capabilities/core-capabilities-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-capabilities-server", @@ -65,6 +67,7 @@ ], "path": "packages/core/capabilities/core-capabilities-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -92,6 +95,7 @@ ], "path": "packages/core/capabilities/core-capabilities-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-capabilities-server", @@ -111,6 +115,7 @@ ], "path": "packages/core/capabilities/core-capabilities-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -130,6 +135,7 @@ ], "path": "packages/core/capabilities/core-capabilities-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-capabilities-server", @@ -157,6 +163,7 @@ ], "path": "packages/core/capabilities/core-capabilities-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-capabilities-server", @@ -171,6 +178,7 @@ ], "path": "packages/core/capabilities/core-capabilities-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -192,6 +200,7 @@ ], "path": "packages/core/capabilities/core-capabilities-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -211,6 +220,7 @@ ], "path": "packages/core/capabilities/core-capabilities-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-capabilities-server", @@ -222,7 +232,8 @@ "\nIndicates if capability switchers are supposed to return a default set of capabilities." ], "path": "packages/core/capabilities/core-capabilities-server/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -246,6 +257,7 @@ ], "path": "packages/core/capabilities/core-capabilities-server/src/capabilities.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -272,6 +284,7 @@ ], "path": "packages/core/capabilities/core-capabilities-server/src/capabilities.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -286,7 +299,8 @@ "" ], "path": "packages/core/capabilities/core-capabilities-server/src/capabilities.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-capabilities-server", @@ -299,7 +313,8 @@ "Capabilities" ], "path": "packages/core/capabilities/core-capabilities-server/src/capabilities.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-capabilities-server", @@ -309,7 +324,8 @@ "label": "useDefaultCapabilities", "description": [], "path": "packages/core/capabilities/core-capabilities-server/src/capabilities.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_core_capabilities_server.mdx b/api_docs/kbn_core_capabilities_server.mdx index 8c001d9c448a4..91e709440cd60 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_capabilities_server_mocks.devdocs.json index 37811d92e9c94..63e7462ee78f0 100644 --- a/api_docs/kbn_core_capabilities_server_mocks.devdocs.json +++ b/api_docs/kbn_core_capabilities_server_mocks.devdocs.json @@ -34,6 +34,7 @@ ], "path": "packages/core/capabilities/core-capabilities-server-mocks/src/capabilities_service.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -47,6 +48,7 @@ "description": [], "path": "packages/core/capabilities/core-capabilities-server-mocks/src/capabilities_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-capabilities-server-mocks", @@ -68,6 +70,7 @@ ], "path": "packages/core/capabilities/core-capabilities-server-mocks/src/capabilities_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -85,6 +88,7 @@ ], "path": "packages/core/capabilities/core-capabilities-server-mocks/src/capabilities_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -102,6 +106,7 @@ ], "path": "packages/core/capabilities/core-capabilities-server-mocks/src/capabilities_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -118,6 +123,7 @@ ], "path": "packages/core/capabilities/core-capabilities-server-mocks/src/capabilities_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_capabilities_server_mocks.mdx b/api_docs/kbn_core_capabilities_server_mocks.mdx index 05acb611809e0..1ece686b0cdae 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-capabilities-server-mocks'] --- import kbnCoreCapabilitiesServerMocksObj from './kbn_core_capabilities_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_chrome_browser.devdocs.json b/api_docs/kbn_core_chrome_browser.devdocs.json index 040c18b5f0b0b..fb399e5080e6f 100644 --- a/api_docs/kbn_core_chrome_browser.devdocs.json +++ b/api_docs/kbn_core_chrome_browser.devdocs.json @@ -29,6 +29,7 @@ "description": [], "path": "packages/core/chrome/core-chrome-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -38,7 +39,8 @@ "label": "text", "description": [], "path": "packages/core/chrome/core-chrome-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -48,7 +50,8 @@ "label": "tooltip", "description": [], "path": "packages/core/chrome/core-chrome-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -62,7 +65,8 @@ " | undefined" ], "path": "packages/core/chrome/core-chrome-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -76,6 +80,7 @@ "description": [], "path": "packages/core/chrome/core-chrome-browser/src/breadcrumb.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -90,6 +95,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/breadcrumb.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -103,7 +109,8 @@ "T" ], "path": "node_modules/@types/kbn__core-mount-utils-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -121,6 +128,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/doc_title.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -136,6 +144,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/doc_title.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -151,6 +160,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/doc_title.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -170,6 +180,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/doc_title.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -185,6 +196,7 @@ "description": [], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -196,7 +208,8 @@ "\nProvide your plugin's name to create a header for separation" ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -218,7 +231,8 @@ "[] | undefined" ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -242,6 +256,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -255,6 +270,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -275,6 +291,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -309,6 +326,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -323,7 +341,8 @@ "\"custom\"" ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -335,7 +354,8 @@ "\nURL of the link" ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -350,7 +370,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -381,6 +402,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -395,7 +417,8 @@ "\"discuss\"" ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -407,7 +430,8 @@ "\nURL to discuss page.\ni.e. `https://discuss.elastic.co/c/${appName}`" ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -438,6 +462,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -452,7 +477,8 @@ "\"documentation\"" ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -464,7 +490,8 @@ "\nURL to documentation page.\ni.e. `${ELASTIC_WEBSITE_URL}guide/en/kibana/${DOC_LINK_VERSION}/${appName}.html`," ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -495,6 +522,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -509,7 +537,8 @@ "\"github\"" ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -524,7 +553,8 @@ "string[]" ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -539,7 +569,8 @@ "string | undefined" ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -553,6 +584,7 @@ "description": [], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -566,6 +598,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -581,6 +614,7 @@ "description": [], "path": "packages/core/chrome/core-chrome-browser/src/nav_controls.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -593,7 +627,8 @@ "number | undefined" ], "path": "packages/core/chrome/core-chrome-browser/src/nav_controls.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -608,6 +643,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/nav_controls.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -621,7 +657,8 @@ "T" ], "path": "node_modules/@types/kbn__core-mount-utils-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -639,6 +676,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/nav_controls.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -662,6 +700,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/nav_controls.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -681,6 +720,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/nav_controls.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -708,6 +748,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/nav_controls.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -727,6 +768,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/nav_controls.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -754,6 +796,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/nav_controls.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -773,6 +816,55 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/nav_controls.ts", "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "@kbn/core-chrome-browser", + "id": "def-common.ChromeNavControls.registerExtension", + "type": "Function", + "tags": [], + "label": "registerExtension", + "description": [ + "Register an extension to be presented to the left of the top-right side of the chrome header." + ], + "signature": [ + "(navControl: ", + { + "pluginId": "@kbn/core-chrome-browser", + "scope": "common", + "docId": "kibKbnCoreChromeBrowserPluginApi", + "section": "def-common.ChromeNavControl", + "text": "ChromeNavControl" + }, + ") => void" + ], + "path": "packages/core/chrome/core-chrome-browser/src/nav_controls.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/core-chrome-browser", + "id": "def-common.ChromeNavControls.registerExtension.$1", + "type": "Object", + "tags": [], + "label": "navControl", + "description": [], + "signature": [ + { + "pluginId": "@kbn/core-chrome-browser", + "scope": "common", + "docId": "kibKbnCoreChromeBrowserPluginApi", + "section": "def-common.ChromeNavControl", + "text": "ChromeNavControl" + } + ], + "path": "packages/core/chrome/core-chrome-browser/src/nav_controls.ts", + "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -790,6 +882,7 @@ "description": [], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -801,7 +894,8 @@ "\nA unique identifier for looking up links." ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -813,7 +907,8 @@ "\nThe title of the application." ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -829,7 +924,8 @@ " | undefined" ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -841,7 +937,8 @@ "\nThe base route used to open the root of an application." ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -853,7 +950,8 @@ "\nThe route used to open the default path and the deep links of an application." ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -868,7 +966,8 @@ "number | undefined" ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -883,7 +982,8 @@ "string | undefined" ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -898,7 +998,8 @@ "string | undefined" ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -913,7 +1014,8 @@ "string | undefined" ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -925,7 +1027,8 @@ "\nSettled state between `url`, `baseUrl`, and `active`" ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -940,7 +1043,8 @@ "boolean | undefined" ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -955,7 +1059,8 @@ "boolean | undefined" ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -971,6 +1076,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -996,6 +1102,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1021,6 +1128,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -1034,6 +1142,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1061,6 +1170,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1078,6 +1188,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -1091,6 +1202,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1110,6 +1222,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1129,6 +1242,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/nav_links.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1146,6 +1260,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/recently_accessed.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -1161,6 +1276,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/recently_accessed.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -1176,6 +1292,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/recently_accessed.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1192,6 +1309,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/recently_accessed.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1208,6 +1326,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/recently_accessed.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1235,6 +1354,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/recently_accessed.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1262,6 +1382,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/recently_accessed.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1277,6 +1398,7 @@ "description": [], "path": "packages/core/chrome/core-chrome-browser/src/recently_accessed.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -1286,7 +1408,8 @@ "label": "link", "description": [], "path": "packages/core/chrome/core-chrome-browser/src/recently_accessed.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -1296,7 +1419,8 @@ "label": "label", "description": [], "path": "packages/core/chrome/core-chrome-browser/src/recently_accessed.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -1306,7 +1430,8 @@ "label": "id", "description": [], "path": "packages/core/chrome/core-chrome-browser/src/recently_accessed.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1322,6 +1447,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -1342,7 +1468,8 @@ } ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -1363,7 +1490,8 @@ } ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -1384,7 +1512,8 @@ } ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -1405,7 +1534,8 @@ } ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-chrome-browser", @@ -1423,6 +1553,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1440,6 +1571,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -1453,6 +1585,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1482,6 +1615,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1507,6 +1641,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -1527,6 +1662,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1550,6 +1686,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1569,6 +1706,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -1583,6 +1721,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1612,6 +1751,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1637,6 +1777,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -1657,6 +1798,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1686,6 +1828,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1711,6 +1854,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -1732,6 +1876,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1761,6 +1906,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1786,6 +1932,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -1806,6 +1953,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1825,6 +1973,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -1840,6 +1989,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1861,6 +2011,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1886,6 +2037,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -1906,6 +2058,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1927,6 +2080,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1942,6 +2096,7 @@ "description": [], "path": "packages/core/chrome/core-chrome-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser", @@ -1956,6 +2111,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1969,7 +2125,8 @@ "T" ], "path": "node_modules/@types/kbn__core-mount-utils-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1993,6 +2150,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/breadcrumb.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2009,6 +2167,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2053,6 +2212,7 @@ ], "path": "packages/core/chrome/core-chrome-browser/src/help_extension.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_chrome_browser.mdx b/api_docs/kbn_core_chrome_browser.mdx index d565769a0e368..b7d9a4fcabb3c 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-chrome-browser'] --- import kbnCoreChromeBrowserObj from './kbn_core_chrome_browser.devdocs.json'; @@ -21,7 +21,7 @@ Contact Kibana Core for questions regarding this plugin. | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 112 | 0 | 40 | 0 | +| 114 | 0 | 41 | 0 | ## Common diff --git a/api_docs/kbn_core_chrome_browser_mocks.devdocs.json b/api_docs/kbn_core_chrome_browser_mocks.devdocs.json index cd4f096310f3d..7da9613ba0ea2 100644 --- a/api_docs/kbn_core_chrome_browser_mocks.devdocs.json +++ b/api_docs/kbn_core_chrome_browser_mocks.devdocs.json @@ -32,6 +32,7 @@ "description": [], "path": "packages/core/chrome/core-chrome-browser-mocks/src/chrome_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-chrome-browser-mocks", @@ -45,6 +46,7 @@ ], "path": "packages/core/chrome/core-chrome-browser-mocks/src/chrome_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -64,6 +66,7 @@ ], "path": "packages/core/chrome/core-chrome-browser-mocks/src/chrome_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_chrome_browser_mocks.mdx b/api_docs/kbn_core_chrome_browser_mocks.mdx index be2bfabe18faa..b13ad6b1d385c 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_config_server_internal.devdocs.json index 3b2226a89c2a0..79979fc457172 100644 --- a/api_docs/kbn_core_config_server_internal.devdocs.json +++ b/api_docs/kbn_core_config_server_internal.devdocs.json @@ -25,6 +25,7 @@ ], "path": "packages/core/config/core-config-server-internal/src/deprecation/core_deprecations.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -45,6 +46,7 @@ ], "path": "packages/core/config/core-config-server-internal/src/ensure_valid_configuration.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-config-server-internal", @@ -58,6 +60,7 @@ ], "path": "packages/core/config/core-config-server-internal/src/ensure_valid_configuration.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -73,6 +76,7 @@ ], "path": "packages/core/config/core-config-server-internal/src/ensure_valid_configuration.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], diff --git a/api_docs/kbn_core_config_server_internal.mdx b/api_docs/kbn_core_config_server_internal.mdx index 51726a44bcdf1..828ecc68dc87d 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: 2022-09-05 +date: 2022-09-08 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_deprecations_browser.devdocs.json b/api_docs/kbn_core_deprecations_browser.devdocs.json index 76ea9b00bad48..857c2acbb4e33 100644 --- a/api_docs/kbn_core_deprecations_browser.devdocs.json +++ b/api_docs/kbn_core_deprecations_browser.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/core/deprecations/core-deprecations-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-browser", @@ -48,6 +49,7 @@ ], "path": "packages/core/deprecations/core-deprecations-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -67,6 +69,7 @@ ], "path": "packages/core/deprecations/core-deprecations-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-browser", @@ -80,6 +83,7 @@ ], "path": "packages/core/deprecations/core-deprecations-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -101,6 +105,7 @@ ], "path": "packages/core/deprecations/core-deprecations-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-browser", @@ -114,6 +119,7 @@ ], "path": "packages/core/deprecations/core-deprecations-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -143,6 +149,7 @@ ], "path": "packages/core/deprecations/core-deprecations-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-browser", @@ -156,6 +163,7 @@ ], "path": "packages/core/deprecations/core-deprecations-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -181,6 +189,7 @@ ], "path": "packages/core/deprecations/core-deprecations-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_deprecations_browser.mdx b/api_docs/kbn_core_deprecations_browser.mdx index b92f4d129337e..8d21dcce86b57 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_deprecations_browser_internal.devdocs.json index 3d549b7a15850..8eac54406790d 100644 --- a/api_docs/kbn_core_deprecations_browser_internal.devdocs.json +++ b/api_docs/kbn_core_deprecations_browser_internal.devdocs.json @@ -41,6 +41,7 @@ ], "path": "packages/core/deprecations/core-deprecations-browser-internal/src/deprecations_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-browser-internal", @@ -54,6 +55,7 @@ ], "path": "packages/core/deprecations/core-deprecations-browser-internal/src/deprecations_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -72,6 +74,7 @@ ], "path": "packages/core/deprecations/core-deprecations-browser-internal/src/deprecations_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-browser-internal", @@ -82,6 +85,7 @@ "description": [], "path": "packages/core/deprecations/core-deprecations-browser-internal/src/deprecations_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-browser-internal", @@ -94,7 +98,8 @@ "HttpSetup" ], "path": "packages/core/deprecations/core-deprecations-browser-internal/src/deprecations_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -113,6 +118,7 @@ ], "path": "packages/core/deprecations/core-deprecations-browser-internal/src/deprecations_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } diff --git a/api_docs/kbn_core_deprecations_browser_internal.mdx b/api_docs/kbn_core_deprecations_browser_internal.mdx index e8f8aefb2dcba..9dc3dc1beaa13 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_deprecations_browser_mocks.devdocs.json index 6a3c846f820ae..bf48fad3e7b9e 100644 --- a/api_docs/kbn_core_deprecations_browser_mocks.devdocs.json +++ b/api_docs/kbn_core_deprecations_browser_mocks.devdocs.json @@ -32,6 +32,7 @@ "description": [], "path": "packages/core/deprecations/core-deprecations-browser-mocks/src/deprecations_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-browser-mocks", @@ -49,6 +50,7 @@ ], "path": "packages/core/deprecations/core-deprecations-browser-mocks/src/deprecations_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -64,6 +66,7 @@ ], "path": "packages/core/deprecations/core-deprecations-browser-mocks/src/deprecations_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -81,6 +84,7 @@ ], "path": "packages/core/deprecations/core-deprecations-browser-mocks/src/deprecations_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_deprecations_browser_mocks.mdx b/api_docs/kbn_core_deprecations_browser_mocks.mdx index e33e001b3d7e3..4fd817133f4a4 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_deprecations_common.devdocs.json index bdaa9bdad8fd6..d1055cac144e9 100644 --- a/api_docs/kbn_core_deprecations_common.devdocs.json +++ b/api_docs/kbn_core_deprecations_common.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/core/deprecations/core-deprecations-common/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-common", @@ -42,7 +43,8 @@ "\nThe title of the deprecation.\nCheck the README for writing deprecations in `src/core/server/deprecations/README.mdx`" ], "path": "packages/core/deprecations/core-deprecations-common/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-deprecations-common", @@ -54,7 +56,8 @@ "\nThe description message to be displayed for the deprecation.\nCheck the README for writing deprecations in `src/core/server/deprecations/README.mdx`" ], "path": "packages/core/deprecations/core-deprecations-common/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-deprecations-common", @@ -69,7 +72,8 @@ "\"warning\" | \"critical\" | \"fetch_error\"" ], "path": "packages/core/deprecations/core-deprecations-common/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-deprecations-common", @@ -84,7 +88,8 @@ "\"config\" | \"feature\" | undefined" ], "path": "packages/core/deprecations/core-deprecations-common/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-deprecations-common", @@ -99,7 +104,8 @@ "string | undefined" ], "path": "packages/core/deprecations/core-deprecations-common/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-deprecations-common", @@ -114,7 +120,8 @@ "boolean | undefined" ], "path": "packages/core/deprecations/core-deprecations-common/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-deprecations-common", @@ -129,7 +136,8 @@ "{ api?: { path: string; method: \"POST\" | \"PUT\"; body?: { [key: string]: any; } | undefined; omitContextFromBody?: boolean | undefined; } | undefined; manualSteps: string[]; }" ], "path": "packages/core/deprecations/core-deprecations-common/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -160,6 +168,7 @@ ], "path": "packages/core/deprecations/core-deprecations-common/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-common", @@ -169,7 +178,8 @@ "label": "configPath", "description": [], "path": "packages/core/deprecations/core-deprecations-common/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-deprecations-common", @@ -182,7 +192,8 @@ "\"config\"" ], "path": "packages/core/deprecations/core-deprecations-common/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -196,6 +207,7 @@ "description": [], "path": "packages/core/deprecations/core-deprecations-common/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-common", @@ -215,7 +227,8 @@ "[]" ], "path": "packages/core/deprecations/core-deprecations-common/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -246,6 +259,7 @@ ], "path": "packages/core/deprecations/core-deprecations-common/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-common", @@ -258,7 +272,8 @@ "\"feature\" | undefined" ], "path": "packages/core/deprecations/core-deprecations-common/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -292,6 +307,7 @@ ], "path": "packages/core/deprecations/core-deprecations-common/src/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -313,6 +329,7 @@ ], "path": "packages/core/deprecations/core-deprecations-common/src/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_deprecations_common.mdx b/api_docs/kbn_core_deprecations_common.mdx index 16ea53a84a35f..764220009c8c7 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_deprecations_server.devdocs.json index 15315a40ea9ed..514993fac9207 100644 --- a/api_docs/kbn_core_deprecations_server.devdocs.json +++ b/api_docs/kbn_core_deprecations_server.devdocs.json @@ -21,6 +21,7 @@ "description": [], "path": "packages/core/deprecations/core-deprecations-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-server", @@ -41,6 +42,7 @@ ], "path": "packages/core/deprecations/core-deprecations-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-server", @@ -54,6 +56,7 @@ ], "path": "packages/core/deprecations/core-deprecations-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -73,6 +76,7 @@ ], "path": "packages/core/deprecations/core-deprecations-server/src/request_handler_context.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-server", @@ -88,6 +92,7 @@ ], "path": "packages/core/deprecations/core-deprecations-server/src/request_handler_context.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -105,6 +110,7 @@ ], "path": "packages/core/deprecations/core-deprecations-server/src/request_handler_context.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-server", @@ -123,7 +129,8 @@ } ], "path": "packages/core/deprecations/core-deprecations-server/src/request_handler_context.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -139,6 +146,7 @@ ], "path": "packages/core/deprecations/core-deprecations-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-server", @@ -160,6 +168,7 @@ ], "path": "packages/core/deprecations/core-deprecations-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-server", @@ -179,6 +188,7 @@ ], "path": "packages/core/deprecations/core-deprecations-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -196,6 +206,7 @@ "description": [], "path": "packages/core/deprecations/core-deprecations-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-server", @@ -208,7 +219,8 @@ "IScopedClusterClient" ], "path": "packages/core/deprecations/core-deprecations-server/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-deprecations-server", @@ -221,7 +233,8 @@ "SavedObjectsClientContract" ], "path": "packages/core/deprecations/core-deprecations-server/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -235,6 +248,7 @@ "description": [], "path": "packages/core/deprecations/core-deprecations-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-server", @@ -260,6 +274,7 @@ ], "path": "packages/core/deprecations/core-deprecations-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-server", @@ -279,6 +294,7 @@ ], "path": "packages/core/deprecations/core-deprecations-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_core_deprecations_server.mdx b/api_docs/kbn_core_deprecations_server.mdx index 797c8710a4854..5280bca156242 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_deprecations_server_internal.devdocs.json index 53e7382228b66..c59b077897a1d 100644 --- a/api_docs/kbn_core_deprecations_server_internal.devdocs.json +++ b/api_docs/kbn_core_deprecations_server_internal.devdocs.json @@ -21,6 +21,7 @@ "description": [], "path": "packages/core/deprecations/core-deprecations-server-internal/src/deprecations_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-server-internal", @@ -41,6 +42,7 @@ ], "path": "packages/core/deprecations/core-deprecations-server-internal/src/deprecations_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-server-internal", @@ -54,6 +56,7 @@ ], "path": "packages/core/deprecations/core-deprecations-server-internal/src/deprecations_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -68,6 +71,7 @@ ], "path": "packages/core/deprecations/core-deprecations-server-internal/src/deprecations_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_core_deprecations_server_internal.mdx b/api_docs/kbn_core_deprecations_server_internal.mdx index 1a8f03748613b..4f1b395e88650 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_deprecations_server_mocks.devdocs.json index 14faba0762dfb..464b9f5476a54 100644 --- a/api_docs/kbn_core_deprecations_server_mocks.devdocs.json +++ b/api_docs/kbn_core_deprecations_server_mocks.devdocs.json @@ -24,6 +24,7 @@ "description": [], "path": "packages/core/deprecations/core-deprecations-server-mocks/src/deprecations_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-deprecations-server-mocks", @@ -37,6 +38,7 @@ ], "path": "packages/core/deprecations/core-deprecations-server-mocks/src/deprecations_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -54,6 +56,7 @@ ], "path": "packages/core/deprecations/core-deprecations-server-mocks/src/deprecations_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -71,6 +74,7 @@ ], "path": "packages/core/deprecations/core-deprecations-server-mocks/src/deprecations_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -88,6 +92,7 @@ ], "path": "packages/core/deprecations/core-deprecations-server-mocks/src/deprecations_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -105,6 +110,7 @@ ], "path": "packages/core/deprecations/core-deprecations-server-mocks/src/deprecations_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_deprecations_server_mocks.mdx b/api_docs/kbn_core_deprecations_server_mocks.mdx index 811c353240bdd..f18fe6d87767e 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_doc_links_browser.devdocs.json index ee0ae87278776..f8270d3ce9f28 100644 --- a/api_docs/kbn_core_doc_links_browser.devdocs.json +++ b/api_docs/kbn_core_doc_links_browser.devdocs.json @@ -29,6 +29,7 @@ "description": [], "path": "packages/core/doc-links/core-doc-links-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-doc-links-browser", @@ -38,7 +39,8 @@ "label": "DOC_LINK_VERSION", "description": [], "path": "packages/core/doc-links/core-doc-links-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-doc-links-browser", @@ -48,7 +50,8 @@ "label": "ELASTIC_WEBSITE_URL", "description": [], "path": "packages/core/doc-links/core-doc-links-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-doc-links-browser", @@ -61,7 +64,8 @@ "DocLinks" ], "path": "packages/core/doc-links/core-doc-links-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_core_doc_links_browser.mdx b/api_docs/kbn_core_doc_links_browser.mdx index 13b8628d0aa52..0ef4b6124c5a7 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_doc_links_browser_mocks.devdocs.json index c2c16be90f6c2..321ece3f9c64b 100644 --- a/api_docs/kbn_core_doc_links_browser_mocks.devdocs.json +++ b/api_docs/kbn_core_doc_links_browser_mocks.devdocs.json @@ -32,6 +32,7 @@ "description": [], "path": "packages/core/doc-links/core-doc-links-browser-mocks/src/doc_links_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-doc-links-browser-mocks", @@ -45,6 +46,7 @@ ], "path": "packages/core/doc-links/core-doc-links-browser-mocks/src/doc_links_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -60,6 +62,7 @@ ], "path": "packages/core/doc-links/core-doc-links-browser-mocks/src/doc_links_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -76,6 +79,7 @@ ], "path": "packages/core/doc-links/core-doc-links-browser-mocks/src/doc_links_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_doc_links_browser_mocks.mdx b/api_docs/kbn_core_doc_links_browser_mocks.mdx index 41c5659acb7d5..9a1b47c956f7b 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_doc_links_server.devdocs.json index 828b57af77545..d48c2855292a6 100644 --- a/api_docs/kbn_core_doc_links_server.devdocs.json +++ b/api_docs/kbn_core_doc_links_server.devdocs.json @@ -21,6 +21,7 @@ "description": [], "path": "packages/core/doc-links/core-doc-links-server/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-doc-links-server", @@ -32,7 +33,8 @@ "The branch/version the docLinks are pointing to" ], "path": "packages/core/doc-links/core-doc-links-server/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-doc-links-server", @@ -44,7 +46,8 @@ "The base url for the elastic website" ], "path": "packages/core/doc-links/core-doc-links-server/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-doc-links-server", @@ -59,7 +62,8 @@ "DocLinks" ], "path": "packages/core/doc-links/core-doc-links-server/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -85,6 +89,7 @@ ], "path": "packages/core/doc-links/core-doc-links-server/src/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_doc_links_server.mdx b/api_docs/kbn_core_doc_links_server.mdx index 41ca0a2030dda..775dfd58560ec 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_doc_links_server_mocks.devdocs.json index eaa7d4251ad1a..1172ff722d041 100644 --- a/api_docs/kbn_core_doc_links_server_mocks.devdocs.json +++ b/api_docs/kbn_core_doc_links_server_mocks.devdocs.json @@ -24,6 +24,7 @@ "description": [], "path": "packages/core/doc-links/core-doc-links-server-mocks/src/doc_links_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-doc-links-server-mocks", @@ -37,6 +38,7 @@ ], "path": "packages/core/doc-links/core-doc-links-server-mocks/src/doc_links_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -53,6 +55,7 @@ ], "path": "packages/core/doc-links/core-doc-links-server-mocks/src/doc_links_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -69,6 +72,7 @@ ], "path": "packages/core/doc-links/core-doc-links-server-mocks/src/doc_links_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_doc_links_server_mocks.mdx b/api_docs/kbn_core_doc_links_server_mocks.mdx index 7b9d8863990e5..5ec3e9e167890 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_elasticsearch_client_server_internal.devdocs.json index 31a9b64cac7f7..b14c24b7a4b03 100644 --- a/api_docs/kbn_core_elasticsearch_client_server_internal.devdocs.json +++ b/api_docs/kbn_core_elasticsearch_client_server_internal.devdocs.json @@ -28,6 +28,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-internal/src/configure_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-client-server-internal", @@ -41,6 +42,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-internal/src/configure_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -52,6 +54,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-internal/src/configure_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-client-server-internal", @@ -64,7 +67,8 @@ "Logger" ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-internal/src/configure_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-client-server-internal", @@ -74,7 +78,8 @@ "label": "type", "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-internal/src/configure_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-client-server-internal", @@ -87,7 +92,8 @@ "boolean | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-internal/src/configure_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-client-server-internal", @@ -101,6 +107,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-internal/src/configure_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -126,6 +133,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-internal/src/log_query_and_deprecation.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-client-server-internal", @@ -139,6 +147,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-internal/src/log_query_and_deprecation.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -161,6 +170,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-internal/src/log_query_and_deprecation.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-client-server-internal", @@ -175,6 +185,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-internal/src/log_query_and_deprecation.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_core_elasticsearch_client_server_internal.mdx b/api_docs/kbn_core_elasticsearch_client_server_internal.mdx index 25d6956065b73..4d0b32a2df870 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_elasticsearch_client_server_mocks.devdocs.json index ebe913276adcb..a9b967b7e2c98 100644 --- a/api_docs/kbn_core_elasticsearch_client_server_mocks.devdocs.json +++ b/api_docs/kbn_core_elasticsearch_client_server_mocks.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-client-server-mocks", @@ -48,6 +49,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-client-server-mocks", @@ -61,6 +63,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -77,6 +80,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -98,6 +102,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-client-server-mocks", @@ -111,6 +116,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -127,6 +133,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -148,6 +155,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-client-server-mocks", @@ -163,6 +171,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -184,6 +193,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-client-server-mocks", @@ -199,6 +209,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -216,6 +227,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-client-server-mocks", @@ -1279,7 +1291,8 @@ "ElasticsearchClient" ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-client-server-mocks", @@ -1309,6 +1322,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -1324,6 +1338,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-client-server-mocks", @@ -2387,7 +2402,8 @@ "ElasticsearchClient" ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-client-server-mocks", @@ -3451,7 +3467,8 @@ "ElasticsearchClient" ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3486,6 +3503,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3516,6 +3534,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4581,6 +4600,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -4594,6 +4614,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-client-server-mocks", @@ -4614,6 +4635,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -4636,6 +4658,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -4658,6 +4681,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -4680,6 +4704,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4693,7 +4718,8 @@ "Promise | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -4719,6 +4745,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4732,7 +4759,8 @@ "Promise | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -4750,6 +4778,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4763,7 +4792,8 @@ "T" ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-client-server-mocks", @@ -4776,7 +4806,8 @@ "{ statusCode?: number | undefined; }" ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-client-server-mocks", @@ -4789,7 +4820,8 @@ "{ [x: string]: string | string[]; }" ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -4805,6 +4837,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4818,7 +4851,8 @@ "any" ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -4838,6 +4872,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4859,7 +4894,8 @@ " | null; attempts: number; aborted: boolean; sniff?: { hosts: any[]; reason: string; } | undefined; } | undefined; }" ], "path": "packages/core/elasticsearch/core-elasticsearch-client-server-mocks/src/mocks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx b/api_docs/kbn_core_elasticsearch_client_server_mocks.mdx index 7508f4967be7a..a7c596885d134 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_elasticsearch_server.devdocs.json index 71b802e242b1a..7f41607270e7a 100644 --- a/api_docs/kbn_core_elasticsearch_server.devdocs.json +++ b/api_docs/kbn_core_elasticsearch_server.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -35,7 +36,8 @@ "{ [x: string]: string; }" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -48,7 +50,8 @@ "string[]" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -58,7 +61,8 @@ "label": "maxSockets", "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -68,7 +72,8 @@ "label": "compression", "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -78,7 +83,8 @@ "label": "sniffOnStart", "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -88,7 +94,8 @@ "label": "sniffOnConnectionFault", "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -101,7 +108,8 @@ "false | moment.Duration" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -114,7 +122,8 @@ "string | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -127,7 +136,8 @@ "string | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -140,7 +150,8 @@ "string | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -153,7 +164,8 @@ "string[]" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -166,7 +178,8 @@ "boolean | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -179,7 +192,8 @@ "number | moment.Duration | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -192,7 +206,8 @@ "number | moment.Duration | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -205,7 +220,8 @@ "string | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -225,7 +241,8 @@ " | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -239,6 +256,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -251,7 +269,8 @@ "\"none\" | \"full\" | \"certificate\" | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -264,7 +283,8 @@ "string | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -277,7 +297,8 @@ "string[] | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -290,7 +311,8 @@ "string | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -303,7 +325,8 @@ "string | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -316,7 +339,8 @@ "boolean | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -332,6 +356,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -346,7 +371,8 @@ "string[]" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -358,7 +384,8 @@ "\nIndicates whether Elasticsearch configuration includes credentials (`username`, `password` or `serviceAccountToken`)." ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -374,6 +401,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/request_handler_context.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -392,7 +420,8 @@ } ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/request_handler_context.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -406,6 +435,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -420,7 +450,8 @@ "{ readonly hosts: string[]; readonly credentialsSpecified: boolean; }" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -451,6 +482,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -466,6 +498,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -490,6 +523,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -507,6 +541,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -530,6 +565,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -549,6 +585,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -578,6 +615,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/contracts.ts", "deprecated": true, + "trackAdoption": false, "references": [] } ], @@ -592,6 +630,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -612,7 +651,8 @@ } ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -643,6 +683,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -658,6 +699,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -682,6 +724,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -699,6 +742,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -711,7 +755,8 @@ "\"none\" | \"full\" | \"certificate\"" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -724,7 +769,8 @@ "string | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -737,7 +783,8 @@ "string[] | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -750,7 +797,8 @@ "string | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -763,7 +811,8 @@ "string | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -773,7 +822,8 @@ "label": "alwaysPresentCertificate", "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -789,6 +839,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/scopeable_request.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -803,7 +854,8 @@ "{ 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; date?: string | string[] | undefined; etag?: string | string[] | undefined; expect?: string | string[] | undefined; expires?: string | string[] | undefined; forwarded?: string | string[] | undefined; from?: 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; location?: 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; range?: 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; warning?: string | string[] | undefined; \"www-authenticate\"?: string | string[] | undefined; } & { [header: string]: string | string[] | undefined; }" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/scopeable_request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -819,6 +871,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/cluster_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2021,7 +2074,8 @@ "; }" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/cluster_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2052,6 +2106,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/cluster_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2071,6 +2126,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/cluster_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2107,6 +2163,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/cluster_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2122,6 +2179,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/cluster_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2137,6 +2195,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2151,7 +2210,8 @@ "moment.Duration" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2163,7 +2223,8 @@ "\nWhether to allow kibana to connect to a non-compatible elasticsearch node." ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2175,7 +2236,8 @@ "\nVersion of the Elasticsearch (6.7, 7.1 or `master`) client will be connecting to." ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2187,7 +2249,8 @@ "\nThe maximum number of sockets that can be used for communications with elasticsearch." ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2199,7 +2262,8 @@ "\nWhether to use compression for communications with elasticsearch." ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2214,7 +2278,8 @@ "string[]" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2229,7 +2294,8 @@ "string[]" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2244,7 +2310,8 @@ "moment.Duration" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2259,7 +2326,8 @@ "moment.Duration" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2274,7 +2342,8 @@ "moment.Duration" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2286,7 +2355,8 @@ "\nSpecifies whether the client should attempt to detect the rest of the cluster\nwhen it is first instantiated." ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2301,7 +2371,8 @@ "false | moment.Duration" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2313,7 +2384,8 @@ "\nSpecifies whether the client should immediately sniff for a more current list\nof nodes when a connection dies." ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2328,7 +2400,8 @@ "string | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2343,7 +2416,8 @@ "string | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2358,7 +2432,8 @@ "string | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2373,7 +2448,8 @@ "{ [x: string]: string; }" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -2394,7 +2470,8 @@ } ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/elasticsearch_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2410,6 +2487,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/scoped_cluster_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -3612,7 +3690,8 @@ "; }" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/scoped_cluster_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -4815,7 +4894,8 @@ "; }" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/scoped_cluster_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4829,6 +4909,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/unauthorized_error_handler.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -4841,7 +4922,8 @@ "\"notHandled\"" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/unauthorized_error_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4855,6 +4937,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/unauthorized_error_handler.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -4868,7 +4951,8 @@ " & { statusCode: 401; }" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/unauthorized_error_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -4882,7 +4966,8 @@ "" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/unauthorized_error_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4896,6 +4981,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/unauthorized_error_handler.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -4908,7 +4994,8 @@ "{ [x: string]: string | string[]; }" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/unauthorized_error_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4939,6 +5026,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/unauthorized_error_handler.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -4951,7 +5039,8 @@ "\"retry\"" ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/unauthorized_error_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4967,6 +5056,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/unauthorized_error_handler.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -4989,6 +5079,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/unauthorized_error_handler.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5021,6 +5112,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/unauthorized_error_handler.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -5040,6 +5132,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/unauthorized_error_handler.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6253,6 +6346,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/client.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6277,6 +6371,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/scopeable_request.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6319,6 +6414,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/unauthorized_error_handler.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6338,7 +6434,8 @@ } ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/unauthorized_error_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server", @@ -6357,7 +6454,8 @@ } ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/unauthorized_error_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6388,6 +6486,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server/src/client/unauthorized_error_handler.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_elasticsearch_server.mdx b/api_docs/kbn_core_elasticsearch_server.mdx index 2ee2bd1b32c26..e09bb332ab2e5 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_elasticsearch_server_internal.devdocs.json index d05f0fed58931..9ddb76f9557d6 100644 --- a/api_docs/kbn_core_elasticsearch_server_internal.devdocs.json +++ b/api_docs/kbn_core_elasticsearch_server_internal.devdocs.json @@ -25,6 +25,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/is_scripting_enabled.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -35,6 +36,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/is_scripting_enabled.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -1235,7 +1237,8 @@ "; }" ], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/is_scripting_enabled.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1257,6 +1260,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/supported_server_response_check.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -1267,6 +1271,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/supported_server_response_check.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -1279,7 +1284,8 @@ "number | null" ], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/supported_server_response_check.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -1292,7 +1298,8 @@ "Record | null" ], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/supported_server_response_check.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1316,6 +1323,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/supported_server_response_check.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -1331,6 +1339,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/supported_server_response_check.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1369,6 +1378,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -1388,6 +1398,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1405,6 +1416,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -1414,7 +1426,8 @@ "label": "version", "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -1424,7 +1437,8 @@ "label": "ip", "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -1437,7 +1451,8 @@ "{ publish_address: string; } | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -1447,7 +1462,8 @@ "label": "name", "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1461,6 +1477,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -1481,7 +1498,8 @@ "; }" ], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1495,6 +1513,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -1504,7 +1523,8 @@ "label": "isCompatible", "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -1517,7 +1537,8 @@ "string | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -1537,7 +1558,8 @@ "[]" ], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -1557,7 +1579,8 @@ "[]" ], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -1567,7 +1590,8 @@ "label": "kibanaVersion", "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -1580,7 +1604,8 @@ "Error | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1594,6 +1619,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -2794,7 +2820,8 @@ "; }" ], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -2807,7 +2834,8 @@ "Logger" ], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -2817,7 +2845,8 @@ "label": "kibanaVersion", "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -2827,7 +2856,8 @@ "label": "ignoreVersionMismatch", "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server-internal", @@ -2837,7 +2867,8 @@ "label": "esVersionCheckInterval", "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/version_check/ensure_es_version.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2857,6 +2888,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/elasticsearch_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -2942,6 +2974,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server-internal/src/elasticsearch_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/kbn_core_elasticsearch_server_internal.mdx b/api_docs/kbn_core_elasticsearch_server_internal.mdx index b073fa10c1fc1..13e1bfaed6534 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_elasticsearch_server_mocks.devdocs.json index f535c84bf7f76..0a31709c05f67 100644 --- a/api_docs/kbn_core_elasticsearch_server_mocks.devdocs.json +++ b/api_docs/kbn_core_elasticsearch_server_mocks.devdocs.json @@ -21,6 +21,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server-mocks/src/elasticsearch_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server-mocks", @@ -33,7 +34,8 @@ "ClusterClientMock" ], "path": "packages/core/elasticsearch/core-elasticsearch-server-mocks/src/elasticsearch_service.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server-mocks", @@ -55,6 +57,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server-mocks/src/elasticsearch_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -65,7 +68,8 @@ "label": "name", "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server-mocks/src/elasticsearch_service.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-elasticsearch-server-mocks", @@ -80,7 +84,8 @@ "> | undefined" ], "path": "packages/core/elasticsearch/core-elasticsearch-server-mocks/src/elasticsearch_service.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -110,6 +115,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server-mocks/src/elasticsearch_service.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -123,6 +129,7 @@ "description": [], "path": "packages/core/elasticsearch/core-elasticsearch-server-mocks/src/elasticsearch_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-elasticsearch-server-mocks", @@ -136,6 +143,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server-mocks/src/elasticsearch_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -151,6 +159,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server-mocks/src/elasticsearch_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -166,6 +175,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server-mocks/src/elasticsearch_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -181,6 +191,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server-mocks/src/elasticsearch_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -203,6 +214,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server-mocks/src/elasticsearch_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -225,6 +237,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server-mocks/src/elasticsearch_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -247,6 +260,7 @@ ], "path": "packages/core/elasticsearch/core-elasticsearch-server-mocks/src/elasticsearch_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -261,7 +275,8 @@ "any" ], "path": "packages/core/elasticsearch/core-elasticsearch-server-mocks/src/elasticsearch_service.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_core_elasticsearch_server_mocks.mdx b/api_docs/kbn_core_elasticsearch_server_mocks.mdx index afd9f96edd1fc..d16344d577654 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_environment_server_internal.devdocs.json index 99d3e2b1a054b..bd313a9c15630 100644 --- a/api_docs/kbn_core_environment_server_internal.devdocs.json +++ b/api_docs/kbn_core_environment_server_internal.devdocs.json @@ -26,6 +26,7 @@ ], "path": "packages/core/environment/core-environment-server-internal/src/pid_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -39,6 +40,7 @@ "description": [], "path": "packages/core/environment/core-environment-server-internal/src/pid_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-environment-server-internal", @@ -48,7 +50,8 @@ "label": "path", "description": [], "path": "packages/core/environment/core-environment-server-internal/src/pid_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-environment-server-internal", @@ -66,7 +69,8 @@ "; }>" ], "path": "packages/core/environment/core-environment-server-internal/src/pid_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_core_environment_server_internal.mdx b/api_docs/kbn_core_environment_server_internal.mdx index 17c755f1b3da4..b09975fb0b72e 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_environment_server_mocks.devdocs.json index af0268d130b7a..093b8505fb091 100644 --- a/api_docs/kbn_core_environment_server_mocks.devdocs.json +++ b/api_docs/kbn_core_environment_server_mocks.devdocs.json @@ -24,6 +24,7 @@ "description": [], "path": "packages/core/environment/core-environment-server-mocks/src/environment_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-environment-server-mocks", @@ -37,6 +38,7 @@ ], "path": "packages/core/environment/core-environment-server-mocks/src/environment_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -54,6 +56,7 @@ ], "path": "packages/core/environment/core-environment-server-mocks/src/environment_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -71,6 +74,7 @@ ], "path": "packages/core/environment/core-environment-server-mocks/src/environment_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_environment_server_mocks.mdx b/api_docs/kbn_core_environment_server_mocks.mdx index 242fffe768385..ee59dc70817d6 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_execution_context_browser.devdocs.json index 6e4ae84b76513..46b9544979b59 100644 --- a/api_docs/kbn_core_execution_context_browser.devdocs.json +++ b/api_docs/kbn_core_execution_context_browser.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/core/execution-context/core-execution-context-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-execution-context-browser", @@ -48,7 +49,8 @@ ">" ], "path": "packages/core/execution-context/core-execution-context-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-execution-context-browser", @@ -66,6 +68,7 @@ ], "path": "packages/core/execution-context/core-execution-context-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-execution-context-browser", @@ -79,6 +82,7 @@ ], "path": "packages/core/execution-context/core-execution-context-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -99,6 +103,7 @@ ], "path": "packages/core/execution-context/core-execution-context-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -116,6 +121,7 @@ ], "path": "packages/core/execution-context/core-execution-context-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -134,6 +140,7 @@ ], "path": "packages/core/execution-context/core-execution-context-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -154,6 +161,7 @@ ], "path": "packages/core/execution-context/core-execution-context-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-execution-context-browser", @@ -168,6 +176,7 @@ ], "path": "packages/core/execution-context/core-execution-context-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -199,6 +208,7 @@ ], "path": "packages/core/execution-context/core-execution-context-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_execution_context_browser.mdx b/api_docs/kbn_core_execution_context_browser.mdx index 632c8dc42ff55..f6dea3c2cc1de 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_execution_context_browser_internal.devdocs.json index 72626e343b23a..d0c12ae15f804 100644 --- a/api_docs/kbn_core_execution_context_browser_internal.devdocs.json +++ b/api_docs/kbn_core_execution_context_browser_internal.devdocs.json @@ -38,6 +38,7 @@ ], "path": "packages/core/execution-context/core-execution-context-browser-internal/src/execution_context_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-execution-context-browser-internal", @@ -52,7 +53,8 @@ " | undefined; }" ], "path": "packages/core/execution-context/core-execution-context-browser-internal/src/execution_context_container.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-execution-context-browser-internal", @@ -66,6 +68,7 @@ ], "path": "packages/core/execution-context/core-execution-context-browser-internal/src/execution_context_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-execution-context-browser-internal", @@ -81,6 +84,7 @@ ], "path": "packages/core/execution-context/core-execution-context-browser-internal/src/execution_context_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -98,6 +102,7 @@ ], "path": "packages/core/execution-context/core-execution-context-browser-internal/src/execution_context_container.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -115,6 +120,7 @@ ], "path": "packages/core/execution-context/core-execution-context-browser-internal/src/execution_context_container.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } diff --git a/api_docs/kbn_core_execution_context_browser_internal.mdx b/api_docs/kbn_core_execution_context_browser_internal.mdx index 6cf56a4e0935d..a26edda217b05 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_execution_context_browser_mocks.devdocs.json index fdb3d5499fd2a..814bebffd8678 100644 --- a/api_docs/kbn_core_execution_context_browser_mocks.devdocs.json +++ b/api_docs/kbn_core_execution_context_browser_mocks.devdocs.json @@ -32,6 +32,7 @@ "description": [], "path": "packages/core/execution-context/core-execution-context-browser-mocks/src/execution_context_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-execution-context-browser-mocks", @@ -49,6 +50,7 @@ ], "path": "packages/core/execution-context/core-execution-context-browser-mocks/src/execution_context_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -66,6 +68,7 @@ ], "path": "packages/core/execution-context/core-execution-context-browser-mocks/src/execution_context_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -83,6 +86,7 @@ ], "path": "packages/core/execution-context/core-execution-context-browser-mocks/src/execution_context_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -100,6 +104,7 @@ ], "path": "packages/core/execution-context/core-execution-context-browser-mocks/src/execution_context_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -117,6 +122,7 @@ ], "path": "packages/core/execution-context/core-execution-context-browser-mocks/src/execution_context_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_execution_context_browser_mocks.mdx b/api_docs/kbn_core_execution_context_browser_mocks.mdx index 0f08d61188f92..9fd9f56b7aab3 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_execution_context_common.devdocs.json index f36622e9e38f5..92526a21b4fc3 100644 --- a/api_docs/kbn_core_execution_context_common.devdocs.json +++ b/api_docs/kbn_core_execution_context_common.devdocs.json @@ -42,6 +42,7 @@ ], "path": "packages/core/execution-context/core-execution-context-common/src/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_execution_context_common.mdx b/api_docs/kbn_core_execution_context_common.mdx index 240e08ba655da..8e8d4a6de07ba 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_execution_context_server.devdocs.json index 610cc5909ce76..c4c6bf5de2603 100644 --- a/api_docs/kbn_core_execution_context_server.devdocs.json +++ b/api_docs/kbn_core_execution_context_server.devdocs.json @@ -21,6 +21,7 @@ "description": [], "path": "packages/core/execution-context/core-execution-context-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-execution-context-server", @@ -38,6 +39,7 @@ ], "path": "packages/core/execution-context/core-execution-context-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-execution-context-server", @@ -52,6 +54,7 @@ ], "path": "packages/core/execution-context/core-execution-context-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -66,6 +69,7 @@ ], "path": "packages/core/execution-context/core-execution-context-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -84,6 +88,7 @@ ], "path": "packages/core/execution-context/core-execution-context-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -99,6 +104,7 @@ "description": [], "path": "packages/core/execution-context/core-execution-context-server/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-execution-context-server", @@ -112,6 +118,7 @@ ], "path": "packages/core/execution-context/core-execution-context-server/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -129,6 +136,7 @@ ], "path": "packages/core/execution-context/core-execution-context-server/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -156,6 +164,7 @@ ], "path": "packages/core/execution-context/core-execution-context-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_execution_context_server.mdx b/api_docs/kbn_core_execution_context_server.mdx index 6189b5d0badec..ecc1b11cd5720 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_execution_context_server_internal.devdocs.json index 81cab1ae11098..e63a3cff21fc7 100644 --- a/api_docs/kbn_core_execution_context_server_internal.devdocs.json +++ b/api_docs/kbn_core_execution_context_server_internal.devdocs.json @@ -35,6 +35,7 @@ ], "path": "packages/core/execution-context/core-execution-context-server-internal/src/execution_context_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-execution-context-server-internal", @@ -48,6 +49,7 @@ ], "path": "packages/core/execution-context/core-execution-context-server-internal/src/execution_context_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-execution-context-server-internal", @@ -61,6 +63,7 @@ ], "path": "packages/core/execution-context/core-execution-context-server-internal/src/execution_context_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -79,6 +82,7 @@ ], "path": "packages/core/execution-context/core-execution-context-server-internal/src/execution_context_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -95,6 +99,7 @@ ], "path": "packages/core/execution-context/core-execution-context-server-internal/src/execution_context_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -110,6 +115,7 @@ ], "path": "packages/core/execution-context/core-execution-context-server-internal/src/execution_context_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -131,6 +137,7 @@ "description": [], "path": "packages/core/execution-context/core-execution-context-server-internal/src/execution_context_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-execution-context-server-internal", @@ -140,7 +147,8 @@ "label": "path", "description": [], "path": "packages/core/execution-context/core-execution-context-server-internal/src/execution_context_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-execution-context-server-internal", @@ -156,7 +164,8 @@ "; }>" ], "path": "packages/core/execution-context/core-execution-context-server-internal/src/execution_context_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_core_execution_context_server_internal.mdx b/api_docs/kbn_core_execution_context_server_internal.mdx index 10955fdbf2ac2..4d2cdfc603e74 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_execution_context_server_mocks.devdocs.json index b956785f1c76b..c3ec9e75b044d 100644 --- a/api_docs/kbn_core_execution_context_server_mocks.devdocs.json +++ b/api_docs/kbn_core_execution_context_server_mocks.devdocs.json @@ -24,6 +24,7 @@ "description": [], "path": "packages/core/execution-context/core-execution-context-server-mocks/src/execution_context_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-execution-context-server-mocks", @@ -39,6 +40,7 @@ ], "path": "packages/core/execution-context/core-execution-context-server-mocks/src/execution_context_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -56,6 +58,7 @@ ], "path": "packages/core/execution-context/core-execution-context-server-mocks/src/execution_context_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -73,6 +76,7 @@ ], "path": "packages/core/execution-context/core-execution-context-server-mocks/src/execution_context_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -90,6 +94,7 @@ ], "path": "packages/core/execution-context/core-execution-context-server-mocks/src/execution_context_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_execution_context_server_mocks.mdx b/api_docs/kbn_core_execution_context_server_mocks.mdx index cde6a0af36494..1c512cf314176 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_fatal_errors_browser.devdocs.json index ec4c9747e5a9b..e1fc85a71b27e 100644 --- a/api_docs/kbn_core_fatal_errors_browser.devdocs.json +++ b/api_docs/kbn_core_fatal_errors_browser.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/core/fatal-errors/core-fatal-errors-browser/src/get_error_info.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-fatal-errors-browser", @@ -40,7 +41,8 @@ "label": "message", "description": [], "path": "packages/core/fatal-errors/core-fatal-errors-browser/src/get_error_info.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-fatal-errors-browser", @@ -53,7 +55,8 @@ "string | undefined" ], "path": "packages/core/fatal-errors/core-fatal-errors-browser/src/get_error_info.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -69,6 +72,7 @@ ], "path": "packages/core/fatal-errors/core-fatal-errors-browser/src/contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-fatal-errors-browser", @@ -84,6 +88,7 @@ ], "path": "packages/core/fatal-errors/core-fatal-errors-browser/src/contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-fatal-errors-browser", @@ -99,6 +104,7 @@ ], "path": "packages/core/fatal-errors/core-fatal-errors-browser/src/contract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -115,6 +121,7 @@ ], "path": "packages/core/fatal-errors/core-fatal-errors-browser/src/contract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -144,6 +151,7 @@ ], "path": "packages/core/fatal-errors/core-fatal-errors-browser/src/contract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -173,6 +181,7 @@ ], "path": "packages/core/fatal-errors/core-fatal-errors-browser/src/contract.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_fatal_errors_browser.mdx b/api_docs/kbn_core_fatal_errors_browser.mdx index 9b6c7182ff689..cb87d0d5251cb 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_fatal_errors_browser_mocks.devdocs.json index e9eb42d013efe..0ec842a04eb15 100644 --- a/api_docs/kbn_core_fatal_errors_browser_mocks.devdocs.json +++ b/api_docs/kbn_core_fatal_errors_browser_mocks.devdocs.json @@ -32,6 +32,7 @@ "description": [], "path": "packages/core/fatal-errors/core-fatal-errors-browser-mocks/src/fatal_errors_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-fatal-errors-browser-mocks", @@ -45,6 +46,7 @@ ], "path": "packages/core/fatal-errors/core-fatal-errors-browser-mocks/src/fatal_errors_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -62,6 +64,7 @@ ], "path": "packages/core/fatal-errors/core-fatal-errors-browser-mocks/src/fatal_errors_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -79,6 +82,7 @@ ], "path": "packages/core/fatal-errors/core-fatal-errors-browser-mocks/src/fatal_errors_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_fatal_errors_browser_mocks.mdx b/api_docs/kbn_core_fatal_errors_browser_mocks.mdx index 737d4f1a60ddc..6193837154b11 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_http_browser.devdocs.json index 492a459206603..de4c55002551d 100644 --- a/api_docs/kbn_core_http_browser.devdocs.json +++ b/api_docs/kbn_core_http_browser.devdocs.json @@ -39,6 +39,7 @@ ], "path": "packages/core/http/core-http-browser/src/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -59,6 +60,7 @@ ], "path": "packages/core/http/core-http-browser/src/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -95,6 +97,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -116,7 +119,8 @@ " | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -131,7 +135,8 @@ "boolean | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -153,7 +158,8 @@ " | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -168,7 +174,8 @@ "boolean | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -183,7 +190,8 @@ "boolean | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -197,7 +205,8 @@ " | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -230,6 +239,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -239,7 +249,8 @@ "label": "path", "description": [], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -253,6 +264,7 @@ "description": [], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -267,7 +279,8 @@ "[key: string]: string | number | boolean | string[] | number[] | boolean[] | null | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -283,6 +296,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -295,7 +309,8 @@ "any" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -308,7 +323,8 @@ "any" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -321,7 +337,8 @@ "any" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -334,7 +351,8 @@ "any" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -350,6 +368,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -362,7 +381,8 @@ "[name: string]: any" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -378,6 +398,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -419,6 +440,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -440,6 +462,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -462,6 +485,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -507,6 +531,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -528,6 +553,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -550,6 +576,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -595,6 +622,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -617,6 +645,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -639,6 +668,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -684,6 +714,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -705,6 +736,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -727,6 +759,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -744,6 +777,7 @@ "description": [], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -774,7 +808,8 @@ " | undefined; readonly body?: BodyInit | null | undefined; readonly cache?: RequestCache | undefined; readonly credentials?: RequestCredentials | undefined; readonly integrity?: string | undefined; readonly keepalive?: boolean | undefined; readonly method?: string | undefined; readonly mode?: RequestMode | undefined; readonly redirect?: RequestRedirect | undefined; readonly referrer?: string | undefined; readonly referrerPolicy?: ReferrerPolicy | undefined; readonly signal?: AbortSignal | null | undefined; readonly window?: null | undefined; }" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -787,7 +822,8 @@ "Error" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -819,6 +855,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -831,7 +868,8 @@ "{ readonly cache: RequestCache; readonly credentials: RequestCredentials; readonly destination: RequestDestination; readonly headers: Headers; readonly integrity: string; readonly keepalive: boolean; readonly method: string; readonly mode: RequestMode; readonly redirect: RequestRedirect; readonly referrer: string; readonly referrerPolicy: ReferrerPolicy; readonly signal: AbortSignal; readonly url: string; readonly clone: () => Request; readonly body: ReadableStream | null; readonly bodyUsed: boolean; readonly arrayBuffer: () => Promise; readonly blob: () => Promise; readonly formData: () => Promise; readonly json: () => Promise; readonly text: () => Promise; }" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -852,7 +890,8 @@ "" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -868,6 +907,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -882,7 +922,8 @@ "BodyInit | null | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -897,7 +938,8 @@ "RequestCache | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -912,7 +954,8 @@ "RequestCredentials | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -934,7 +977,8 @@ " | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -949,7 +993,8 @@ "string | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -964,7 +1009,8 @@ "boolean | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -979,7 +1025,8 @@ "string | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -994,7 +1041,8 @@ "RequestMode | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1009,7 +1057,8 @@ "RequestRedirect | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1024,7 +1073,8 @@ "string | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1039,7 +1089,8 @@ "ReferrerPolicy | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1054,7 +1105,8 @@ "AbortSignal | null | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1069,7 +1121,8 @@ "null | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1093,6 +1146,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -1125,7 +1179,8 @@ " | undefined; readonly body?: BodyInit | null | undefined; readonly cache?: RequestCache | undefined; readonly credentials?: RequestCredentials | undefined; readonly integrity?: string | undefined; readonly keepalive?: boolean | undefined; readonly method?: string | undefined; readonly mode?: RequestMode | undefined; readonly redirect?: RequestRedirect | undefined; readonly referrer?: string | undefined; readonly referrerPolicy?: ReferrerPolicy | undefined; readonly signal?: AbortSignal | null | undefined; readonly window?: null | undefined; }" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1140,7 +1195,8 @@ "{ readonly cache: RequestCache; readonly credentials: RequestCredentials; readonly destination: RequestDestination; readonly headers: Headers; readonly integrity: string; readonly keepalive: boolean; readonly method: string; readonly mode: RequestMode; readonly redirect: RequestRedirect; readonly referrer: string; readonly referrerPolicy: ReferrerPolicy; readonly signal: AbortSignal; readonly url: string; readonly clone: () => Request; readonly body: ReadableStream | null; readonly bodyUsed: boolean; readonly arrayBuffer: () => Promise; readonly blob: () => Promise; readonly formData: () => Promise; readonly json: () => Promise; readonly text: () => Promise; }" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1155,7 +1211,8 @@ "Readonly | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1170,7 +1227,8 @@ "TResponseBody | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1184,6 +1242,7 @@ "description": [], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -1204,7 +1263,8 @@ } ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1225,7 +1285,8 @@ } ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1244,7 +1305,8 @@ } ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1268,6 +1330,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -1289,6 +1352,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1315,7 +1379,8 @@ } ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1336,7 +1401,8 @@ } ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1357,7 +1423,8 @@ } ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1378,7 +1445,8 @@ } ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1399,7 +1467,8 @@ } ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1420,7 +1489,8 @@ } ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1441,7 +1511,8 @@ } ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1462,7 +1533,8 @@ } ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1480,6 +1552,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -1496,6 +1569,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1517,6 +1591,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1534,6 +1609,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -1549,6 +1625,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -1562,6 +1639,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1581,6 +1659,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -1594,6 +1673,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1613,6 +1693,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -1628,6 +1709,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1645,6 +1727,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -1658,6 +1741,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1677,6 +1761,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -1690,6 +1775,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1705,7 +1791,8 @@ "\nReturns the server's root basePath as configured, without any namespace prefix.\n\nSee {@link BasePath.get} for getting the basePath value for a specific request" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1720,7 +1807,8 @@ "string | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1736,6 +1824,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -1751,6 +1840,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -1764,6 +1854,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1783,6 +1874,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -1796,6 +1888,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1823,6 +1916,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -1832,7 +1926,8 @@ "label": "name", "description": [], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1845,7 +1940,8 @@ "Request" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1858,7 +1954,8 @@ "Response | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1875,6 +1972,7 @@ "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": true, "removeBy": "8.8.0\n\nNote to maintainers: when looking at usages, mind that typical use could be inside a `catch` block,\nso TS and code-reference navigation might not highlight them.", + "trackAdoption": false, "references": [] }, { @@ -1892,6 +1990,7 @@ "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": true, "removeBy": "8.8.0\n\nNote to maintainers: when looking at usages, mind that typical use could be inside a `catch` block,\nso TS and code-reference navigation might not highlight them.", + "trackAdoption": false, "references": [] }, { @@ -1905,7 +2004,8 @@ "TResponseBody | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1921,6 +2021,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -1932,7 +2033,8 @@ "Whether or not this chain has been halted." ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -1948,6 +2050,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1975,6 +2078,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -1989,7 +2093,8 @@ "Readonly | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -2004,7 +2109,8 @@ "TResponseBody | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2018,6 +2124,7 @@ "description": [], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser", @@ -2027,7 +2134,8 @@ "label": "message", "description": [], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -2037,7 +2145,8 @@ "label": "statusCode", "description": [], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-browser", @@ -2050,7 +2159,8 @@ "Record | undefined" ], "path": "packages/core/http/core-http-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2078,6 +2188,7 @@ ], "path": "packages/core/http/core-http-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_http_browser.mdx b/api_docs/kbn_core_http_browser.mdx index 167485947df34..90a5aabdce8e6 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_http_browser_internal.devdocs.json index cfd20889ca70d..cc07977158fa0 100644 --- a/api_docs/kbn_core_http_browser_internal.devdocs.json +++ b/api_docs/kbn_core_http_browser_internal.devdocs.json @@ -38,6 +38,7 @@ ], "path": "packages/core/http/core-http-browser-internal/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser-internal", @@ -51,6 +52,7 @@ ], "path": "packages/core/http/core-http-browser-internal/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser-internal", @@ -64,6 +66,7 @@ ], "path": "packages/core/http/core-http-browser-internal/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -78,6 +81,7 @@ ], "path": "packages/core/http/core-http-browser-internal/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -92,6 +96,7 @@ ], "path": "packages/core/http/core-http-browser-internal/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -109,6 +114,7 @@ ], "path": "packages/core/http/core-http-browser-internal/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -124,6 +130,7 @@ ], "path": "packages/core/http/core-http-browser-internal/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser-internal", @@ -137,6 +144,7 @@ ], "path": "packages/core/http/core-http-browser-internal/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -154,6 +162,7 @@ ], "path": "packages/core/http/core-http-browser-internal/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser-internal", @@ -167,6 +176,7 @@ ], "path": "packages/core/http/core-http-browser-internal/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_core_http_browser_internal.mdx b/api_docs/kbn_core_http_browser_internal.mdx index 81d932b59e51b..9d4d347bf3d57 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_http_browser_mocks.devdocs.json index 6b3ea0bc06e22..0bd3fb7f7197f 100644 --- a/api_docs/kbn_core_http_browser_mocks.devdocs.json +++ b/api_docs/kbn_core_http_browser_mocks.devdocs.json @@ -33,6 +33,7 @@ ], "path": "packages/core/http/core-http-browser-mocks/src/fetch_error.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser-mocks", @@ -46,6 +47,7 @@ ], "path": "packages/core/http/core-http-browser-mocks/src/fetch_error.mock.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -60,6 +62,7 @@ ], "path": "packages/core/http/core-http-browser-mocks/src/fetch_error.mock.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -74,6 +77,7 @@ ], "path": "packages/core/http/core-http-browser-mocks/src/fetch_error.mock.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -88,6 +92,7 @@ ], "path": "packages/core/http/core-http-browser-mocks/src/fetch_error.mock.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -102,6 +107,7 @@ ], "path": "packages/core/http/core-http-browser-mocks/src/fetch_error.mock.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -158,6 +164,7 @@ ], "path": "packages/core/http/core-http-browser-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -171,6 +178,7 @@ "description": [], "path": "packages/core/http/core-http-browser-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-browser-mocks", @@ -188,6 +196,7 @@ ], "path": "packages/core/http/core-http-browser-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -201,7 +210,8 @@ "{ basePath?: string | undefined; }" ], "path": "packages/core/http/core-http-browser-mocks/src/http_service.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -224,6 +234,7 @@ ], "path": "packages/core/http/core-http-browser-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -237,7 +248,8 @@ "{ basePath?: string | undefined; publicBaseUrl?: string | undefined; }" ], "path": "packages/core/http/core-http-browser-mocks/src/http_service.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -260,6 +272,7 @@ ], "path": "packages/core/http/core-http-browser-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -273,7 +286,8 @@ "{ basePath?: string | undefined; publicBaseUrl?: string | undefined; }" ], "path": "packages/core/http/core-http-browser-mocks/src/http_service.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -291,6 +305,7 @@ ], "path": "packages/core/http/core-http-browser-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -304,7 +319,8 @@ "{ publicBaseUrl?: string | undefined; serverBasePath?: string | undefined; }" ], "path": "packages/core/http/core-http-browser-mocks/src/base_path.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kbn_core_http_browser_mocks.mdx b/api_docs/kbn_core_http_browser_mocks.mdx index 9e0959b2fa8c8..4a14e036c3bfd 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_http_common.devdocs.json index 5cfbe826982ee..20c854e92e6ab 100644 --- a/api_docs/kbn_core_http_common.devdocs.json +++ b/api_docs/kbn_core_http_common.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/core/http/core-http-common/src/external_url_policy.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-common", @@ -42,7 +43,8 @@ "\nIndicates if this policy allows or denies access to the described destination." ], "path": "packages/core/http/core-http-common/src/external_url_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-common", @@ -57,7 +59,8 @@ "string | undefined" ], "path": "packages/core/http/core-http-common/src/external_url_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-common", @@ -72,7 +75,8 @@ "string | undefined" ], "path": "packages/core/http/core-http-common/src/external_url_policy.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_core_http_common.mdx b/api_docs/kbn_core_http_common.mdx index 0eba2291dc0ff..1b84ca589506b 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_http_context_server_mocks.devdocs.json index 2c77ba329d06d..94f515060dfb9 100644 --- a/api_docs/kbn_core_http_context_server_mocks.devdocs.json +++ b/api_docs/kbn_core_http_context_server_mocks.devdocs.json @@ -45,6 +45,7 @@ ], "path": "packages/core/http/core-http-context-server-mocks/src/context_container.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -58,6 +59,7 @@ "description": [], "path": "packages/core/http/core-http-context-server-mocks/src/context_container.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-context-server-mocks", @@ -78,6 +80,7 @@ ], "path": "packages/core/http/core-http-context-server-mocks/src/context_container.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -91,7 +94,8 @@ "any" ], "path": "packages/core/http/core-http-context-server-mocks/src/context_container.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -107,6 +111,7 @@ "description": [], "path": "packages/core/http/core-http-context-server-mocks/src/context_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-context-server-mocks", @@ -120,6 +125,7 @@ ], "path": "packages/core/http/core-http-context-server-mocks/src/context_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -137,6 +143,7 @@ ], "path": "packages/core/http/core-http-context-server-mocks/src/context_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -150,7 +157,8 @@ "{}" ], "path": "packages/core/http/core-http-context-server-mocks/src/context_service.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -168,6 +176,7 @@ ], "path": "packages/core/http/core-http-context-server-mocks/src/context_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -181,7 +190,8 @@ "{}" ], "path": "packages/core/http/core-http-context-server-mocks/src/context_service.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kbn_core_http_context_server_mocks.mdx b/api_docs/kbn_core_http_context_server_mocks.mdx index 24d4eea1ec581..35a8438855f43 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: 2022-09-05 +date: 2022-09-08 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_router_server_internal.devdocs.json b/api_docs/kbn_core_http_router_server_internal.devdocs.json index 444c019edeea9..4ff063af1f90d 100644 --- a/api_docs/kbn_core_http_router_server_internal.devdocs.json +++ b/api_docs/kbn_core_http_router_server_internal.devdocs.json @@ -19,6 +19,7 @@ "description": [], "path": "packages/core/http/core-http-router-server-internal/src/response_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-router-server-internal", @@ -32,6 +33,7 @@ ], "path": "packages/core/http/core-http-router-server-internal/src/response_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-router-server-internal", @@ -45,6 +47,7 @@ ], "path": "packages/core/http/core-http-router-server-internal/src/response_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -64,6 +67,7 @@ ], "path": "packages/core/http/core-http-router-server-internal/src/response_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-router-server-internal", @@ -77,6 +81,7 @@ ], "path": "packages/core/http/core-http-router-server-internal/src/response_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -96,6 +101,7 @@ ], "path": "packages/core/http/core-http-router-server-internal/src/response_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -116,6 +122,7 @@ ], "path": "packages/core/http/core-http-router-server-internal/src/response_adapter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-router-server-internal", @@ -130,6 +137,7 @@ ], "path": "packages/core/http/core-http-router-server-internal/src/response_adapter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -155,6 +163,7 @@ ], "path": "packages/core/http/core-http-router-server-internal/src/headers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-router-server-internal", @@ -168,6 +177,7 @@ ], "path": "packages/core/http/core-http-router-server-internal/src/headers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -182,6 +192,7 @@ ], "path": "packages/core/http/core-http-router-server-internal/src/headers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -196,6 +207,7 @@ ], "path": "packages/core/http/core-http-router-server-internal/src/headers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -214,6 +226,7 @@ ], "path": "packages/core/http/core-http-router-server-internal/src/response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-router-server-internal", @@ -227,6 +240,7 @@ ], "path": "packages/core/http/core-http-router-server-internal/src/response.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -247,6 +261,7 @@ ], "path": "packages/core/http/core-http-router-server-internal/src/route.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-router-server-internal", @@ -260,6 +275,7 @@ ], "path": "packages/core/http/core-http-router-server-internal/src/route.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -280,6 +296,7 @@ "description": [], "path": "packages/core/http/core-http-router-server-internal/src/response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-router-server-internal", @@ -292,7 +309,8 @@ "any" ], "path": "packages/core/http/core-http-router-server-internal/src/response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-router-server-internal", @@ -305,7 +323,8 @@ "any" ], "path": "packages/core/http/core-http-router-server-internal/src/response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-router-server-internal", @@ -318,7 +337,8 @@ "any" ], "path": "packages/core/http/core-http-router-server-internal/src/response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-router-server-internal", @@ -340,6 +360,7 @@ ], "path": "packages/core/http/core-http-router-server-internal/src/response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-router-server-internal", @@ -354,6 +375,7 @@ ], "path": "packages/core/http/core-http-router-server-internal/src/response.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -371,6 +393,7 @@ "description": [], "path": "packages/core/http/core-http-router-server-internal/src/response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-router-server-internal", @@ -383,7 +406,8 @@ "any" ], "path": "packages/core/http/core-http-router-server-internal/src/response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-router-server-internal", @@ -396,7 +420,8 @@ "any" ], "path": "packages/core/http/core-http-router-server-internal/src/response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_core_http_router_server_internal.mdx b/api_docs/kbn_core_http_router_server_internal.mdx index ca731c3f84b0f..5e0c00cb2c821 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_http_router_server_mocks.devdocs.json index 90fbdecc75145..1dfa09a953f90 100644 --- a/api_docs/kbn_core_http_router_server_mocks.devdocs.json +++ b/api_docs/kbn_core_http_router_server_mocks.devdocs.json @@ -76,6 +76,7 @@ ], "path": "packages/core/http/core-http-router-server-mocks/src/router.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -89,6 +90,7 @@ "description": [], "path": "packages/core/http/core-http-router-server-mocks/src/router.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-router-server-mocks", @@ -109,6 +111,7 @@ ], "path": "packages/core/http/core-http-router-server-mocks/src/router.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -122,7 +125,8 @@ "{ routerPath?: string | undefined; }" ], "path": "packages/core/http/core-http-router-server-mocks/src/router.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -142,6 +146,7 @@ ], "path": "packages/core/http/core-http-router-server-mocks/src/router.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -156,7 +161,8 @@ "" ], "path": "packages/core/http/core-http-router-server-mocks/src/router.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -174,6 +180,7 @@ ], "path": "packages/core/http/core-http-router-server-mocks/src/router.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_http_router_server_mocks.mdx b/api_docs/kbn_core_http_router_server_mocks.mdx index b04405ed94b61..10a9676bf1c52 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: 2022-09-05 +date: 2022-09-08 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 036e900ab9e8d..6fbfbacd7757a 100644 --- a/api_docs/kbn_core_http_server.devdocs.json +++ b/api_docs/kbn_core_http_server.devdocs.json @@ -32,6 +32,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -45,6 +46,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -58,6 +60,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -72,6 +75,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -94,6 +98,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -115,7 +120,8 @@ } ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -146,6 +152,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -165,7 +172,8 @@ ".authenticated" ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -179,6 +187,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -198,7 +207,8 @@ ".notHandled" ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -214,6 +224,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -228,7 +239,8 @@ "Record | undefined" ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -250,7 +262,8 @@ " | undefined" ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -272,7 +285,8 @@ " | undefined" ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -303,6 +317,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -322,7 +337,8 @@ ".redirected" ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -336,6 +352,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -366,6 +383,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -386,6 +404,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -412,6 +431,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -444,6 +464,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -464,6 +485,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -493,6 +515,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -507,7 +530,8 @@ "T | undefined" ], "path": "packages/core/http/core-http-server/src/router/response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -529,7 +553,8 @@ " | undefined" ], "path": "packages/core/http/core-http-server/src/router/response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -544,7 +569,8 @@ "boolean | undefined" ], "path": "packages/core/http/core-http-server/src/router/response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -554,7 +580,8 @@ "label": "statusCode", "description": [], "path": "packages/core/http/core-http-server/src/router/response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -570,6 +597,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -591,7 +619,8 @@ " | undefined" ], "path": "packages/core/http/core-http-server/src/router/response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -613,7 +642,8 @@ " | undefined" ], "path": "packages/core/http/core-http-server/src/router/response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -627,6 +657,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -658,6 +689,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -678,7 +710,8 @@ "" ], "path": "packages/core/http/core-http-server/src/auth_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -704,6 +737,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -724,7 +758,8 @@ "" ], "path": "packages/core/http/core-http-server/src/auth_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -742,6 +777,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -758,7 +794,8 @@ " | Buffer | undefined" ], "path": "packages/core/http/core-http-server/src/router/response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -780,7 +817,8 @@ " | undefined" ], "path": "packages/core/http/core-http-server/src/router/response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -795,7 +833,8 @@ "boolean | undefined" ], "path": "packages/core/http/core-http-server/src/router/response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -811,6 +850,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -822,7 +862,8 @@ "The name of the Kibana server" ], "path": "packages/core/http/core-http-server/src/http_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -834,7 +875,8 @@ "The hostname of the server" ], "path": "packages/core/http/core-http-server/src/http_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -846,7 +888,8 @@ "The port the server is listening on" ], "path": "packages/core/http/core-http-server/src/http_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -861,7 +904,8 @@ "\"http\" | \"https\" | \"socket\"" ], "path": "packages/core/http/core-http-server/src/http_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -887,6 +931,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -910,6 +955,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -923,6 +969,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -945,6 +992,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -969,7 +1017,8 @@ } ], "path": "packages/core/http/core-http-server/src/http_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -992,6 +1041,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1019,6 +1069,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -1050,6 +1101,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -1072,6 +1124,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1099,6 +1152,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -1120,6 +1174,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1147,6 +1202,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -1168,6 +1224,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1195,6 +1252,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -1216,6 +1274,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1243,6 +1302,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -1264,6 +1324,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1291,6 +1352,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -1312,6 +1374,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1336,7 +1399,8 @@ } ], "path": "packages/core/http/core-http-server/src/http_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -1357,7 +1421,8 @@ } ], "path": "packages/core/http/core-http-server/src/http_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -1381,6 +1446,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1413,6 +1479,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -1426,6 +1493,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1447,6 +1515,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1473,6 +1542,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1488,6 +1558,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -1508,7 +1579,8 @@ } ], "path": "packages/core/http/core-http-server/src/http_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -1529,7 +1601,8 @@ } ], "path": "packages/core/http/core-http-server/src/http_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -1552,6 +1625,7 @@ ], "path": "packages/core/http/core-http-server/src/http_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1567,6 +1641,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/auth_headers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -1596,6 +1671,7 @@ ], "path": "packages/core/http/core-http-server/src/auth_headers.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1616,7 +1692,8 @@ "" ], "path": "packages/core/http/core-http-server/src/auth_headers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -1629,7 +1706,8 @@ "{ [x: string]: string | string[]; }" ], "path": "packages/core/http/core-http-server/src/auth_headers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1661,6 +1739,7 @@ ], "path": "packages/core/http/core-http-server/src/auth_headers.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1681,7 +1760,8 @@ "" ], "path": "packages/core/http/core-http-server/src/auth_headers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1699,6 +1779,7 @@ ], "path": "packages/core/http/core-http-server/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -1710,7 +1791,8 @@ "\nreturns the server's basePath.\n\nSee {@link IBasePath.get} for getting the basePath value for a specific request" ], "path": "packages/core/http/core-http-server/src/base_path.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -1725,7 +1807,8 @@ "string | undefined" ], "path": "packages/core/http/core-http-server/src/base_path.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -1749,6 +1832,7 @@ ], "path": "packages/core/http/core-http-server/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -1769,6 +1853,7 @@ ], "path": "packages/core/http/core-http-server/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1796,6 +1881,7 @@ ], "path": "packages/core/http/core-http-server/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -1816,6 +1902,7 @@ ], "path": "packages/core/http/core-http-server/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1830,6 +1917,7 @@ ], "path": "packages/core/http/core-http-server/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1849,6 +1937,7 @@ ], "path": "packages/core/http/core-http-server/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -1862,6 +1951,7 @@ ], "path": "packages/core/http/core-http-server/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1881,6 +1971,7 @@ ], "path": "packages/core/http/core-http-server/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -1894,6 +1985,7 @@ ], "path": "packages/core/http/core-http-server/src/base_path.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1913,6 +2005,7 @@ ], "path": "packages/core/http/core-http-server/src/router/context_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -1944,6 +2037,7 @@ ], "path": "packages/core/http/core-http-server/src/router/context_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -1959,6 +2053,7 @@ ], "path": "packages/core/http/core-http-server/src/router/context_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1975,6 +2070,7 @@ ], "path": "packages/core/http/core-http-server/src/router/context_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1998,6 +2094,7 @@ ], "path": "packages/core/http/core-http-server/src/router/context_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2067,6 +2164,7 @@ ], "path": "packages/core/http/core-http-server/src/router/context_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -2082,6 +2180,7 @@ ], "path": "packages/core/http/core-http-server/src/router/context_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2121,6 +2220,7 @@ ], "path": "packages/core/http/core-http-server/src/router/context_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2142,6 +2242,7 @@ ], "path": "packages/core/http/core-http-server/src/csp.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -2153,7 +2254,8 @@ "\nSpecify whether browsers that do not support CSP should be\nable to use Kibana. Use `true` to block and `false` to allow." ], "path": "packages/core/http/core-http-server/src/csp.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -2165,7 +2267,8 @@ "\nSpecify whether users with legacy browsers should be warned\nabout their lack of Kibana security compliance." ], "path": "packages/core/http/core-http-server/src/csp.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -2177,7 +2280,8 @@ "\nWhether or not embedding (using iframes) should be allowed by the CSP. If embedding is disabled, a restrictive 'frame-ancestors' rule will be added to the default CSP rules." ], "path": "packages/core/http/core-http-server/src/csp.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -2189,7 +2293,8 @@ "\nThe CSP rules in a formatted directives string for use\nin a `Content-Security-Policy` header." ], "path": "packages/core/http/core-http-server/src/csp.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2205,6 +2310,7 @@ ], "path": "packages/core/http/core-http-server/src/external_url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -2220,7 +2326,8 @@ "[]" ], "path": "packages/core/http/core-http-server/src/external_url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2246,6 +2353,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -2255,7 +2363,8 @@ "label": "status", "description": [], "path": "packages/core/http/core-http-server/src/router/response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -2268,7 +2377,8 @@ "T | undefined" ], "path": "packages/core/http/core-http-server/src/router/response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -2287,7 +2397,8 @@ } ], "path": "packages/core/http/core-http-server/src/router/response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2303,6 +2414,7 @@ ], "path": "packages/core/http/core-http-server/src/router/socket.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -2324,6 +2436,7 @@ ], "path": "packages/core/http/core-http-server/src/router/socket.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -2337,6 +2450,7 @@ ], "path": "packages/core/http/core-http-server/src/router/socket.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2362,6 +2476,7 @@ ], "path": "packages/core/http/core-http-server/src/router/socket.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -2375,6 +2490,7 @@ ], "path": "packages/core/http/core-http-server/src/router/socket.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2402,6 +2518,7 @@ ], "path": "packages/core/http/core-http-server/src/router/socket.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -2417,6 +2534,7 @@ ], "path": "packages/core/http/core-http-server/src/router/socket.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2438,6 +2556,7 @@ ], "path": "packages/core/http/core-http-server/src/router/socket.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2455,6 +2574,7 @@ ], "path": "packages/core/http/core-http-server/src/router/socket.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -2465,6 +2585,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/router/socket.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -2477,7 +2598,8 @@ "boolean | undefined" ], "path": "packages/core/http/core-http-server/src/router/socket.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -2490,7 +2612,8 @@ "boolean | undefined" ], "path": "packages/core/http/core-http-server/src/router/socket.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2512,7 +2635,8 @@ "boolean | undefined" ], "path": "packages/core/http/core-http-server/src/router/socket.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -2527,7 +2651,8 @@ "Error | undefined" ], "path": "packages/core/http/core-http-server/src/router/socket.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2553,6 +2678,7 @@ ], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -2564,7 +2690,8 @@ "\nResulted path" ], "path": "packages/core/http/core-http-server/src/router/router.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -2604,6 +2731,7 @@ ], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2626,7 +2754,8 @@ "" ], "path": "packages/core/http/core-http-server/src/router/router.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -2674,6 +2803,7 @@ ], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2687,7 +2817,8 @@ "Context" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -2707,7 +2838,8 @@ "" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -2720,7 +2852,8 @@ "ResponseFactory" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2764,6 +2897,7 @@ ], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2786,7 +2920,8 @@ "" ], "path": "packages/core/http/core-http-server/src/router/router.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -2834,6 +2969,7 @@ ], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2847,7 +2983,8 @@ "Context" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -2867,7 +3004,8 @@ "" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -2880,7 +3018,8 @@ "ResponseFactory" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2924,6 +3063,7 @@ ], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2946,7 +3086,8 @@ "" ], "path": "packages/core/http/core-http-server/src/router/router.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -2994,6 +3135,7 @@ ], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3007,7 +3149,8 @@ "Context" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -3027,7 +3170,8 @@ "" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -3040,7 +3184,8 @@ "ResponseFactory" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -3084,6 +3229,7 @@ ], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3106,7 +3252,8 @@ "" ], "path": "packages/core/http/core-http-server/src/router/router.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -3154,6 +3301,7 @@ ], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3167,7 +3315,8 @@ "Context" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -3187,7 +3336,8 @@ "" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -3200,7 +3350,8 @@ "ResponseFactory" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -3244,6 +3395,7 @@ ], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3266,7 +3418,8 @@ "" ], "path": "packages/core/http/core-http-server/src/router/router.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -3314,6 +3467,7 @@ ], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3327,7 +3481,8 @@ "Context" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -3347,7 +3502,8 @@ "" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -3360,7 +3516,8 @@ "ResponseFactory" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -3436,6 +3593,7 @@ ], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3476,6 +3634,7 @@ ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3489,7 +3648,8 @@ "Context" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -3509,7 +3669,8 @@ "" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -3522,7 +3683,8 @@ "ResponseFactory" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -3540,6 +3702,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -3571,6 +3734,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -3593,6 +3757,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3628,6 +3793,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -3650,6 +3816,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3685,6 +3852,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -3707,6 +3875,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3742,6 +3911,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -3764,6 +3934,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3799,6 +3970,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -3821,6 +3993,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3866,6 +4039,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -3898,6 +4072,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3915,6 +4090,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -3946,6 +4122,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -3967,6 +4144,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3996,6 +4174,7 @@ ], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -4007,7 +4186,8 @@ "\nA identifier to identify this request.\n" ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4019,7 +4199,8 @@ "\nA UUID to identify this request.\n" ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4034,7 +4215,8 @@ "URL" ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4061,7 +4243,8 @@ ">; }" ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4076,7 +4259,8 @@ "{ 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; date?: string | string[] | undefined; etag?: string | string[] | undefined; expect?: string | string[] | undefined; expires?: string | string[] | undefined; forwarded?: string | string[] | undefined; from?: 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; location?: 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; range?: 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; warning?: string | string[] | undefined; \"www-authenticate\"?: string | string[] | undefined; } & { [header: string]: string | string[] | undefined; }" ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4088,7 +4272,8 @@ "\nWhether or not the request is a \"system request\" rather than an application-level request.\nCan be set on the client using the `HttpFetchOptions#asSystemRequest` option." ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4109,7 +4294,8 @@ } ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4130,7 +4316,8 @@ } ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4151,7 +4338,8 @@ } ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4167,7 +4355,8 @@ " | undefined" ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4182,7 +4371,8 @@ "Params" ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4197,7 +4387,8 @@ "Query" ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4212,7 +4403,8 @@ "Body" ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4228,6 +4420,7 @@ ], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -4239,7 +4432,8 @@ "true if the request has been successfully authenticated, false otherwise." ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4255,6 +4449,7 @@ ], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -4270,7 +4465,8 @@ "" ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4286,7 +4482,8 @@ "" ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4312,6 +4509,7 @@ ], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -4321,7 +4519,8 @@ "label": "path", "description": [], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4334,7 +4533,8 @@ "Method" ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4363,7 +4563,8 @@ ">" ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4388,6 +4589,7 @@ ], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -4397,7 +4599,8 @@ "label": "requestId", "description": [], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4407,7 +4610,8 @@ "label": "requestUuid", "description": [], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4421,7 +4625,8 @@ " | undefined" ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4434,7 +4639,8 @@ "string | undefined" ], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4459,6 +4665,7 @@ ], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -4468,7 +4675,8 @@ "label": "xsrfRequired", "description": [], "path": "packages/core/http/core-http-server/src/router/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4482,6 +4690,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -4513,6 +4722,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -4535,6 +4745,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4570,6 +4781,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -4592,6 +4804,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4627,6 +4840,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -4649,6 +4863,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4666,6 +4881,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/lifecycle/on_post_auth.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -4684,7 +4900,8 @@ } ], "path": "packages/core/http/core-http-server/src/lifecycle/on_post_auth.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4698,6 +4915,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/lifecycle/on_post_auth.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -4720,6 +4938,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_post_auth.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -4735,6 +4954,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_auth.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -4753,7 +4973,8 @@ } ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_auth.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4767,6 +4988,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_auth.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -4789,6 +5011,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_auth.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -4806,6 +5029,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -4827,7 +5051,8 @@ " | undefined" ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4843,6 +5068,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -4852,7 +5078,8 @@ "label": "statusCode", "description": [], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4868,6 +5095,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -4889,7 +5117,8 @@ " | undefined" ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4901,7 +5130,8 @@ "the body to use in the response" ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4915,6 +5145,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -4934,7 +5165,8 @@ ".next" ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4954,7 +5186,8 @@ " | undefined" ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4968,6 +5201,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -4987,7 +5221,8 @@ ".render" ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -4997,7 +5232,8 @@ "label": "body", "description": [], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -5017,7 +5253,8 @@ " | undefined" ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5033,6 +5270,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5063,6 +5301,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5082,6 +5321,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5116,6 +5356,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5136,6 +5377,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -5153,6 +5395,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_routing.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5172,7 +5415,8 @@ ".next" ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_routing.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5186,6 +5430,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_routing.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5205,7 +5450,8 @@ ".rewriteUrl" ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_routing.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -5215,7 +5461,8 @@ "label": "url", "description": [], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_routing.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5229,6 +5476,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_routing.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5251,6 +5499,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_routing.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5275,6 +5524,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_routing.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5288,6 +5538,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_routing.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5307,6 +5558,7 @@ ], "path": "packages/core/http/core-http-server/src/router/request_handler_context.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5324,6 +5576,7 @@ ], "path": "packages/core/http/core-http-server/src/router/request_handler_context.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5337,6 +5590,7 @@ ], "path": "packages/core/http/core-http-server/src/router/request_handler_context.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5366,6 +5620,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5377,7 +5632,8 @@ "\nThe endpoint _within_ the router path to register the route.\n" ], "path": "packages/core/http/core-http-server/src/router/route.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -5400,7 +5656,8 @@ "" ], "path": "packages/core/http/core-http-server/src/router/route.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -5422,7 +5679,8 @@ " | undefined" ], "path": "packages/core/http/core-http-server/src/router/route.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5448,6 +5706,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5462,7 +5721,8 @@ "boolean | \"optional\" | undefined" ], "path": "packages/core/http/core-http-server/src/router/route.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -5477,7 +5737,8 @@ "(Method extends \"get\" ? never : boolean) | undefined" ], "path": "packages/core/http/core-http-server/src/router/route.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -5492,7 +5753,8 @@ "readonly string[] | undefined" ], "path": "packages/core/http/core-http-server/src/router/route.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -5515,7 +5777,8 @@ ") | undefined" ], "path": "packages/core/http/core-http-server/src/router/route.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -5530,7 +5793,8 @@ "{ payload?: (Method extends \"get\" | \"options\" ? undefined : number) | undefined; idleSocket?: number | undefined; } | undefined" ], "path": "packages/core/http/core-http-server/src/router/route.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5546,6 +5810,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5568,7 +5833,8 @@ "[] | undefined" ], "path": "packages/core/http/core-http-server/src/router/route.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -5583,7 +5849,8 @@ "number | undefined" ], "path": "packages/core/http/core-http-server/src/router/route.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -5598,7 +5865,8 @@ "\"data\" | \"stream\" | undefined" ], "path": "packages/core/http/core-http-server/src/router/route.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -5613,7 +5881,8 @@ "boolean | \"gunzip\" | undefined" ], "path": "packages/core/http/core-http-server/src/router/route.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5627,6 +5896,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5653,7 +5923,8 @@ } ], "path": "packages/core/http/core-http-server/src/router/router.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -5663,7 +5934,8 @@ "label": "path", "description": [], "path": "packages/core/http/core-http-server/src/router/router.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -5691,7 +5963,8 @@ ">" ], "path": "packages/core/http/core-http-server/src/router/router.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -5713,6 +5986,7 @@ ], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5726,6 +6000,7 @@ ], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5740,6 +6015,7 @@ ], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5759,6 +6035,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5772,6 +6049,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5785,6 +6063,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5810,6 +6089,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5823,6 +6103,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5837,6 +6118,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -5866,6 +6148,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5887,7 +6170,8 @@ "

| undefined" ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -5909,7 +6193,8 @@ " | undefined" ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -5931,7 +6216,8 @@ " | undefined" ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5947,6 +6233,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5961,7 +6248,8 @@ "{ params?: boolean | undefined; query?: boolean | undefined; body?: boolean | undefined; } | undefined" ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5977,6 +6265,7 @@ ], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -5988,7 +6277,8 @@ "\nWhether the cookie is valid or not." ], "path": "packages/core/http/core-http-server/src/session_storage.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -6003,7 +6293,8 @@ "string | undefined" ], "path": "packages/core/http/core-http-server/src/session_storage.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6029,6 +6320,7 @@ ], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -6044,6 +6336,7 @@ ], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6061,6 +6354,7 @@ ], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -6076,6 +6370,7 @@ ], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6095,6 +6390,7 @@ ], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -6122,6 +6418,7 @@ ], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -6133,7 +6430,8 @@ "\nName of the session cookie." ], "path": "packages/core/http/core-http-server/src/session_storage.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -6145,7 +6443,8 @@ "\nA key used to encrypt a cookie's value. Should be at least 32 characters long." ], "path": "packages/core/http/core-http-server/src/session_storage.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -6168,6 +6467,7 @@ ], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -6181,6 +6481,7 @@ ], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6196,7 +6497,8 @@ "\nFlag indicating whether the cookie should be sent only via a secure connection." ], "path": "packages/core/http/core-http-server/src/session_storage.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -6211,7 +6513,8 @@ "\"None\" | \"Strict\" | \"Lax\" | undefined" ], "path": "packages/core/http/core-http-server/src/session_storage.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6237,6 +6540,7 @@ ], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -6266,6 +6570,7 @@ ], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server", @@ -6286,6 +6591,7 @@ ], "path": "packages/core/http/core-http-server/src/session_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6305,6 +6611,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6318,6 +6625,7 @@ ], "path": "packages/core/http/core-http-server/src/auth_state.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6329,6 +6637,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6340,6 +6649,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_routing.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -6414,6 +6724,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6434,7 +6745,8 @@ "" ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -6461,7 +6773,8 @@ } ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -6480,7 +6793,8 @@ } ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6497,6 +6811,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6533,6 +6848,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/auth.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6549,6 +6865,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6583,6 +6900,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." ], @@ -6607,7 +6925,8 @@ "" ], "path": "packages/core/http/core-http-server/src/auth_headers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6642,6 +6961,7 @@ ], "path": "packages/core/http/core-http-server/src/auth_state.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6664,7 +6984,8 @@ "" ], "path": "packages/core/http/core-http-server/src/auth_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6691,6 +7012,7 @@ ], "path": "packages/core/http/core-http-server/src/router/context_provider.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6707,6 +7029,7 @@ ], "path": "packages/core/http/core-http-server/src/router/context_provider.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6720,7 +7043,8 @@ "T" ], "path": "packages/core/http/core-http-server/src/router/context_provider.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -6733,7 +7057,8 @@ "any[]" ], "path": "packages/core/http/core-http-server/src/router/context_provider.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6752,6 +7077,7 @@ ], "path": "packages/core/http/core-http-server/src/router/context_provider.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6768,6 +7094,7 @@ ], "path": "packages/core/http/core-http-server/src/router/headers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6786,6 +7113,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6820,6 +7148,7 @@ ], "path": "packages/core/http/core-http-server/src/router/context_provider.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [ "The context value associated with this key. May also return a Promise which will be resolved before\nattaching to the context object." ], @@ -6837,7 +7166,8 @@ "{ [P in Exclude]: Context[P]; }" ], "path": "packages/core/http/core-http-server/src/router/context_provider.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -6868,7 +7198,8 @@ "]" ], "path": "packages/core/http/core-http-server/src/router/context_provider.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6895,6 +7226,7 @@ ], "path": "packages/core/http/core-http-server/src/auth_state.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6917,7 +7249,8 @@ "" ], "path": "packages/core/http/core-http-server/src/auth_state.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6952,6 +7285,7 @@ ], "path": "packages/core/http/core-http-server/src/router/request.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7017,6 +7351,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7033,6 +7368,7 @@ ], "path": "packages/core/http/core-http-server/src/router/headers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7056,6 +7392,7 @@ ], "path": "packages/core/http/core-http-server/src/router/headers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7086,6 +7423,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response_factory.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7158,6 +7496,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_post_auth.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7178,7 +7517,8 @@ "" ], "path": "packages/core/http/core-http-server/src/lifecycle/on_post_auth.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -7205,7 +7545,8 @@ } ], "path": "packages/core/http/core-http-server/src/lifecycle/on_post_auth.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -7224,7 +7565,8 @@ } ], "path": "packages/core/http/core-http-server/src/lifecycle/on_post_auth.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7247,6 +7589,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_post_auth.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7258,6 +7601,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/lifecycle/on_post_auth.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7330,6 +7674,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_auth.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7350,7 +7695,8 @@ "" ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_auth.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -7377,7 +7723,8 @@ } ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_auth.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -7396,7 +7743,8 @@ } ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_auth.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7419,6 +7767,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_auth.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7430,6 +7779,7 @@ "description": [], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_auth.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7486,6 +7836,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7506,7 +7857,8 @@ "" ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -7525,7 +7877,8 @@ } ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -7544,7 +7897,8 @@ } ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7575,6 +7929,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_response.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7647,6 +8002,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_routing.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7667,7 +8023,8 @@ "" ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_routing.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -7694,7 +8051,8 @@ } ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_routing.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -7713,7 +8071,8 @@ } ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_routing.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7744,6 +8103,7 @@ ], "path": "packages/core/http/core-http-server/src/lifecycle/on_pre_routing.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7767,6 +8127,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7807,6 +8168,7 @@ ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7822,7 +8184,8 @@ "Context" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -7844,7 +8207,8 @@ "" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -7859,7 +8223,8 @@ "ResponseFactory" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7934,6 +8299,7 @@ ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7972,6 +8338,7 @@ ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7985,7 +8352,8 @@ "Context" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -8005,7 +8373,8 @@ "" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -8018,7 +8387,8 @@ "ResponseFactory" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -8047,6 +8417,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8063,6 +8434,7 @@ ], "path": "packages/core/http/core-http-server/src/router/response.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8079,6 +8451,7 @@ ], "path": "packages/core/http/core-http-server/src/router/headers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8095,6 +8468,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8125,6 +8499,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8165,6 +8540,7 @@ ], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -8185,7 +8561,8 @@ "" ], "path": "packages/core/http/core-http-server/src/router/router.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -8231,6 +8608,7 @@ ], "path": "packages/core/http/core-http-server/src/router/router.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -8244,7 +8622,8 @@ "Context" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -8264,7 +8643,8 @@ "" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -8277,7 +8657,8 @@ "ResponseFactory" ], "path": "packages/core/http/core-http-server/src/router/request_handler.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -8314,6 +8695,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -8327,7 +8709,8 @@ "any" ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -8346,7 +8729,8 @@ } ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8376,6 +8760,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8406,6 +8791,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route_validator.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8422,6 +8808,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8452,6 +8839,7 @@ ], "path": "packages/core/http/core-http-server/src/auth_headers.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -8472,7 +8860,8 @@ "" ], "path": "packages/core/http/core-http-server/src/auth_headers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server", @@ -8485,7 +8874,8 @@ "{ [x: string]: string | string[]; }" ], "path": "packages/core/http/core-http-server/src/auth_headers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8504,6 +8894,7 @@ ], "path": "packages/core/http/core-http-server/src/router/headers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -8522,6 +8913,7 @@ ], "path": "packages/core/http/core-http-server/src/router/route.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/kbn_core_http_server.mdx b/api_docs/kbn_core_http_server.mdx index d05b1875e9daa..cc27eb8d1928f 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_http_server_internal.devdocs.json index 87f187a690989..03cad7bd46025 100644 --- a/api_docs/kbn_core_http_server_internal.devdocs.json +++ b/api_docs/kbn_core_http_server_internal.devdocs.json @@ -32,6 +32,7 @@ ], "path": "packages/core/http/core-http-server-internal/src/csp/csp_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server-internal", @@ -50,7 +51,8 @@ } ], "path": "packages/core/http/core-http-server-internal/src/csp/csp_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -63,7 +65,8 @@ "CspDirectives" ], "path": "packages/core/http/core-http-server-internal/src/csp/csp_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -73,7 +76,8 @@ "label": "strict", "description": [], "path": "packages/core/http/core-http-server-internal/src/csp/csp_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -83,7 +87,8 @@ "label": "warnLegacyBrowsers", "description": [], "path": "packages/core/http/core-http-server-internal/src/csp/csp_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -93,7 +98,8 @@ "label": "disableEmbedding", "description": [], "path": "packages/core/http/core-http-server-internal/src/csp/csp_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -103,7 +109,8 @@ "label": "header", "description": [], "path": "packages/core/http/core-http-server-internal/src/csp/csp_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -130,6 +137,7 @@ ], "path": "packages/core/http/core-http-server-internal/src/external_url/external_url_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server-internal", @@ -148,7 +156,8 @@ } ], "path": "packages/core/http/core-http-server-internal/src/external_url/external_url_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -162,7 +171,8 @@ "[]" ], "path": "packages/core/http/core-http-server-internal/src/external_url/external_url_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -187,6 +197,7 @@ ], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server-internal", @@ -196,7 +207,8 @@ "label": "name", "description": [], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -206,7 +218,8 @@ "label": "autoListen", "description": [], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -216,7 +229,8 @@ "label": "host", "description": [], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -226,7 +240,8 @@ "label": "keepaliveTimeout", "description": [], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -236,7 +251,8 @@ "label": "socketTimeout", "description": [], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -246,7 +262,8 @@ "label": "port", "description": [], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -259,7 +276,8 @@ "{ enabled: boolean; allowCredentials: boolean; allowOrigin: string[]; }" ], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -272,7 +290,8 @@ "{ [x: string]: string | string[]; }" ], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -285,7 +304,8 @@ "{ [x: string]: string | string[]; }" ], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -298,7 +318,8 @@ "ByteSizeValue" ], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -311,7 +332,8 @@ "string | undefined" ], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -324,7 +346,8 @@ "string | undefined" ], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -334,7 +357,8 @@ "label": "rewriteBasePath", "description": [], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -347,7 +371,8 @@ "SslConfig" ], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -360,7 +385,8 @@ "{ enabled: boolean; referrerWhitelist?: string[] | undefined; }" ], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -373,7 +399,8 @@ "ICspConfig" ], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -386,7 +413,8 @@ "IExternalUrlConfig" ], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -399,7 +427,8 @@ "{ disableProtection: boolean; allowlist: string[]; }" ], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -412,7 +441,8 @@ "{ allowFromAnyIp: boolean; ipAllowlist: string[]; }" ], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -425,7 +455,8 @@ "moment.Duration" ], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -439,6 +470,7 @@ "description": [], "path": "packages/core/http/core-http-server-internal/src/http_server.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server-internal", @@ -452,6 +484,7 @@ ], "path": "packages/core/http/core-http-server-internal/src/http_server.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server-internal", @@ -465,6 +498,7 @@ ], "path": "packages/core/http/core-http-server-internal/src/http_server.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -479,6 +513,7 @@ ], "path": "packages/core/http/core-http-server-internal/src/http_server.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -494,6 +529,7 @@ ], "path": "packages/core/http/core-http-server-internal/src/http_server.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -511,6 +547,7 @@ ], "path": "packages/core/http/core-http-server-internal/src/http_server.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -538,6 +575,7 @@ ], "path": "packages/core/http/core-http-server-internal/src/http_server.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server-internal", @@ -557,6 +595,7 @@ ], "path": "packages/core/http/core-http-server-internal/src/http_server.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -572,6 +611,7 @@ ], "path": "packages/core/http/core-http-server-internal/src/http_server.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -589,6 +629,7 @@ ], "path": "packages/core/http/core-http-server-internal/src/http_server.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -604,6 +645,7 @@ ], "path": "packages/core/http/core-http-server-internal/src/http_server.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -634,6 +676,7 @@ ], "path": "packages/core/http/core-http-server-internal/src/cookie_session_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server-internal", @@ -647,6 +690,7 @@ ], "path": "packages/core/http/core-http-server-internal/src/cookie_session_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -663,6 +707,7 @@ ], "path": "packages/core/http/core-http-server-internal/src/cookie_session_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -680,6 +725,7 @@ ], "path": "packages/core/http/core-http-server-internal/src/cookie_session_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -694,6 +740,7 @@ ], "path": "packages/core/http/core-http-server-internal/src/cookie_session_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -718,6 +765,7 @@ ], "path": "packages/core/http/core-http-server-internal/src/http_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -731,6 +779,7 @@ "description": [], "path": "packages/core/http/core-http-server-internal/src/csp/config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server-internal", @@ -742,7 +791,8 @@ "// TODO: Move this to server.csp using config deprecations\n// ? https://github.com/elastic/kibana/pull/52251" ], "path": "packages/core/http/core-http-server-internal/src/csp/config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -786,7 +836,8 @@ "; }>" ], "path": "packages/core/http/core-http-server-internal/src/csp/config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -800,6 +851,7 @@ "description": [], "path": "packages/core/http/core-http-server-internal/src/external_url/config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server-internal", @@ -809,7 +861,8 @@ "label": "path", "description": [], "path": "packages/core/http/core-http-server-internal/src/external_url/config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-internal", @@ -827,7 +880,8 @@ "[]>; }>" ], "path": "packages/core/http/core-http-server-internal/src/external_url/config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_core_http_server_internal.mdx b/api_docs/kbn_core_http_server_internal.mdx index e6371b18af1bb..a6a4ea0f0dabb 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_http_server_mocks.devdocs.json index d24bcb8fcab1b..262d3311c6d1a 100644 --- a/api_docs/kbn_core_http_server_mocks.devdocs.json +++ b/api_docs/kbn_core_http_server_mocks.devdocs.json @@ -26,6 +26,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/test_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server-mocks", @@ -41,6 +42,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/test_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -64,6 +66,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/test_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server-mocks", @@ -79,6 +82,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/test_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -113,6 +117,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -153,6 +158,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -175,6 +181,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -209,6 +216,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -263,6 +271,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -285,6 +294,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -298,6 +308,7 @@ "description": [], "path": "packages/core/http/core-http-server-mocks/src/http_server.mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server-mocks", @@ -315,6 +326,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_server.mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -329,7 +341,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-http-router-server-mocks/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -350,6 +363,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_server.mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -366,7 +380,8 @@ "> | undefined" ], "path": "node_modules/@types/kbn__hapi-mocks/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -384,6 +399,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_server.mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -401,6 +417,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_server.mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -416,6 +433,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_server.mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -431,6 +449,7 @@ "description": [], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server-mocks", @@ -444,6 +463,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -459,6 +479,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -469,7 +490,8 @@ "label": "serverBasePath", "description": [], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-http-server-mocks", @@ -479,7 +501,8 @@ "label": "publicBaseUrl", "description": [], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -495,6 +518,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -517,6 +541,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -539,6 +564,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -561,6 +587,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -588,6 +615,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -610,6 +638,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -632,6 +661,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -649,6 +679,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -666,6 +697,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -683,6 +715,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -700,6 +733,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -717,6 +751,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -734,6 +769,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -750,6 +786,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/http_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -763,7 +800,8 @@ "{ routerPath?: string | undefined; } | undefined" ], "path": "node_modules/@types/kbn__core-http-router-server-mocks/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -779,6 +817,7 @@ "description": [], "path": "packages/core/http/core-http-server-mocks/src/cookie_session_storage.mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-http-server-mocks", @@ -794,6 +833,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/cookie_session_storage.mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -811,6 +851,7 @@ ], "path": "packages/core/http/core-http-server-mocks/src/cookie_session_storage.mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_http_server_mocks.mdx b/api_docs/kbn_core_http_server_mocks.mdx index a0addab8321d7..4bc5202d1ecbb 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_i18n_browser.devdocs.json index 28c1fd36c3064..d1057e5878eac 100644 --- a/api_docs/kbn_core_i18n_browser.devdocs.json +++ b/api_docs/kbn_core_i18n_browser.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/core/i18n/core-i18n-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-i18n-browser", @@ -46,6 +47,7 @@ ], "path": "packages/core/i18n/core-i18n-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-i18n-browser", @@ -56,6 +58,7 @@ "description": [], "path": "packages/core/i18n/core-i18n-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-i18n-browser", @@ -68,7 +71,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "packages/core/i18n/core-i18n-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kbn_core_i18n_browser.mdx b/api_docs/kbn_core_i18n_browser.mdx index eb958abf289c8..dc6fe251ed8c8 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_i18n_browser_mocks.devdocs.json index 7811c288caed5..0ec0cea1ba1ec 100644 --- a/api_docs/kbn_core_i18n_browser_mocks.devdocs.json +++ b/api_docs/kbn_core_i18n_browser_mocks.devdocs.json @@ -32,6 +32,7 @@ "description": [], "path": "packages/core/i18n/core-i18n-browser-mocks/src/i18n_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-i18n-browser-mocks", @@ -45,6 +46,7 @@ ], "path": "packages/core/i18n/core-i18n-browser-mocks/src/i18n_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -62,6 +64,7 @@ ], "path": "packages/core/i18n/core-i18n-browser-mocks/src/i18n_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_i18n_browser_mocks.mdx b/api_docs/kbn_core_i18n_browser_mocks.mdx index 00890f3383472..96a1d3df89f07 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_i18n_server.devdocs.json index 152af276cadb5..f53aaa6ac7f05 100644 --- a/api_docs/kbn_core_i18n_server.devdocs.json +++ b/api_docs/kbn_core_i18n_server.devdocs.json @@ -29,6 +29,7 @@ "description": [], "path": "packages/core/i18n/core-i18n-server/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-i18n-server", @@ -44,6 +45,7 @@ ], "path": "packages/core/i18n/core-i18n-server/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -61,6 +63,7 @@ ], "path": "packages/core/i18n/core-i18n-server/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } diff --git a/api_docs/kbn_core_i18n_server.mdx b/api_docs/kbn_core_i18n_server.mdx index 077b7ab241202..50e3d68961707 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_i18n_server_internal.devdocs.json index ebfd4c8e7238f..6e782c213c8dd 100644 --- a/api_docs/kbn_core_i18n_server_internal.devdocs.json +++ b/api_docs/kbn_core_i18n_server_internal.devdocs.json @@ -19,6 +19,7 @@ "description": [], "path": "packages/core/i18n/core-i18n-server-internal/src/i18n_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-i18n-server-internal", @@ -32,6 +33,7 @@ ], "path": "packages/core/i18n/core-i18n-server-internal/src/i18n_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-i18n-server-internal", @@ -45,6 +47,7 @@ ], "path": "packages/core/i18n/core-i18n-server-internal/src/i18n_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -64,6 +67,7 @@ ], "path": "packages/core/i18n/core-i18n-server-internal/src/i18n_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-i18n-server-internal", @@ -77,6 +81,7 @@ ], "path": "packages/core/i18n/core-i18n-server-internal/src/i18n_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -98,6 +103,7 @@ ], "path": "packages/core/i18n/core-i18n-server-internal/src/i18n_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-i18n-server-internal", @@ -111,6 +117,7 @@ ], "path": "packages/core/i18n/core-i18n-server-internal/src/i18n_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -136,6 +143,7 @@ ], "path": "packages/core/i18n/core-i18n-server-internal/src/i18n_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_i18n_server_internal.mdx b/api_docs/kbn_core_i18n_server_internal.mdx index 3f01b8d4d79d6..5f59dd23c1b7e 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_i18n_server_mocks.devdocs.json index c095bf6858389..33f7ded52d484 100644 --- a/api_docs/kbn_core_i18n_server_mocks.devdocs.json +++ b/api_docs/kbn_core_i18n_server_mocks.devdocs.json @@ -32,6 +32,7 @@ "description": [], "path": "packages/core/i18n/core-i18n-server-mocks/src/i18n_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-i18n-server-mocks", @@ -45,6 +46,7 @@ ], "path": "packages/core/i18n/core-i18n-server-mocks/src/i18n_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -62,6 +64,7 @@ ], "path": "packages/core/i18n/core-i18n-server-mocks/src/i18n_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_i18n_server_mocks.mdx b/api_docs/kbn_core_i18n_server_mocks.mdx index 909ba500c0ee3..d357516e5ab34 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_injected_metadata_browser.devdocs.json index 07a1a9cbfa900..03b1d0caa4b7f 100644 --- a/api_docs/kbn_core_injected_metadata_browser.devdocs.json +++ b/api_docs/kbn_core_injected_metadata_browser.devdocs.json @@ -34,6 +34,7 @@ "path": "packages/core/injected-metadata/core-injected-metadata-browser/src/contract.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [], "children": [ { @@ -48,6 +49,7 @@ ], "path": "packages/core/injected-metadata/core-injected-metadata-browser/src/contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-injected-metadata-browser", @@ -61,6 +63,7 @@ ], "path": "packages/core/injected-metadata/core-injected-metadata-browser/src/contract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -75,6 +78,7 @@ ], "path": "packages/core/injected-metadata/core-injected-metadata-browser/src/contract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -97,6 +101,7 @@ "path": "packages/core/injected-metadata/core-injected-metadata-browser/src/contract.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [], "children": [ { @@ -111,6 +116,7 @@ ], "path": "packages/core/injected-metadata/core-injected-metadata-browser/src/contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-injected-metadata-browser", @@ -124,6 +130,7 @@ ], "path": "packages/core/injected-metadata/core-injected-metadata-browser/src/contract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -138,6 +145,7 @@ ], "path": "packages/core/injected-metadata/core-injected-metadata-browser/src/contract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_core_injected_metadata_browser.mdx b/api_docs/kbn_core_injected_metadata_browser.mdx index 3d3d86d82551d..2749fcaffc1ea 100644 --- a/api_docs/kbn_core_injected_metadata_browser.mdx +++ b/api_docs/kbn_core_injected_metadata_browser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-injected-metadata-browser title: "@kbn/core-injected-metadata-browser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-injected-metadata-browser plugin -date: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-injected-metadata-browser'] --- import kbnCoreInjectedMetadataBrowserObj from './kbn_core_injected_metadata_browser.devdocs.json'; diff --git a/api_docs/kbn_core_injected_metadata_browser_mocks.devdocs.json b/api_docs/kbn_core_injected_metadata_browser_mocks.devdocs.json index 2cd742c417c2b..8a856b802b190 100644 --- a/api_docs/kbn_core_injected_metadata_browser_mocks.devdocs.json +++ b/api_docs/kbn_core_injected_metadata_browser_mocks.devdocs.json @@ -32,6 +32,7 @@ "description": [], "path": "packages/core/injected-metadata/core-injected-metadata-browser-mocks/src/injected_metadata_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-injected-metadata-browser-mocks", @@ -45,6 +46,7 @@ ], "path": "packages/core/injected-metadata/core-injected-metadata-browser-mocks/src/injected_metadata_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -62,6 +64,7 @@ ], "path": "packages/core/injected-metadata/core-injected-metadata-browser-mocks/src/injected_metadata_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -79,6 +82,7 @@ ], "path": "packages/core/injected-metadata/core-injected-metadata-browser-mocks/src/injected_metadata_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_injected_metadata_browser_mocks.mdx b/api_docs/kbn_core_injected_metadata_browser_mocks.mdx index 1d19c040a9b8e..adec64f1dfcbc 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_integrations_browser_internal.devdocs.json index c80088c04b03b..65b33e341b140 100644 --- a/api_docs/kbn_core_integrations_browser_internal.devdocs.json +++ b/api_docs/kbn_core_integrations_browser_internal.devdocs.json @@ -29,6 +29,7 @@ "description": [], "path": "packages/core/integrations/core-integrations-browser-internal/src/integrations_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-integrations-browser-internal", @@ -41,7 +42,8 @@ "IUiSettingsClient" ], "path": "packages/core/integrations/core-integrations-browser-internal/src/integrations_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_core_integrations_browser_internal.mdx b/api_docs/kbn_core_integrations_browser_internal.mdx index 8e1ab8dee3a9a..db081dbbe83b8 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_integrations_browser_mocks.devdocs.json index 98bd9b1a37568..b2fc0d81a14ec 100644 --- a/api_docs/kbn_core_integrations_browser_mocks.devdocs.json +++ b/api_docs/kbn_core_integrations_browser_mocks.devdocs.json @@ -36,6 +36,7 @@ ], "path": "packages/core/integrations/core-integrations-browser-mocks/src/integrations_service.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -59,6 +60,7 @@ ], "path": "packages/core/integrations/core-integrations-browser-mocks/src/integrations_service.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -72,6 +74,7 @@ "description": [], "path": "packages/core/integrations/core-integrations-browser-mocks/src/integrations_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-integrations-browser-mocks", @@ -92,6 +95,7 @@ ], "path": "packages/core/integrations/core-integrations-browser-mocks/src/integrations_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_integrations_browser_mocks.mdx b/api_docs/kbn_core_integrations_browser_mocks.mdx index adae045a69703..37bd05952de41 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: 2022-09-05 +date: 2022-09-08 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_logging_server.devdocs.json b/api_docs/kbn_core_logging_server.devdocs.json index 0e4ef7660c429..0ee04816b3df4 100644 --- a/api_docs/kbn_core_logging_server.devdocs.json +++ b/api_docs/kbn_core_logging_server.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/core/logging/core-logging-server/src/appenders/console.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-logging-server", @@ -35,7 +36,8 @@ "\"console\"" ], "path": "packages/core/logging/core-logging-server/src/appenders/console.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -62,7 +64,8 @@ } ], "path": "packages/core/logging/core-logging-server/src/appenders/console.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -78,6 +81,7 @@ ], "path": "packages/core/logging/core-logging-server/src/appenders/file.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-logging-server", @@ -90,7 +94,8 @@ "\"file\"" ], "path": "packages/core/logging/core-logging-server/src/appenders/file.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -117,7 +122,8 @@ } ], "path": "packages/core/logging/core-logging-server/src/appenders/file.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -127,7 +133,8 @@ "label": "fileName", "description": [], "path": "packages/core/logging/core-logging-server/src/appenders/file.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -143,6 +150,7 @@ ], "path": "packages/core/logging/core-logging-server/src/layout.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-logging-server", @@ -155,7 +163,8 @@ "\"json\"" ], "path": "packages/core/logging/core-logging-server/src/layout.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -171,6 +180,7 @@ ], "path": "packages/core/logging/core-logging-server/src/logger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-logging-server", @@ -183,7 +193,8 @@ "string[]" ], "path": "packages/core/logging/core-logging-server/src/logger.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -193,7 +204,8 @@ "label": "name", "description": [], "path": "packages/core/logging/core-logging-server/src/logger.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -206,7 +218,8 @@ "\"error\" | \"all\" | \"info\" | \"debug\" | \"off\" | \"trace\" | \"warn\" | \"fatal\"" ], "path": "packages/core/logging/core-logging-server/src/logger.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -222,6 +235,7 @@ ], "path": "packages/core/logging/core-logging-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-logging-server", @@ -250,7 +264,8 @@ "> | undefined" ], "path": "packages/core/logging/core-logging-server/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -270,7 +285,8 @@ "[] | undefined" ], "path": "packages/core/logging/core-logging-server/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -286,6 +302,7 @@ ], "path": "packages/core/logging/core-logging-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-logging-server", @@ -311,6 +328,7 @@ ], "path": "packages/core/logging/core-logging-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-logging-server", @@ -333,6 +351,7 @@ ], "path": "packages/core/logging/core-logging-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -350,6 +369,7 @@ "description": [], "path": "packages/core/logging/core-logging-server/src/appenders/rewrite.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-logging-server", @@ -362,7 +382,8 @@ "\"meta\"" ], "path": "packages/core/logging/core-logging-server/src/appenders/rewrite.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -377,7 +398,8 @@ "\"update\" | \"remove\"" ], "path": "packages/core/logging/core-logging-server/src/appenders/rewrite.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -399,7 +421,8 @@ "[]" ], "path": "packages/core/logging/core-logging-server/src/appenders/rewrite.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -413,6 +436,7 @@ "description": [], "path": "packages/core/logging/core-logging-server/src/appenders/rewrite.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-logging-server", @@ -422,7 +446,8 @@ "label": "path", "description": [], "path": "packages/core/logging/core-logging-server/src/appenders/rewrite.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -435,7 +460,8 @@ "string | number | boolean | null | undefined" ], "path": "packages/core/logging/core-logging-server/src/appenders/rewrite.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -449,6 +475,7 @@ "description": [], "path": "packages/core/logging/core-logging-server/src/appenders/rolling_file.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-logging-server", @@ -461,7 +488,8 @@ "\"numeric\"" ], "path": "packages/core/logging/core-logging-server/src/appenders/rolling_file.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -473,7 +501,8 @@ "\nThe suffix pattern to apply when renaming a file. The suffix will be applied\nafter the `appender.fileName` file name, but before the file extension.\n\nMust include `%i`, as it is the value that will be converted to the file index\n" ], "path": "packages/core/logging/core-logging-server/src/appenders/rolling_file.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -485,7 +514,8 @@ "\nThe maximum number of files to keep. Once this number is reached, oldest\nfiles will be deleted. Defaults to `7`" ], "path": "packages/core/logging/core-logging-server/src/appenders/rolling_file.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -501,6 +531,7 @@ ], "path": "packages/core/logging/core-logging-server/src/layout.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-logging-server", @@ -513,7 +544,8 @@ "\"pattern\"" ], "path": "packages/core/logging/core-logging-server/src/layout.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -526,7 +558,8 @@ "boolean | undefined" ], "path": "packages/core/logging/core-logging-server/src/layout.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -539,7 +572,8 @@ "string | undefined" ], "path": "packages/core/logging/core-logging-server/src/layout.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -555,6 +589,7 @@ ], "path": "packages/core/logging/core-logging-server/src/appenders/rewrite.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-logging-server", @@ -567,7 +602,8 @@ "\"rewrite\"" ], "path": "packages/core/logging/core-logging-server/src/appenders/rewrite.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -582,7 +618,8 @@ "string[]" ], "path": "packages/core/logging/core-logging-server/src/appenders/rewrite.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -603,7 +640,8 @@ } ], "path": "packages/core/logging/core-logging-server/src/appenders/rewrite.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -619,6 +657,7 @@ ], "path": "packages/core/logging/core-logging-server/src/appenders/rolling_file.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-logging-server", @@ -631,7 +670,8 @@ "\"rolling-file\"" ], "path": "packages/core/logging/core-logging-server/src/appenders/rolling_file.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -660,7 +700,8 @@ } ], "path": "packages/core/logging/core-logging-server/src/appenders/rolling_file.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -672,7 +713,8 @@ "\nThe absolute path of the file to write to." ], "path": "packages/core/logging/core-logging-server/src/appenders/rolling_file.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -701,7 +743,8 @@ } ], "path": "packages/core/logging/core-logging-server/src/appenders/rolling_file.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -722,7 +765,8 @@ } ], "path": "packages/core/logging/core-logging-server/src/appenders/rolling_file.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -736,6 +780,7 @@ "description": [], "path": "packages/core/logging/core-logging-server/src/appenders/rolling_file.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-logging-server", @@ -748,7 +793,8 @@ "\"size-limit\"" ], "path": "packages/core/logging/core-logging-server/src/appenders/rolling_file.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -763,7 +809,8 @@ "ByteSizeValue" ], "path": "packages/core/logging/core-logging-server/src/appenders/rolling_file.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -777,6 +824,7 @@ "description": [], "path": "packages/core/logging/core-logging-server/src/appenders/rolling_file.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-logging-server", @@ -789,7 +837,8 @@ "\"time-interval\"" ], "path": "packages/core/logging/core-logging-server/src/appenders/rolling_file.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -804,7 +853,8 @@ "moment.Duration" ], "path": "packages/core/logging/core-logging-server/src/appenders/rolling_file.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-logging-server", @@ -816,7 +866,8 @@ "\nIndicates whether the interval should be adjusted to cause the next rollover to occur on the interval boundary.\n\nFor example, if the interval is `4h` and the current hour is 3 am then\nthe first rollover will occur at 4 am and then next ones will occur at 8 am, noon, 4pm, etc.\nThe default value is true." ], "path": "packages/core/logging/core-logging-server/src/appenders/rolling_file.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -866,6 +917,7 @@ ], "path": "packages/core/logging/core-logging-server/src/appenders/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -896,6 +948,7 @@ ], "path": "packages/core/logging/core-logging-server/src/layout.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -918,6 +971,7 @@ ], "path": "packages/core/logging/core-logging-server/src/appenders/rewrite.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -938,6 +992,7 @@ ], "path": "packages/core/logging/core-logging-server/src/appenders/rolling_file.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -968,6 +1023,7 @@ ], "path": "packages/core/logging/core-logging-server/src/appenders/rolling_file.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_logging_server.mdx b/api_docs/kbn_core_logging_server.mdx index 998db5f733cf6..da345f5bb47c4 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_logging_server_internal.devdocs.json index dbef8abb628d9..d323e46daf7f2 100644 --- a/api_docs/kbn_core_logging_server_internal.devdocs.json +++ b/api_docs/kbn_core_logging_server_internal.devdocs.json @@ -25,6 +25,7 @@ ], "path": "packages/core/logging/core-logging-server-internal/src/appenders/rolling_file/policies/time_interval/get_next_rolling_time.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-logging-server-internal", @@ -38,6 +39,7 @@ ], "path": "packages/core/logging/core-logging-server-internal/src/appenders/rolling_file/policies/time_interval/get_next_rolling_time.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -52,6 +54,7 @@ ], "path": "packages/core/logging/core-logging-server-internal/src/appenders/rolling_file/policies/time_interval/get_next_rolling_time.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -66,6 +69,7 @@ ], "path": "packages/core/logging/core-logging-server-internal/src/appenders/rolling_file/policies/time_interval/get_next_rolling_time.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -83,6 +87,7 @@ "description": [], "path": "packages/core/logging/core-logging-server-internal/src/logging_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-logging-server-internal", @@ -95,7 +100,8 @@ "ILoggingSystem" ], "path": "packages/core/logging/core-logging-server-internal/src/logging_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -117,12 +123,13 @@ "Type", " | Readonly<{ highlight?: boolean | undefined; pattern?: string | undefined; } & { type: \"pattern\"; }>; }> | Readonly<{} & { type: \"file\"; layout: Readonly<{} & { type: \"json\"; }> | Readonly<{ highlight?: boolean | undefined; pattern?: string | undefined; } & { type: \"pattern\"; }>; fileName: string; }> | Readonly<{} & { type: \"rewrite\"; policy: Readonly<{} & { type: \"meta\"; mode: \"update\" | \"remove\"; properties: Readonly<{ value?: string | number | boolean | null | undefined; } & { path: string; }>[]; }>; appenders: string[]; }> | Readonly<{} & { type: \"rolling-file\"; strategy: ", "NumericRollingStrategyConfig", - "; layout: Readonly<{} & { type: \"json\"; }> | Readonly<{ highlight?: boolean | undefined; pattern?: string | undefined; } & { type: \"pattern\"; }>; policy: Readonly<{} & { type: \"size-limit\"; size: ", + "; layout: Readonly<{} & { type: \"json\"; }> | Readonly<{ highlight?: boolean | undefined; pattern?: string | undefined; } & { type: \"pattern\"; }>; fileName: string; policy: Readonly<{} & { type: \"size-limit\"; size: ", "ByteSizeValue", - "; }> | Readonly<{} & { type: \"time-interval\"; interval: moment.Duration; modulate: boolean; }>; fileName: string; }>>" + "; }> | Readonly<{} & { type: \"time-interval\"; interval: moment.Duration; modulate: boolean; }>; }>>" ], "path": "packages/core/logging/core-logging-server-internal/src/appenders/appenders.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -146,6 +153,7 @@ ], "path": "packages/core/logging/core-logging-server-internal/src/logging_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -169,6 +177,7 @@ ], "path": "packages/core/logging/core-logging-server-internal/src/logging_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/kbn_core_logging_server_internal.mdx b/api_docs/kbn_core_logging_server_internal.mdx index 1486b7ba0e762..6cef90a03ccc2 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_logging_server_mocks.devdocs.json index d3ff7df8aee46..389ee2b4f09ba 100644 --- a/api_docs/kbn_core_logging_server_mocks.devdocs.json +++ b/api_docs/kbn_core_logging_server_mocks.devdocs.json @@ -24,6 +24,7 @@ "description": [], "path": "packages/core/logging/core-logging-server-mocks/src/logging_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-logging-server-mocks", @@ -37,6 +38,7 @@ ], "path": "packages/core/logging/core-logging-server-mocks/src/logging_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -54,6 +56,7 @@ ], "path": "packages/core/logging/core-logging-server-mocks/src/logging_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -71,6 +74,7 @@ ], "path": "packages/core/logging/core-logging-server-mocks/src/logging_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -88,6 +92,7 @@ ], "path": "packages/core/logging/core-logging-server-mocks/src/logging_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -103,6 +108,7 @@ "description": [], "path": "packages/core/logging/core-logging-server-mocks/src/logging_system.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-logging-server-mocks", @@ -118,6 +124,7 @@ ], "path": "packages/core/logging/core-logging-server-mocks/src/logging_system.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -149,6 +156,7 @@ ], "path": "packages/core/logging/core-logging-server-mocks/src/logging_system.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -162,7 +170,8 @@ "LoggerFactory" ], "path": "packages/core/logging/core-logging-server-mocks/src/logging_system.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -180,6 +189,7 @@ ], "path": "packages/core/logging/core-logging-server-mocks/src/logging_system.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -193,7 +203,8 @@ "LoggerFactory" ], "path": "packages/core/logging/core-logging-server-mocks/src/logging_system.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -210,6 +221,7 @@ ], "path": "packages/core/logging/core-logging-server-mocks/src/logging_system.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -223,7 +235,8 @@ "string[] | undefined" ], "path": "node_modules/@types/kbn__logging-mocks/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kbn_core_logging_server_mocks.mdx b/api_docs/kbn_core_logging_server_mocks.mdx index 71354e2870770..82846fbbdc165 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_metrics_collectors_server_internal.devdocs.json index e22f71676bf31..0de9634445ccd 100644 --- a/api_docs/kbn_core_metrics_collectors_server_internal.devdocs.json +++ b/api_docs/kbn_core_metrics_collectors_server_internal.devdocs.json @@ -33,6 +33,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/event_loop_delays_monitor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-collectors-server-internal", @@ -48,6 +49,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/event_loop_delays_monitor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -66,6 +68,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/event_loop_delays_monitor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -83,6 +86,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/event_loop_delays_monitor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -100,6 +104,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/event_loop_delays_monitor.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -129,6 +134,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/os.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-collectors-server-internal", @@ -142,6 +148,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/os.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-collectors-server-internal", @@ -161,6 +168,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/os.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -180,6 +188,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/os.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -195,6 +204,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/os.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -224,6 +234,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/process.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-collectors-server-internal", @@ -241,6 +252,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/process.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-collectors-server-internal", @@ -255,6 +267,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/process.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -274,6 +287,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/process.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -289,6 +303,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/process.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -318,6 +333,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/server.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-collectors-server-internal", @@ -331,6 +347,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/server.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-collectors-server-internal", @@ -344,6 +361,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/server.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -363,6 +381,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/server.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -378,6 +397,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/server.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -396,6 +416,7 @@ "description": [], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/os.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-collectors-server-internal", @@ -408,7 +429,8 @@ "Logger" ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/os.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-collectors-server-internal", @@ -421,7 +443,8 @@ "string | undefined" ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/os.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-collectors-server-internal", @@ -434,7 +457,8 @@ "string | undefined" ], "path": "packages/core/metrics/core-metrics-collectors-server-internal/src/os.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_core_metrics_collectors_server_internal.mdx b/api_docs/kbn_core_metrics_collectors_server_internal.mdx index e808057ca7eb7..3eb7c726c850c 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_metrics_collectors_server_mocks.devdocs.json index e38bef1494054..500a21e68dfe3 100644 --- a/api_docs/kbn_core_metrics_collectors_server_mocks.devdocs.json +++ b/api_docs/kbn_core_metrics_collectors_server_mocks.devdocs.json @@ -24,6 +24,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-mocks/src/process.mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -42,6 +43,7 @@ "description": [], "path": "packages/core/metrics/core-metrics-collectors-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-collectors-server-mocks", @@ -57,6 +59,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -73,6 +76,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-mocks/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -88,6 +92,7 @@ "description": [], "path": "packages/core/metrics/core-metrics-collectors-server-mocks/src/collector.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-collectors-server-mocks", @@ -103,6 +108,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-mocks/src/collector.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -116,7 +122,8 @@ "any" ], "path": "packages/core/metrics/core-metrics-collectors-server-mocks/src/collector.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -132,6 +139,7 @@ "description": [], "path": "packages/core/metrics/core-metrics-collectors-server-mocks/src/event_loop_delays_monitor.mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-collectors-server-mocks", @@ -148,6 +156,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-mocks/src/event_loop_delays_monitor.mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -161,7 +170,8 @@ "{ fromTimestamp?: string | undefined; lastUpdatedAt?: string | undefined; min?: number | undefined; max?: number | undefined; mean?: number | undefined; exceeds?: number | undefined; stddev?: number | undefined; percentiles?: { 50: number; 75: number; 95: number; 99: number; } | undefined; }" ], "path": "packages/core/metrics/core-metrics-collectors-server-mocks/src/event_loop_delays_monitor.mocks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -178,6 +188,7 @@ ], "path": "packages/core/metrics/core-metrics-collectors-server-mocks/src/event_loop_delays_monitor.mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_metrics_collectors_server_mocks.mdx b/api_docs/kbn_core_metrics_collectors_server_mocks.mdx index 0b16b6b14d30b..bd93c7b2140cd 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: 2022-09-05 +date: 2022-09-08 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 2f49db00dc608..77ae844e93992 100644 --- a/api_docs/kbn_core_metrics_server.devdocs.json +++ b/api_docs/kbn_core_metrics_server.devdocs.json @@ -33,6 +33,7 @@ ], "path": "packages/core/metrics/core-metrics-server/src/collectors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-server", @@ -48,6 +49,7 @@ ], "path": "packages/core/metrics/core-metrics-server/src/collectors.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -65,6 +67,7 @@ ], "path": "packages/core/metrics/core-metrics-server/src/collectors.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -82,6 +85,7 @@ ], "path": "packages/core/metrics/core-metrics-server/src/collectors.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -99,6 +103,7 @@ ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-server", @@ -108,7 +113,8 @@ "label": "fromTimestamp", "description": [], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -118,7 +124,8 @@ "label": "lastUpdatedAt", "description": [], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -128,7 +135,8 @@ "label": "min", "description": [], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -138,7 +146,8 @@ "label": "max", "description": [], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -148,7 +157,8 @@ "label": "mean", "description": [], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -158,7 +168,8 @@ "label": "exceeds", "description": [], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -168,7 +179,8 @@ "label": "stddev", "description": [], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -181,7 +193,8 @@ "{ 50: number; 75: number; 95: number; 99: number; }" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -207,6 +220,7 @@ ], "path": "packages/core/metrics/core-metrics-server/src/collectors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-server", @@ -224,6 +238,7 @@ ], "path": "packages/core/metrics/core-metrics-server/src/collectors.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -241,6 +256,7 @@ ], "path": "packages/core/metrics/core-metrics-server/src/collectors.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -258,6 +274,7 @@ ], "path": "packages/core/metrics/core-metrics-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-server", @@ -269,7 +286,8 @@ "Interval metrics are collected in milliseconds" ], "path": "packages/core/metrics/core-metrics-server/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -295,6 +313,7 @@ ], "path": "packages/core/metrics/core-metrics-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -312,6 +331,7 @@ ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-server", @@ -326,7 +346,8 @@ "Date" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -351,6 +372,7 @@ "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [] }, { @@ -373,7 +395,8 @@ "[]" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -394,7 +417,8 @@ } ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -409,7 +433,8 @@ "{ avg_in_millis: number; max_in_millis: number; }" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -424,7 +449,8 @@ "{ disconnects: number; total: number; statusCodes: Record; }" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -436,7 +462,8 @@ "number of current concurrent connections to the server" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -452,6 +479,7 @@ ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-server", @@ -466,7 +494,8 @@ "\"linux\" | \"aix\" | \"android\" | \"darwin\" | \"freebsd\" | \"haiku\" | \"openbsd\" | \"sunos\" | \"win32\" | \"cygwin\" | \"netbsd\"" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -478,7 +507,8 @@ "The os platform release, prefixed by the platform name" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -493,7 +523,8 @@ "string | undefined" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -508,7 +539,8 @@ "string | undefined" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -523,7 +555,8 @@ "{ '1m': number; '5m': number; '15m': number; }" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -538,7 +571,8 @@ "{ total_in_bytes: number; free_in_bytes: number; used_in_bytes: number; }" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -550,7 +584,8 @@ "the OS uptime" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -565,7 +600,8 @@ "{ control_group: string; usage_nanos: number; } | undefined" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -580,7 +616,8 @@ "{ control_group: string; cfs_period_micros: number; cfs_quota_micros: number; stat: { number_of_elapsed_periods: number; number_of_times_throttled: number; time_throttled_nanos: number; }; } | undefined" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -596,6 +633,7 @@ ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-server", @@ -607,7 +645,8 @@ "pid of the kibana process" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -622,7 +661,8 @@ "{ heap: { total_in_bytes: number; used_in_bytes: number; size_limit: number; }; resident_set_size_in_bytes: number; }" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -634,7 +674,8 @@ "mean event loop delay since last collection" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -655,7 +696,8 @@ } ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -667,7 +709,8 @@ "uptime of the kibana process" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -683,6 +726,7 @@ ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-server", @@ -697,7 +741,8 @@ "{ avg_in_millis: number; max_in_millis: number; }" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -712,7 +757,8 @@ "{ disconnects: number; total: number; statusCodes: Record; }" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server", @@ -724,7 +770,8 @@ "number of current concurrent connections to the server" ], "path": "packages/core/metrics/core-metrics-server/src/metrics.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -752,6 +799,7 @@ ], "path": "packages/core/metrics/core-metrics-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_metrics_server.mdx b/api_docs/kbn_core_metrics_server.mdx index 383d5e8ffc5f2..670ecb0047f88 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_metrics_server_internal.devdocs.json index 5f8ca28a506ae..dfdb1f7c95ef5 100644 --- a/api_docs/kbn_core_metrics_server_internal.devdocs.json +++ b/api_docs/kbn_core_metrics_server_internal.devdocs.json @@ -21,6 +21,7 @@ "description": [], "path": "packages/core/metrics/core-metrics-server-internal/src/metrics_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-server-internal", @@ -33,7 +34,8 @@ "InternalHttpServiceSetup" ], "path": "packages/core/metrics/core-metrics-server-internal/src/metrics_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -51,6 +53,7 @@ "description": [], "path": "packages/core/metrics/core-metrics-server-internal/src/ops_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-server-internal", @@ -63,7 +66,8 @@ "\"ops\"" ], "path": "packages/core/metrics/core-metrics-server-internal/src/ops_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-metrics-server-internal", @@ -85,7 +89,8 @@ "; }>; }>" ], "path": "packages/core/metrics/core-metrics-server-internal/src/ops_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_core_metrics_server_internal.mdx b/api_docs/kbn_core_metrics_server_internal.mdx index 5589ee1a634aa..6599bf7ea1ddc 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_metrics_server_mocks.devdocs.json index 19d5b213c2042..1ca231c151d2f 100644 --- a/api_docs/kbn_core_metrics_server_mocks.devdocs.json +++ b/api_docs/kbn_core_metrics_server_mocks.devdocs.json @@ -24,6 +24,7 @@ "description": [], "path": "packages/core/metrics/core-metrics-server-mocks/src/metrics_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-metrics-server-mocks", @@ -37,6 +38,7 @@ ], "path": "packages/core/metrics/core-metrics-server-mocks/src/metrics_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -54,6 +56,7 @@ ], "path": "packages/core/metrics/core-metrics-server-mocks/src/metrics_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -71,6 +74,7 @@ ], "path": "packages/core/metrics/core-metrics-server-mocks/src/metrics_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -88,6 +92,7 @@ ], "path": "packages/core/metrics/core-metrics-server-mocks/src/metrics_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -105,6 +110,7 @@ ], "path": "packages/core/metrics/core-metrics-server-mocks/src/metrics_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -121,6 +127,7 @@ ], "path": "packages/core/metrics/core-metrics-server-mocks/src/metrics_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_metrics_server_mocks.mdx b/api_docs/kbn_core_metrics_server_mocks.mdx index aa57cb12b437b..93282d37b7425 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_mount_utils_browser.devdocs.json index 7b906b9729ea2..aeea4fef12ae9 100644 --- a/api_docs/kbn_core_mount_utils_browser.devdocs.json +++ b/api_docs/kbn_core_mount_utils_browser.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/core/mount-utils/core-mount-utils-browser/src/overlay_ref.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-mount-utils-browser", @@ -45,7 +46,8 @@ "Promise" ], "path": "packages/core/mount-utils/core-mount-utils-browser/src/overlay_ref.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-mount-utils-browser", @@ -61,6 +63,7 @@ ], "path": "packages/core/mount-utils/core-mount-utils-browser/src/overlay_ref.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -91,6 +94,7 @@ ], "path": "packages/core/mount-utils/core-mount-utils-browser/src/mount_point.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [ "a {@link UnmountCallback } that unmount the element on call." ], @@ -108,7 +112,8 @@ "T" ], "path": "packages/core/mount-utils/core-mount-utils-browser/src/mount_point.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -127,6 +132,7 @@ ], "path": "packages/core/mount-utils/core-mount-utils-browser/src/mount_point.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false diff --git a/api_docs/kbn_core_mount_utils_browser.mdx b/api_docs/kbn_core_mount_utils_browser.mdx index 8e4f49c436798..d2c851b81781a 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_node_server.devdocs.json index 01b2eb5bd8516..90217e8167760 100644 --- a/api_docs/kbn_core_node_server.devdocs.json +++ b/api_docs/kbn_core_node_server.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/core/node/core-node-server/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-node-server", @@ -43,7 +44,8 @@ } ], "path": "packages/core/node/core-node-server/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -59,6 +61,7 @@ ], "path": "packages/core/node/core-node-server/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-node-server", @@ -70,7 +73,8 @@ "\nThe backgroundTasks role includes operations which don't involve\nresponding to incoming http traffic from the UI." ], "path": "packages/core/node/core-node-server/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-node-server", @@ -82,7 +86,8 @@ "\nThe ui role covers any operations that need to occur in order\nto handle http traffic from the browser." ], "path": "packages/core/node/core-node-server/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_core_node_server.mdx b/api_docs/kbn_core_node_server.mdx index 39ac1b3728ce0..77d6ff98aa62d 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_node_server_internal.devdocs.json index 0e598b07cd930..813dd30908201 100644 --- a/api_docs/kbn_core_node_server_internal.devdocs.json +++ b/api_docs/kbn_core_node_server_internal.devdocs.json @@ -24,6 +24,7 @@ "description": [], "path": "packages/core/node/core-node-server-internal/src/node_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-node-server-internal", @@ -36,7 +37,8 @@ "\"node\"" ], "path": "packages/core/node/core-node-server-internal/src/node_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-node-server-internal", @@ -52,7 +54,8 @@ "<\"*\"[] | (\"ui\" | \"background_tasks\")[]>; }>" ], "path": "packages/core/node/core-node-server-internal/src/node_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_core_node_server_internal.mdx b/api_docs/kbn_core_node_server_internal.mdx index 0aebc7859ae25..66355017e7862 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_node_server_mocks.devdocs.json index 5e7c965c0ceb9..1a763a4509417 100644 --- a/api_docs/kbn_core_node_server_mocks.devdocs.json +++ b/api_docs/kbn_core_node_server_mocks.devdocs.json @@ -24,6 +24,7 @@ "description": [], "path": "packages/core/node/core-node-server-mocks/src/node_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-node-server-mocks", @@ -37,6 +38,7 @@ ], "path": "packages/core/node/core-node-server-mocks/src/node_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -54,6 +56,7 @@ ], "path": "packages/core/node/core-node-server-mocks/src/node_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_node_server_mocks.mdx b/api_docs/kbn_core_node_server_mocks.mdx index 97956606e45b9..a9b52f33294cc 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_notifications_browser.devdocs.json index bab2a6417b824..b69e0619012a3 100644 --- a/api_docs/kbn_core_notifications_browser.devdocs.json +++ b/api_docs/kbn_core_notifications_browser.devdocs.json @@ -48,6 +48,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser", @@ -59,7 +60,8 @@ "\nThe title of the toast and the dialog when expanding the message." ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-notifications-browser", @@ -74,7 +76,8 @@ "string | undefined" ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -90,6 +93,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser", @@ -113,6 +117,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -143,6 +148,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser", @@ -162,6 +168,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -187,6 +194,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser", @@ -207,6 +215,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -239,6 +248,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser", @@ -258,6 +268,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -272,6 +283,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -304,6 +316,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser", @@ -323,6 +336,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -337,6 +351,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -369,6 +384,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser", @@ -388,6 +404,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -402,6 +419,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -434,6 +452,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser", @@ -453,6 +472,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -467,6 +487,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -499,6 +520,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser", @@ -512,6 +534,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -532,6 +555,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -549,6 +573,7 @@ "description": [], "path": "packages/core/notifications/core-notifications-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser", @@ -569,7 +594,8 @@ } ], "path": "packages/core/notifications/core-notifications-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -583,6 +609,7 @@ "description": [], "path": "packages/core/notifications/core-notifications-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser", @@ -603,7 +630,8 @@ } ], "path": "packages/core/notifications/core-notifications-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -619,6 +647,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser", @@ -633,7 +662,8 @@ "number | undefined" ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -659,6 +689,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -682,6 +713,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -704,6 +736,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -726,6 +759,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -748,6 +782,7 @@ ], "path": "packages/core/notifications/core-notifications-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_notifications_browser.mdx b/api_docs/kbn_core_notifications_browser.mdx index 1f7b599459778..19f30064d6411 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_notifications_browser_internal.devdocs.json index 55ef2da0b44e6..0a1c85f066b80 100644 --- a/api_docs/kbn_core_notifications_browser_internal.devdocs.json +++ b/api_docs/kbn_core_notifications_browser_internal.devdocs.json @@ -27,6 +27,7 @@ "description": [], "path": "packages/core/notifications/core-notifications-browser-internal/src/notifications_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser-internal", @@ -40,6 +41,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/notifications_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -58,6 +60,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/notifications_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser-internal", @@ -71,6 +74,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/notifications_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -91,6 +95,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/notifications_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser-internal", @@ -104,6 +109,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/notifications_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -121,6 +127,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/notifications_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -149,6 +156,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser-internal", @@ -162,6 +170,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser-internal", @@ -172,6 +181,7 @@ "description": [], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser-internal", @@ -184,7 +194,8 @@ "IUiSettingsClient" ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -209,6 +220,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -229,6 +241,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser-internal", @@ -244,6 +257,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -267,6 +281,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser-internal", @@ -283,6 +298,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -307,6 +323,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser-internal", @@ -322,6 +339,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -339,6 +357,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -365,6 +384,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser-internal", @@ -380,6 +400,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -397,6 +418,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -423,6 +445,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser-internal", @@ -438,6 +461,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -455,6 +479,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -481,6 +506,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser-internal", @@ -496,6 +522,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -513,6 +540,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -537,6 +565,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser-internal", @@ -552,6 +581,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -568,6 +598,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/toasts/toasts_api.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -603,6 +634,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-internal/src/notifications_service.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_notifications_browser_internal.mdx b/api_docs/kbn_core_notifications_browser_internal.mdx index 6bf04c4318e32..352ec11d502c9 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_notifications_browser_mocks.devdocs.json index 80fc3b1e2eb1a..fcf364d484832 100644 --- a/api_docs/kbn_core_notifications_browser_mocks.devdocs.json +++ b/api_docs/kbn_core_notifications_browser_mocks.devdocs.json @@ -24,6 +24,7 @@ "description": [], "path": "packages/core/notifications/core-notifications-browser-mocks/src/notifications_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-notifications-browser-mocks", @@ -39,6 +40,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-mocks/src/notifications_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -58,6 +60,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-mocks/src/notifications_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -77,6 +80,7 @@ ], "path": "packages/core/notifications/core-notifications-browser-mocks/src/notifications_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_notifications_browser_mocks.mdx b/api_docs/kbn_core_notifications_browser_mocks.mdx index dfa26291ec9d6..1c62b624f27e2 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_overlays_browser.devdocs.json index dc76f84740ba1..96e3daf337c5a 100644 --- a/api_docs/kbn_core_overlays_browser.devdocs.json +++ b/api_docs/kbn_core_overlays_browser.devdocs.json @@ -29,6 +29,7 @@ "description": [], "path": "packages/core/overlays/core-overlays-browser/src/banners.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-overlays-browser", @@ -46,6 +47,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/banners.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-overlays-browser", @@ -62,6 +64,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/banners.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -78,6 +81,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/banners.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -99,6 +103,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/banners.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-overlays-browser", @@ -114,6 +119,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/banners.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -137,6 +143,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/banners.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-overlays-browser", @@ -152,6 +159,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/banners.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -169,6 +177,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/banners.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -185,6 +194,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/banners.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -204,6 +214,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/banners.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -219,6 +230,7 @@ "description": [], "path": "packages/core/overlays/core-overlays-browser/src/flyout.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-overlays-browser", @@ -231,7 +243,8 @@ "string | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/flyout.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -244,7 +257,8 @@ "string | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/flyout.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -257,7 +271,8 @@ "boolean | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/flyout.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -270,7 +285,8 @@ "string | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/flyout.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -283,7 +299,8 @@ "string | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/flyout.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -296,7 +313,8 @@ "\"m\" | \"s\" | \"l\" | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/flyout.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -309,7 +327,8 @@ "string | number | boolean | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/flyout.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -322,7 +341,8 @@ "boolean | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/flyout.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -335,7 +355,8 @@ "boolean | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/flyout.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -349,7 +370,8 @@ " | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/flyout.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -367,6 +389,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/flyout.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-overlays-browser", @@ -380,6 +403,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/flyout.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -399,6 +423,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/flyout.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-overlays-browser", @@ -427,6 +452,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/flyout.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-overlays-browser", @@ -443,6 +469,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/flyout.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -466,6 +493,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/flyout.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -483,6 +511,7 @@ "description": [], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-overlays-browser", @@ -495,7 +524,8 @@ "string | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -508,7 +538,8 @@ "string | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -521,7 +552,8 @@ "string | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -534,7 +566,8 @@ "string | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -547,7 +580,8 @@ "string | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -560,7 +594,8 @@ "string | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -573,7 +608,8 @@ "\"cancel\" | \"confirm\" | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -587,7 +623,8 @@ " | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -602,7 +639,8 @@ "string | number | boolean | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -616,6 +654,7 @@ "description": [], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-overlays-browser", @@ -628,7 +667,8 @@ "string | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -641,7 +681,8 @@ "string | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -654,7 +695,8 @@ "string | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -667,7 +709,8 @@ "string | number | boolean | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -683,6 +726,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-overlays-browser", @@ -711,6 +755,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-overlays-browser", @@ -727,6 +772,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -750,6 +796,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -779,6 +826,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-overlays-browser", @@ -796,6 +844,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -819,6 +868,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -836,6 +886,7 @@ "description": [], "path": "packages/core/overlays/core-overlays-browser/src/overlays.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-overlays-browser", @@ -856,7 +907,8 @@ } ], "path": "packages/core/overlays/core-overlays-browser/src/overlays.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -883,6 +935,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/overlays.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -898,6 +951,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/flyout.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -911,7 +965,8 @@ "T" ], "path": "node_modules/@types/kbn__core-mount-utils-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -933,7 +988,8 @@ " | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/flyout.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -962,6 +1018,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/overlays.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -977,6 +1034,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -990,7 +1048,8 @@ "T" ], "path": "node_modules/@types/kbn__core-mount-utils-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1012,7 +1071,8 @@ " | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1040,6 +1100,7 @@ ], "path": "packages/core/overlays/core-overlays-browser/src/overlays.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1055,7 +1116,8 @@ "" ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-overlays-browser", @@ -1075,7 +1137,8 @@ " | undefined" ], "path": "packages/core/overlays/core-overlays-browser/src/modal.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kbn_core_overlays_browser.mdx b/api_docs/kbn_core_overlays_browser.mdx index 26ba6e163fab2..9733b1627a6f7 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_overlays_browser_internal.devdocs.json index 5884e5ae20660..dc445a5b23b20 100644 --- a/api_docs/kbn_core_overlays_browser_internal.devdocs.json +++ b/api_docs/kbn_core_overlays_browser_internal.devdocs.json @@ -40,6 +40,7 @@ ], "path": "packages/core/overlays/core-overlays-browser-internal/src/banners/banners_service.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false } diff --git a/api_docs/kbn_core_overlays_browser_internal.mdx b/api_docs/kbn_core_overlays_browser_internal.mdx index aff79e25f8c29..7119b50426bcf 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_overlays_browser_mocks.devdocs.json index 5df38d8af9cb9..f85faeed0734c 100644 --- a/api_docs/kbn_core_overlays_browser_mocks.devdocs.json +++ b/api_docs/kbn_core_overlays_browser_mocks.devdocs.json @@ -24,6 +24,7 @@ "description": [], "path": "packages/core/overlays/core-overlays-browser-mocks/src/overlay_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-overlays-browser-mocks", @@ -41,6 +42,7 @@ ], "path": "packages/core/overlays/core-overlays-browser-mocks/src/overlay_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -60,6 +62,7 @@ ], "path": "packages/core/overlays/core-overlays-browser-mocks/src/overlay_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_overlays_browser_mocks.mdx b/api_docs/kbn_core_overlays_browser_mocks.mdx index ae78e9ae201f7..96f8c80736c1e 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: 2022-09-05 +date: 2022-09-08 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_preboot_server.devdocs.json b/api_docs/kbn_core_preboot_server.devdocs.json index 554377c1e0c71..925e2b61e1ed7 100644 --- a/api_docs/kbn_core_preboot_server.devdocs.json +++ b/api_docs/kbn_core_preboot_server.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/core/preboot/core-preboot-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-preboot-server", @@ -38,6 +39,7 @@ ], "path": "packages/core/preboot/core-preboot-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -55,6 +57,7 @@ ], "path": "packages/core/preboot/core-preboot-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-preboot-server", @@ -70,6 +73,7 @@ ], "path": "packages/core/preboot/core-preboot-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -86,6 +90,7 @@ ], "path": "packages/core/preboot/core-preboot-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_core_preboot_server.mdx b/api_docs/kbn_core_preboot_server.mdx index ad7ca8d6baf2c..c89e256f923c2 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_preboot_server_mocks.devdocs.json index 12dd285db88e9..dc65fa2926d2f 100644 --- a/api_docs/kbn_core_preboot_server_mocks.devdocs.json +++ b/api_docs/kbn_core_preboot_server_mocks.devdocs.json @@ -27,6 +27,7 @@ ], "path": "packages/core/preboot/core-preboot-server-mocks/src/preboot_service.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -42,6 +43,7 @@ ], "path": "packages/core/preboot/core-preboot-server-mocks/src/preboot_service.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -55,6 +57,7 @@ "description": [], "path": "packages/core/preboot/core-preboot-server-mocks/src/preboot_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-preboot-server-mocks", @@ -68,6 +71,7 @@ ], "path": "packages/core/preboot/core-preboot-server-mocks/src/preboot_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -90,6 +94,7 @@ ], "path": "packages/core/preboot/core-preboot-server-mocks/src/preboot_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -112,6 +117,7 @@ ], "path": "packages/core/preboot/core-preboot-server-mocks/src/preboot_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_preboot_server_mocks.mdx b/api_docs/kbn_core_preboot_server_mocks.mdx index 03b1aeef59ed9..0d82287ffaa81 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_rendering_browser_mocks.devdocs.json new file mode 100644 index 0000000000000..99cc657a7a842 --- /dev/null +++ b/api_docs/kbn_core_rendering_browser_mocks.devdocs.json @@ -0,0 +1,58 @@ +{ + "id": "@kbn/core-rendering-browser-mocks", + "client": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [], + "objects": [] + }, + "server": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [], + "objects": [] + }, + "common": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [], + "objects": [ + { + "parentPluginId": "@kbn/core-rendering-browser-mocks", + "id": "def-common.renderingServiceMock", + "type": "Object", + "tags": [], + "label": "renderingServiceMock", + "description": [], + "path": "packages/core/rendering/core-rendering-browser-mocks/src/rendering_service.mock.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/core-rendering-browser-mocks", + "id": "def-common.renderingServiceMock.create", + "type": "Function", + "tags": [], + "label": "create", + "description": [], + "signature": [ + "() => jest.Mocked" + ], + "path": "packages/core/rendering/core-rendering-browser-mocks/src/rendering_service.mock.ts", + "deprecated": false, + "trackAdoption": false, + "returnComment": [], + "children": [] + } + ], + "initialIsOpen": false + } + ] + } +} \ No newline at end of file diff --git a/api_docs/kbn_core_rendering_browser_mocks.mdx b/api_docs/kbn_core_rendering_browser_mocks.mdx new file mode 100644 index 0000000000000..4905bd829e23a --- /dev/null +++ b/api_docs/kbn_core_rendering_browser_mocks.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: kibKbnCoreRenderingBrowserMocksPluginApi +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: 2022-09-08 +tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-rendering-browser-mocks'] +--- +import kbnCoreRenderingBrowserMocksObj from './kbn_core_rendering_browser_mocks.devdocs.json'; + + + +Contact Kibana Core for questions regarding this plugin. + +**Code health stats** + +| Public API count | Any count | Items lacking comments | Missing exports | +|-------------------|-----------|------------------------|-----------------| +| 2 | 0 | 2 | 0 | + +## Common + +### Objects + + diff --git a/api_docs/kbn_core_saved_objects_api_browser.devdocs.json b/api_docs/kbn_core_saved_objects_api_browser.devdocs.json index 82b771de6f513..2e6c45ada0542 100644 --- a/api_docs/kbn_core_saved_objects_api_browser.devdocs.json +++ b/api_docs/kbn_core_saved_objects_api_browser.devdocs.json @@ -41,6 +41,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/resolve.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -62,7 +63,8 @@ "" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/resolve.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -77,7 +79,8 @@ "\"exactMatch\" | \"aliasMatch\" | \"conflict\"" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/resolve.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -92,7 +95,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/resolve.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -107,7 +111,8 @@ "\"savedObjectConversion\" | \"savedObjectImport\" | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/resolve.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -131,6 +136,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/base.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -150,7 +156,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -181,6 +188,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_create.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -190,7 +198,8 @@ "label": "type", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -203,7 +212,8 @@ "T" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -217,6 +227,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_create.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -231,7 +242,8 @@ "boolean | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -255,6 +267,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_resolve.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -274,7 +287,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_resolve.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -298,6 +312,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_update.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -307,7 +322,8 @@ "label": "type", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -317,7 +333,8 @@ "label": "id", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -330,7 +347,8 @@ "T" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -343,7 +361,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -357,7 +376,8 @@ "[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -371,6 +391,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_update.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -383,7 +404,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/bulk_update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -399,6 +421,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -430,6 +453,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -443,6 +467,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -457,6 +482,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -478,6 +504,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -521,6 +548,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -541,6 +569,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -562,6 +591,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -591,6 +621,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -604,6 +635,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -618,6 +650,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -639,6 +672,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -682,6 +716,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -701,6 +736,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -730,6 +766,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -743,6 +780,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -757,6 +795,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -788,6 +827,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -804,6 +844,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -835,6 +876,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -848,6 +890,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -862,6 +905,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -895,6 +939,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -911,6 +956,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -951,6 +997,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -964,6 +1011,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -978,6 +1026,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -992,6 +1041,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1013,6 +1063,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1048,6 +1099,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1070,6 +1122,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1089,6 +1142,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1103,7 +1157,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1118,7 +1173,8 @@ "boolean | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1134,7 +1190,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1149,7 +1206,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1163,7 +1221,8 @@ "[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1177,6 +1236,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/delete.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1191,7 +1251,8 @@ "boolean | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/delete.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1205,6 +1266,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/find.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1214,7 +1276,8 @@ "label": "type", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1224,7 +1287,8 @@ "label": "id", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1258,6 +1322,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/find.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1270,7 +1335,8 @@ "A | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1280,7 +1346,8 @@ "label": "total", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1290,7 +1357,8 @@ "label": "perPage", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1300,7 +1368,8 @@ "label": "page", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1324,6 +1393,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/update.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1336,7 +1406,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1349,7 +1420,8 @@ "Attributes | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1363,7 +1435,8 @@ "[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1389,6 +1462,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1401,7 +1475,8 @@ "T" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1414,7 +1489,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1424,7 +1500,8 @@ "label": "id", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1434,7 +1511,8 @@ "label": "type", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1448,7 +1526,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1461,7 +1540,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1475,7 +1555,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1489,7 +1570,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1502,7 +1584,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1517,7 +1600,8 @@ "string[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1531,6 +1615,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1544,6 +1629,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1561,6 +1647,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1574,6 +1661,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1588,6 +1676,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1605,6 +1694,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-browser", @@ -1618,6 +1708,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1643,6 +1734,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1658,6 +1750,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/simple_saved_object.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1685,6 +1778,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-browser/src/apis/find.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_saved_objects_api_browser.mdx b/api_docs/kbn_core_saved_objects_api_browser.mdx index 55d556d5ec2db..105532e5fb3b5 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-api-browser'] --- import kbnCoreSavedObjectsApiBrowserObj from './kbn_core_saved_objects_api_browser.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_api_server.devdocs.json b/api_docs/kbn_core_saved_objects_api_server.devdocs.json index 762765870418e..0ff68d0fc7bda 100644 --- a/api_docs/kbn_core_saved_objects_api_server.devdocs.json +++ b/api_docs/kbn_core_saved_objects_api_server.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/create_point_in_time_finder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -54,6 +55,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/create_point_in_time_finder.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -71,6 +73,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/create_point_in_time_finder.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -88,6 +91,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -119,6 +123,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -132,6 +137,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -146,6 +152,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -167,6 +174,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -215,6 +223,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -237,6 +246,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -258,6 +268,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -303,6 +314,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -323,6 +335,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -344,6 +357,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -373,6 +387,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -386,6 +401,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -400,6 +416,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -421,6 +438,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -448,6 +466,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -461,6 +480,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -482,6 +502,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -532,6 +553,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -551,6 +573,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -598,6 +621,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -620,6 +644,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -641,6 +666,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -688,6 +714,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -710,6 +737,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -731,6 +759,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -764,6 +793,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -777,6 +807,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -791,6 +822,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -812,6 +844,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -851,6 +884,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -864,6 +898,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -878,6 +913,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -899,6 +935,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -940,6 +977,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -953,6 +991,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -967,6 +1006,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -981,6 +1021,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1002,6 +1043,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1045,6 +1087,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1067,6 +1110,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1088,6 +1132,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1131,6 +1176,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1151,6 +1197,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1165,6 +1212,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1179,6 +1227,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1200,6 +1249,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1246,6 +1296,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1268,6 +1319,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1289,6 +1341,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1326,6 +1379,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1339,6 +1393,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1353,6 +1408,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1374,6 +1430,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1411,6 +1468,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1426,6 +1484,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1442,6 +1501,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1466,6 +1526,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1489,6 +1550,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1529,6 +1591,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1542,6 +1605,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1565,6 +1629,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1602,6 +1667,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1615,6 +1681,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1638,6 +1705,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1683,6 +1751,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1702,6 +1771,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1723,6 +1793,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1742,6 +1813,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/collect_multinamespace_references.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1753,7 +1825,8 @@ "The type of the referenced object" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/collect_multinamespace_references.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1765,7 +1838,8 @@ "The ID of the referenced object" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/collect_multinamespace_references.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1780,7 +1854,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/collect_multinamespace_references.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1795,7 +1870,8 @@ "string[]" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/collect_multinamespace_references.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1810,7 +1886,8 @@ "{ type: string; id: string; name: string; }[]" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/collect_multinamespace_references.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1825,7 +1902,8 @@ "boolean | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/collect_multinamespace_references.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1840,7 +1918,8 @@ "string[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/collect_multinamespace_references.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1855,7 +1934,8 @@ "string[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/collect_multinamespace_references.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1871,6 +1951,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/base.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1885,7 +1966,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1911,6 +1993,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_create.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1923,7 +2006,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1933,7 +2017,8 @@ "label": "type", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1946,7 +2031,8 @@ "T" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1959,7 +2045,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1973,7 +2060,8 @@ "[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -1989,7 +2077,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2004,7 +2093,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2019,7 +2109,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2034,7 +2125,8 @@ "string[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2050,6 +2142,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_get.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2059,7 +2152,8 @@ "label": "id", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_get.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2069,7 +2163,8 @@ "label": "type", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_get.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2084,7 +2179,8 @@ "string[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_get.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2099,7 +2195,8 @@ "string[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_get.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2115,6 +2212,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_resolve.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2124,7 +2222,8 @@ "label": "id", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_resolve.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2134,7 +2233,8 @@ "label": "type", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_resolve.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2160,6 +2260,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_resolve.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2179,7 +2280,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_resolve.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2205,6 +2307,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/base.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2218,7 +2321,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2252,6 +2356,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_update.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2263,7 +2368,8 @@ "The ID of this Saved Object, guaranteed to be unique for all objects of the same `type`" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2275,7 +2381,8 @@ " The type of this Saved Object. Each plugin can define it's own custom Saved Object types." ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2290,7 +2397,8 @@ "{ [P in keyof T]?: T[P] | undefined; }" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2305,7 +2413,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2338,6 +2447,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_update.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2359,7 +2469,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2385,6 +2496,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_update.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2404,7 +2516,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/bulk_update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2420,6 +2533,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/check_conflicts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2429,7 +2543,8 @@ "label": "id", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/check_conflicts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2439,7 +2554,8 @@ "label": "type", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/check_conflicts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2455,6 +2571,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/check_conflicts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2469,7 +2586,8 @@ "; }[]" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/check_conflicts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2485,6 +2603,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2510,6 +2629,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2523,6 +2643,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2537,6 +2658,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2558,6 +2680,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2601,6 +2724,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2621,6 +2745,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2642,6 +2767,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2685,6 +2811,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2705,6 +2832,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2726,6 +2854,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2753,6 +2882,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2766,6 +2896,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2780,6 +2911,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2801,6 +2933,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2836,6 +2969,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2855,6 +2989,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2898,6 +3033,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2920,6 +3056,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2941,6 +3078,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2970,6 +3108,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -2985,6 +3124,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3001,6 +3141,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3022,6 +3163,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3067,6 +3209,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -3089,6 +3232,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3110,6 +3254,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3145,6 +3290,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -3160,6 +3306,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3176,6 +3323,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3197,6 +3345,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3232,6 +3381,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -3245,6 +3395,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3259,6 +3410,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3273,6 +3425,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3294,6 +3447,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3337,6 +3491,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -3357,6 +3512,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3378,6 +3534,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3413,6 +3570,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -3426,6 +3584,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3440,6 +3599,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3461,6 +3621,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3496,6 +3657,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -3509,6 +3671,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3530,6 +3693,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3565,6 +3729,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -3578,6 +3743,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3599,6 +3765,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3642,6 +3809,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -3661,6 +3829,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3682,6 +3851,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3725,6 +3895,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -3745,6 +3916,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3766,6 +3938,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3809,6 +3982,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -3829,6 +4003,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3843,6 +4018,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3857,6 +4033,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3878,6 +4055,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/saved_objects_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3895,6 +4073,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/close_point_in_time.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -3906,7 +4085,8 @@ "\nIf true, all search contexts associated with the PIT id are\nsuccessfully closed." ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/close_point_in_time.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -3918,7 +4098,8 @@ "\nThe number of search contexts that have been successfully closed." ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/close_point_in_time.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3934,6 +4115,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/collect_multinamespace_references.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -3943,7 +4125,8 @@ "label": "id", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/collect_multinamespace_references.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -3953,7 +4136,8 @@ "label": "type", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/collect_multinamespace_references.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3986,6 +4170,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/collect_multinamespace_references.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4000,7 +4185,8 @@ "\"collectMultiNamespaceReferences\" | \"updateObjectsSpaces\" | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/collect_multinamespace_references.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4016,6 +4202,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/collect_multinamespace_references.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4035,7 +4222,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/collect_multinamespace_references.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4068,6 +4256,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/create.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4082,7 +4271,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4097,7 +4287,8 @@ "boolean | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4112,7 +4303,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4128,7 +4320,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4143,7 +4336,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4157,7 +4351,8 @@ "[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4179,7 +4374,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4194,7 +4390,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4209,7 +4406,8 @@ "string[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/create.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4223,6 +4421,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/create_point_in_time_finder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4283,7 +4482,8 @@ ">; }" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/create_point_in_time_finder.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4316,6 +4516,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/delete_by_namespace.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4330,7 +4531,8 @@ "boolean | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/delete_by_namespace.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4363,6 +4565,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/delete.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4384,7 +4587,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/delete.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4399,7 +4603,8 @@ "boolean | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/delete.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4415,6 +4620,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4427,7 +4633,8 @@ "string | string[]" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4440,7 +4647,8 @@ "number | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4453,7 +4661,8 @@ "number | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4466,7 +4675,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4480,7 +4690,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4495,7 +4706,8 @@ "string[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4510,7 +4722,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4525,7 +4738,8 @@ "string[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4540,7 +4754,8 @@ "string[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4555,7 +4770,8 @@ "string[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4585,7 +4801,8 @@ "[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4600,7 +4817,8 @@ "\"AND\" | \"OR\" | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4615,7 +4833,8 @@ "\"AND\" | \"OR\" | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4628,7 +4847,8 @@ "any" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4647,7 +4867,8 @@ "> | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4660,7 +4881,8 @@ "string[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4675,7 +4897,8 @@ "Map | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4690,7 +4913,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4712,7 +4936,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4726,6 +4951,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4735,7 +4961,8 @@ "label": "type", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4745,7 +4972,8 @@ "label": "id", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4771,6 +4999,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4783,7 +5012,8 @@ "A | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4803,7 +5033,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4813,7 +5044,8 @@ "label": "total", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4823,7 +5055,8 @@ "label": "per_page", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4833,7 +5066,8 @@ "label": "page", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4846,7 +5080,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4874,6 +5109,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4885,7 +5121,8 @@ "\nThe Elasticsearch `_score` of this result." ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4900,7 +5137,8 @@ "string[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4914,6 +5152,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/increment_counter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4925,7 +5164,8 @@ "The field name to increment the counter by." ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/increment_counter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4940,7 +5180,8 @@ "number | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/increment_counter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4971,6 +5212,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/increment_counter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -4985,7 +5227,8 @@ "boolean | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/increment_counter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5001,7 +5244,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/increment_counter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5023,7 +5267,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/increment_counter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5038,7 +5283,8 @@ "Attributes | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/increment_counter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5052,6 +5298,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/open_point_in_time_for_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5066,7 +5313,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/open_point_in_time_for_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5081,7 +5329,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/open_point_in_time_for_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5096,7 +5345,8 @@ "string[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/open_point_in_time_for_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5110,6 +5360,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/open_point_in_time_for_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5121,7 +5372,8 @@ "\nPIT ID returned from ES." ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/open_point_in_time_for_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5135,6 +5387,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5144,7 +5397,8 @@ "label": "id", "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5157,7 +5411,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/find.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5190,6 +5445,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/remove_references_to.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5204,7 +5460,8 @@ "boolean | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/remove_references_to.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5237,6 +5494,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/remove_references_to.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5248,7 +5506,8 @@ "The number of objects that have been updated by this operation" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/remove_references_to.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5274,6 +5533,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/resolve.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5289,7 +5549,8 @@ "" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/resolve.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5304,7 +5565,8 @@ "\"exactMatch\" | \"aliasMatch\" | \"conflict\"" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/resolve.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5319,7 +5581,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/resolve.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5334,7 +5597,8 @@ "\"savedObjectConversion\" | \"savedObjectImport\" | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/resolve.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5350,6 +5614,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update_objects_spaces.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5361,7 +5626,8 @@ "The type of the object to update" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update_objects_spaces.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5373,7 +5639,8 @@ "The ID of the object to update" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update_objects_spaces.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5406,6 +5673,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update_objects_spaces.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5427,7 +5695,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update_objects_spaces.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5443,6 +5712,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update_objects_spaces.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5462,7 +5732,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update_objects_spaces.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5478,6 +5749,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update_objects_spaces.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5489,7 +5761,8 @@ "The type of the referenced object" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update_objects_spaces.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5501,7 +5774,8 @@ "The ID of the referenced object" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update_objects_spaces.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5516,7 +5790,8 @@ "string[]" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update_objects_spaces.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5532,7 +5807,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update_objects_spaces.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5565,6 +5841,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5579,7 +5856,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5595,7 +5873,8 @@ "[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5617,7 +5896,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5632,7 +5912,8 @@ "Attributes | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5647,7 +5928,8 @@ "number | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5675,6 +5957,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5687,7 +5970,8 @@ "{ [P in keyof T]?: T[P] | undefined; }" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-api-server", @@ -5701,7 +5985,8 @@ "[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/update.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5723,6 +6008,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/base.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5743,6 +6029,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/close_point_in_time.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5777,6 +6064,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/create_point_in_time_finder.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5839,6 +6127,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server/src/apis/create_point_in_time_finder.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_saved_objects_api_server.mdx b/api_docs/kbn_core_saved_objects_api_server.mdx index 81964bd4a7ab6..437f5d3e1d6e7 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: 2022-09-05 +date: 2022-09-08 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_internal.devdocs.json b/api_docs/kbn_core_saved_objects_api_server_internal.devdocs.json index 577628bd0f454..d5a95dee2de38 100644 --- a/api_docs/kbn_core_saved_objects_api_server_internal.devdocs.json +++ b/api_docs/kbn_core_saved_objects_api_server_internal.devdocs.json @@ -30,6 +30,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -49,6 +50,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -62,6 +64,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -76,6 +79,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -90,6 +94,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -115,6 +120,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -129,6 +135,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -143,6 +150,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -168,6 +176,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -182,6 +191,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -196,6 +206,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -217,6 +228,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -230,6 +242,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -244,6 +257,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -258,6 +272,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -279,6 +294,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -292,6 +308,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -306,6 +323,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -329,6 +347,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -342,6 +361,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -367,6 +387,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -381,6 +402,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -395,6 +417,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -420,6 +443,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -434,6 +458,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -448,6 +473,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -471,6 +497,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -484,6 +511,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -498,6 +526,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -512,6 +541,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -535,6 +565,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -548,6 +579,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -562,6 +594,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -576,6 +609,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -599,6 +633,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -612,6 +647,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -626,6 +662,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -640,6 +677,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -655,6 +693,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -680,6 +719,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -694,6 +734,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -709,6 +750,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -734,6 +776,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -748,6 +791,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -762,6 +806,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -776,6 +821,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -791,6 +837,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -816,6 +863,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -830,6 +878,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -844,6 +893,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -867,6 +917,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -880,6 +931,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -894,6 +946,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -908,6 +961,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -933,6 +987,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -946,6 +1001,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -960,6 +1016,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -976,6 +1033,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -991,6 +1049,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1014,6 +1073,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -1027,6 +1087,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1041,6 +1102,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1064,6 +1126,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -1077,6 +1140,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1092,6 +1156,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1117,6 +1182,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-internal", @@ -1130,6 +1196,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1145,6 +1212,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-internal/src/lib/repository.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], diff --git a/api_docs/kbn_core_saved_objects_api_server_internal.mdx b/api_docs/kbn_core_saved_objects_api_server_internal.mdx index 29da857be4195..35f9be419d40c 100644 --- a/api_docs/kbn_core_saved_objects_api_server_internal.mdx +++ b/api_docs/kbn_core_saved_objects_api_server_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-saved-objects-api-server-internal title: "@kbn/core-saved-objects-api-server-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-saved-objects-api-server-internal plugin -date: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-api-server-internal'] --- import kbnCoreSavedObjectsApiServerInternalObj from './kbn_core_saved_objects_api_server_internal.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_api_server_mocks.devdocs.json b/api_docs/kbn_core_saved_objects_api_server_mocks.devdocs.json index fda954632c112..84cd863028166 100644 --- a/api_docs/kbn_core_saved_objects_api_server_mocks.devdocs.json +++ b/api_docs/kbn_core_saved_objects_api_server_mocks.devdocs.json @@ -24,6 +24,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server-mocks/src/saved_objects_client.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-mocks", @@ -39,6 +40,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-mocks/src/saved_objects_client.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -54,6 +56,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server-mocks/src/scoped_client_provider.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-mocks", @@ -69,6 +72,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-mocks/src/scoped_client_provider.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -84,6 +88,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-api-server-mocks/src/repository.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-api-server-mocks", @@ -99,6 +104,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-api-server-mocks/src/repository.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } 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 b17f74de394f2..5102602665f5b 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_saved_objects_base_server_internal.devdocs.json index 1a252b3e74576..00845df5afb5d 100644 --- a/api_docs/kbn_core_saved_objects_base_server_internal.devdocs.json +++ b/api_docs/kbn_core_saved_objects_base_server_internal.devdocs.json @@ -19,6 +19,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/saved_objects_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -28,7 +29,8 @@ "label": "maxImportPayloadBytes", "description": [], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/saved_objects_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -38,7 +40,8 @@ "label": "maxImportExportSize", "description": [], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/saved_objects_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -53,7 +56,8 @@ "; readonly scrollDuration: string; readonly retryAttempts: number; }" ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/saved_objects_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -67,6 +71,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/saved_objects_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -82,6 +87,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/saved_objects_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -98,6 +104,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/saved_objects_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -122,6 +129,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/version/decode_request_version.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -135,6 +143,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/version/decode_request_version.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -155,6 +164,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/version/decode_version.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -168,6 +178,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/version/decode_version.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -188,6 +199,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/version/encode_hit_version.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -198,6 +210,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/version/encode_hit_version.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -210,7 +223,8 @@ "number | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/version/encode_hit_version.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -223,7 +237,8 @@ "number | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/version/encode_hit_version.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -245,6 +260,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/version/encode_version.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -258,6 +274,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/version/encode_version.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -272,6 +289,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/version/encode_version.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -290,6 +308,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/utils/get_index_for_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -303,6 +322,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/utils/get_index_for_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -327,6 +347,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/mappings/lib/get_property.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -342,6 +363,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/mappings/lib/get_property.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -356,6 +378,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/mappings/lib/get_property.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -379,6 +402,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/mappings/lib/get_root_properties.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -392,6 +416,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/mappings/lib/get_root_properties.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -413,6 +438,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/mappings/lib/get_root_properties_objects.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -426,6 +452,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/mappings/lib/get_root_properties_objects.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -448,6 +475,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/mappings/lib/get_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -461,6 +489,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/mappings/lib/get_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -485,6 +514,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/saved_objects_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -501,6 +531,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/saved_objects_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -514,6 +545,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/saved_objects_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -523,7 +555,8 @@ "label": "path", "description": [], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/saved_objects_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -543,7 +576,8 @@ "; }>" ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/saved_objects_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -557,6 +591,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/saved_objects_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -566,7 +601,8 @@ "label": "path", "description": [], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/saved_objects_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-base-server-internal", @@ -598,7 +634,8 @@ "; }>" ], "path": "packages/core/saved-objects/core-saved-objects-base-server-internal/src/saved_objects_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false 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 5f898d506565e..d78c3da1e3c01 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_saved_objects_base_server_mocks.devdocs.json index cab8d6394bd14..738df680f7054 100644 --- a/api_docs/kbn_core_saved_objects_base_server_mocks.devdocs.json +++ b/api_docs/kbn_core_saved_objects_base_server_mocks.devdocs.json @@ -24,6 +24,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-base-server-mocks/src/serializer.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-base-server-mocks", @@ -39,6 +40,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-mocks/src/serializer.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -54,6 +56,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-base-server-mocks/src/saved_objects_type_registry.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-base-server-mocks", @@ -71,6 +74,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-base-server-mocks/src/saved_objects_type_registry.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } 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 f3d209fa7fcd7..0b40e8600a5b8 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: 2022-09-05 +date: 2022-09-08 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 7aa59ac3da7f7..d8cda029f89a8 100644 --- a/api_docs/kbn_core_saved_objects_browser.devdocs.json +++ b/api_docs/kbn_core_saved_objects_browser.devdocs.json @@ -29,6 +29,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-browser/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-browser", @@ -43,7 +44,8 @@ "SavedObjectsClientContract" ], "path": "packages/core/saved-objects/core-saved-objects-browser/src/contracts.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_core_saved_objects_browser.mdx b/api_docs/kbn_core_saved_objects_browser.mdx index df165fa793a29..586e42b8bf893 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_saved_objects_browser_internal.devdocs.json index a973d2292623d..85d598600e037 100644 --- a/api_docs/kbn_core_saved_objects_browser_internal.devdocs.json +++ b/api_docs/kbn_core_saved_objects_browser_internal.devdocs.json @@ -41,6 +41,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-browser-internal", @@ -54,6 +55,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -73,6 +75,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-browser-internal", @@ -83,6 +86,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-browser-internal", @@ -95,7 +99,8 @@ "HttpSetup" ], "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -114,6 +119,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-browser-internal/src/saved_objects_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } diff --git a/api_docs/kbn_core_saved_objects_browser_internal.mdx b/api_docs/kbn_core_saved_objects_browser_internal.mdx index 207247df9b326..4f927190b7dd3 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_saved_objects_browser_mocks.devdocs.json index 17dd93fd31b18..a76112903241c 100644 --- a/api_docs/kbn_core_saved_objects_browser_mocks.devdocs.json +++ b/api_docs/kbn_core_saved_objects_browser_mocks.devdocs.json @@ -32,6 +32,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-browser-mocks", @@ -45,6 +46,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -62,6 +64,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/saved_objects_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -77,6 +80,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-browser-mocks", @@ -96,6 +100,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-browser-mocks", @@ -109,6 +114,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -124,6 +130,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-browser-mocks/src/simple_saved_object.mock.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_core_saved_objects_browser_mocks.mdx b/api_docs/kbn_core_saved_objects_browser_mocks.mdx index 1d14b94cea5ce..ab33dc4970f31 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-browser-mocks'] --- import kbnCoreSavedObjectsBrowserMocksObj from './kbn_core_saved_objects_browser_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_common.devdocs.json b/api_docs/kbn_core_saved_objects_common.devdocs.json index 603b00a1c52b0..f6d379e5699ac 100644 --- a/api_docs/kbn_core_saved_objects_common.devdocs.json +++ b/api_docs/kbn_core_saved_objects_common.devdocs.json @@ -39,6 +39,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-common", @@ -50,7 +51,8 @@ "The ID of this Saved Object, guaranteed to be unique for all objects of the same `type`" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -62,7 +64,8 @@ " The type of Saved Object. Each plugin can define it's own custom Saved Object types." ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -77,7 +80,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -92,7 +96,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -112,7 +117,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -127,7 +133,8 @@ "T" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -149,7 +156,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -171,7 +179,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -186,7 +195,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -201,7 +211,8 @@ "string[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -216,7 +227,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -232,6 +244,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-common", @@ -251,7 +264,8 @@ } ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -265,6 +279,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-common", @@ -274,7 +289,8 @@ "label": "error", "description": [], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -284,7 +300,8 @@ "label": "message", "description": [], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -294,7 +311,8 @@ "label": "statusCode", "description": [], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -307,7 +325,8 @@ "Record | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -323,6 +342,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-common", @@ -332,7 +352,8 @@ "label": "name", "description": [], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -342,7 +363,8 @@ "label": "type", "description": [], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -352,7 +374,8 @@ "label": "id", "description": [], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -368,6 +391,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-common", @@ -380,7 +404,8 @@ "\"action_required\"" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -392,7 +417,8 @@ "The translated message to display to the user." ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -404,7 +430,8 @@ "The path (without the basePath) that the user should be redirect to address this warning." ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -419,7 +446,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -435,6 +463,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-common", @@ -447,7 +476,8 @@ "\"ambiguous_conflict\"" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -460,7 +490,8 @@ "{ id: string; title?: string | undefined; updatedAt?: string | undefined; }[]" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -476,6 +507,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-common", @@ -488,7 +520,8 @@ "\"conflict\"" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -501,7 +534,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -517,6 +551,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-common", @@ -526,7 +561,8 @@ "label": "id", "description": [], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -536,7 +572,8 @@ "label": "type", "description": [], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -549,7 +586,8 @@ "{ title?: string | undefined; icon?: string | undefined; }" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -564,7 +602,8 @@ "boolean | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -615,7 +654,8 @@ } ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -631,6 +671,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-common", @@ -643,7 +684,8 @@ "\"missing_references\"" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -656,7 +698,8 @@ "{ type: string; id: string; }[]" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -672,6 +715,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-common", @@ -681,7 +725,8 @@ "label": "success", "description": [], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -691,7 +736,8 @@ "label": "successCount", "description": [], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -711,7 +757,8 @@ "[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -731,7 +778,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -751,7 +799,8 @@ "[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -767,6 +816,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-common", @@ -776,7 +826,8 @@ "label": "type", "description": [], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -786,7 +837,8 @@ "label": "id", "description": [], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -796,7 +848,8 @@ "label": "overwrite", "description": [], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -811,7 +864,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -824,7 +878,8 @@ "{ type: string; from: string; to: string; }[]" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -839,7 +894,8 @@ "boolean | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -854,7 +910,8 @@ "boolean | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -870,6 +927,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-common", @@ -882,7 +940,8 @@ "\"simple\"" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -894,7 +953,8 @@ "The translated message to display to the user" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -910,6 +970,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-common", @@ -919,7 +980,8 @@ "label": "id", "description": [], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -929,7 +991,8 @@ "label": "type", "description": [], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -944,7 +1007,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -960,6 +1024,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", "deprecated": true, + "trackAdoption": false, "references": [] }, { @@ -973,7 +1038,8 @@ "{ title?: string | undefined; icon?: string | undefined; }" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -988,7 +1054,8 @@ "boolean | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1004,6 +1071,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-common", @@ -1016,7 +1084,8 @@ "\"unknown\"" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -1026,7 +1095,8 @@ "label": "message", "description": [], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -1036,7 +1106,8 @@ "label": "statusCode", "description": [], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1052,6 +1123,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-common", @@ -1064,7 +1136,8 @@ "\"unsupported_type\"" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1080,6 +1153,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-common", @@ -1092,7 +1166,8 @@ "[pluginName: string]: string" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1108,6 +1183,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-common", @@ -1119,7 +1195,8 @@ "The id of the saved object" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-common", @@ -1131,7 +1208,8 @@ "The type of the saved object" ], "path": "packages/core/saved-objects/core-saved-objects-common/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1168,6 +1246,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1192,6 +1271,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1222,6 +1302,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects_imports.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1238,6 +1319,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-common/src/saved_objects.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_saved_objects_common.mdx b/api_docs/kbn_core_saved_objects_common.mdx index 8bde1f0b8f9ce..96477a0e7c797 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_saved_objects_import_export_server_internal.devdocs.json index 0e2ceef3199f4..fd2846eec2566 100644 --- a/api_docs/kbn_core_saved_objects_import_export_server_internal.devdocs.json +++ b/api_docs/kbn_core_saved_objects_import_export_server_internal.devdocs.json @@ -29,6 +29,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-import-export-server-internal", @@ -42,6 +43,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-import-export-server-internal", @@ -55,6 +57,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -69,6 +72,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -83,6 +87,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -107,6 +112,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-import-export-server-internal", @@ -120,6 +126,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -146,6 +153,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-import-export-server-internal", @@ -160,6 +168,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -188,6 +197,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-import-export-server-internal", @@ -202,6 +212,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -216,6 +227,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -242,6 +254,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-import-export-server-internal", @@ -255,6 +268,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/export/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -282,6 +296,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-import-export-server-internal", @@ -302,6 +317,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-import-export-server-internal", @@ -315,6 +331,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -339,6 +356,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-import-export-server-internal", @@ -352,6 +370,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -376,6 +395,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-import-export-server-internal", @@ -389,6 +409,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -413,6 +434,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-import-export-server-internal", @@ -426,6 +448,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -452,6 +475,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-import-export-server-internal", @@ -466,6 +490,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-internal/src/import/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], 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 a4ce97d02a8cf..9e65224dc4a22 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_saved_objects_import_export_server_mocks.devdocs.json index 5f5d8adce238d..344f2d6e58526 100644 --- a/api_docs/kbn_core_saved_objects_import_export_server_mocks.devdocs.json +++ b/api_docs/kbn_core_saved_objects_import_export_server_mocks.devdocs.json @@ -24,6 +24,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-mocks/src/saved_objects_exporter.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-import-export-server-mocks", @@ -39,6 +40,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-mocks/src/saved_objects_exporter.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -54,6 +56,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-mocks/src/saved_objects_importer.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-import-export-server-mocks", @@ -69,6 +72,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-import-export-server-mocks/src/saved_objects_importer.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } 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 0498f759a4aea..5169834e61594 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_saved_objects_migration_server_internal.devdocs.json index b2955b1adb782..0ff9be0a9591b 100644 --- a/api_docs/kbn_core_saved_objects_migration_server_internal.devdocs.json +++ b/api_docs/kbn_core_saved_objects_migration_server_internal.devdocs.json @@ -32,6 +32,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -41,7 +42,8 @@ "label": "kibanaVersion", "description": [], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -57,6 +59,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -76,6 +79,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -95,6 +99,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -105,6 +110,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -117,7 +123,8 @@ "boolean | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -136,6 +143,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -155,6 +163,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -171,6 +180,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -190,6 +200,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -204,6 +215,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -231,6 +243,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/model/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -246,6 +259,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/model/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -263,6 +277,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/model/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -290,6 +305,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/build_active_mappings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -307,6 +323,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/build_active_mappings.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -339,6 +356,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/bulk_overwrite_transformed_documents.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -352,6 +370,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/bulk_overwrite_transformed_documents.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -378,6 +397,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/calculate_exclude_filters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -391,6 +411,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/calculate_exclude_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -417,6 +438,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/check_for_unknown_docs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -430,6 +452,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/check_for_unknown_docs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -464,6 +487,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/clone_index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -477,6 +501,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/clone_index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -501,6 +526,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/close_pit.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -514,6 +540,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/close_pit.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -544,6 +571,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/create_index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -557,6 +585,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/create_index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -585,6 +614,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/fetch_indices.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -598,6 +628,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/fetch_indices.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -626,6 +657,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/initialize_action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -639,6 +671,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/initialize_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -659,6 +692,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/es_errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -673,6 +707,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/es_errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -693,6 +728,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/es_errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -707,6 +743,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/es_errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -727,6 +764,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/es_errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -741,6 +779,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/es_errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -761,6 +800,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/es_errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -775,6 +815,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/es_errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -798,6 +839,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -812,6 +854,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -838,6 +881,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/open_pit.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -851,6 +895,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/open_pit.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -885,6 +930,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/pickup_updated_mappings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -898,6 +944,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/pickup_updated_mappings.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -912,6 +959,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/pickup_updated_mappings.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -938,6 +986,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/read_with_pit.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -951,6 +1000,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/read_with_pit.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -977,6 +1027,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/refresh_index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -990,6 +1041,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/refresh_index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1018,6 +1070,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/reindex.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -1031,6 +1084,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/reindex.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1057,6 +1111,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/remove_write_block.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -1070,6 +1125,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/remove_write_block.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1100,6 +1156,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/search_for_outdated_documents.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -1113,6 +1170,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/search_for_outdated_documents.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1127,6 +1185,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/search_for_outdated_documents.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1155,6 +1214,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/set_write_block.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -1168,6 +1228,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/set_write_block.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1206,6 +1267,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/transform_docs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -1219,6 +1281,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/transform_docs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1251,6 +1314,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/update_aliases.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -1264,6 +1328,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/update_aliases.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1292,6 +1357,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/update_and_pickup_mappings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -1305,6 +1371,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/update_and_pickup_mappings.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1331,6 +1398,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/wait_for_index_status.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -1345,6 +1413,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/wait_for_index_status.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1371,6 +1440,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/wait_for_index_status.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -1385,6 +1455,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/wait_for_index_status.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1415,6 +1486,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/wait_for_index_status.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -1428,6 +1500,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/wait_for_index_status.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1454,6 +1527,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/wait_for_pickup_updated_mappings_task.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1467,7 +1541,8 @@ "A" ], "path": "node_modules/fp-ts/lib/function.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1498,6 +1573,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/wait_for_reindex_task.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1511,7 +1587,8 @@ "A" ], "path": "node_modules/fp-ts/lib/function.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1540,6 +1617,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/wait_for_task.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -1553,6 +1631,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/wait_for_task.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1570,6 +1649,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/migrate_raw_docs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -1579,7 +1659,8 @@ "label": "type", "description": [], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/migrate_raw_docs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -1592,7 +1673,8 @@ "string[]" ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/migrate_raw_docs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -1606,7 +1688,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/migrate_raw_docs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -1620,7 +1703,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/migrate_raw_docs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1634,6 +1718,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/migrate_raw_docs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -1647,7 +1732,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/migrate_raw_docs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1661,6 +1747,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -2861,7 +2948,8 @@ "; }" ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -2874,7 +2962,8 @@ "ISavedObjectTypeRegistry" ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -2889,7 +2978,8 @@ "; readonly scrollDuration: string; readonly retryAttempts: number; }" ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -2899,7 +2989,8 @@ "label": "kibanaIndex", "description": [], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -2909,7 +3000,8 @@ "label": "kibanaVersion", "description": [], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -2922,7 +3014,8 @@ "Logger" ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -2935,7 +3028,8 @@ "DocLinksServiceSetup" ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/kibana_migrator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2949,6 +3043,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/pickup_updated_mappings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -2958,7 +3053,8 @@ "label": "taskId", "description": [], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/actions/pickup_updated_mappings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2980,6 +3076,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/core/unused_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -2995,6 +3092,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/run_resilient_migrator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -3004,7 +3102,8 @@ "label": "maxRetries", "description": [], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/run_resilient_migrator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-migration-server-internal", @@ -3014,7 +3113,8 @@ "label": "requestTimeout", "description": [], "path": "packages/core/saved-objects/core-saved-objects-migration-server-internal/src/run_resilient_migrator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false 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 336564df0c9d2..0da4633a1f7d5 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_saved_objects_migration_server_mocks.devdocs.json index 263ed264bba0e..04a8bf037c755 100644 --- a/api_docs/kbn_core_saved_objects_migration_server_mocks.devdocs.json +++ b/api_docs/kbn_core_saved_objects_migration_server_mocks.devdocs.json @@ -25,6 +25,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-mocks/src/migration.mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -41,6 +42,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-mocks/src/helpers/retry_async.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-mocks", @@ -54,6 +56,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-mocks/src/helpers/retry_async.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -65,6 +68,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-migration-server-mocks/src/helpers/retry_async.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-mocks", @@ -74,7 +78,8 @@ "label": "retryAttempts", "description": [], "path": "packages/core/saved-objects/core-saved-objects-migration-server-mocks/src/helpers/retry_async.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-migration-server-mocks", @@ -84,7 +89,8 @@ "label": "retryDelayMs", "description": [], "path": "packages/core/saved-objects/core-saved-objects-migration-server-mocks/src/helpers/retry_async.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -106,6 +112,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-migration-server-mocks/src/migration.mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-mocks", @@ -121,6 +128,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-mocks/src/migration.mocks.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -134,7 +142,8 @@ "{ migrationVersion?: string | undefined; convertToMultiNamespaceTypeVersion?: string | undefined; isSingleNamespaceType?: boolean | undefined; }" ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-mocks/src/migration.mocks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -150,6 +159,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-migration-server-mocks/src/kibana_migrator.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-migration-server-mocks", @@ -167,6 +177,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-mocks/src/kibana_migrator.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -182,7 +193,8 @@ "[]; }" ], "path": "packages/core/saved-objects/core-saved-objects-migration-server-mocks/src/kibana_migrator.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } 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 a880e410beb84..878e93723383b 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-saved-objects-migration-server-mocks'] --- import kbnCoreSavedObjectsMigrationServerMocksObj from './kbn_core_saved_objects_migration_server_mocks.devdocs.json'; diff --git a/api_docs/kbn_core_saved_objects_server.devdocs.json b/api_docs/kbn_core_saved_objects_server.devdocs.json index 5af7c14db88a3..3ab55e6ecc442 100644 --- a/api_docs/kbn_core_saved_objects_server.devdocs.json +++ b/api_docs/kbn_core_saved_objects_server.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -50,6 +51,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -69,6 +71,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -100,6 +103,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -119,6 +123,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -138,6 +143,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -165,6 +171,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -184,6 +191,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -215,6 +223,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -234,6 +243,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -253,6 +263,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -284,6 +295,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -305,6 +317,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -328,6 +341,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -371,6 +385,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -392,6 +407,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -415,6 +431,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -449,6 +466,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -471,6 +489,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -490,6 +509,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -505,6 +525,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -521,6 +542,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -537,6 +559,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -556,6 +579,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -571,6 +595,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -587,6 +612,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -603,6 +629,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -622,6 +649,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -645,6 +673,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -658,6 +687,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -685,6 +715,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -710,6 +741,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -735,6 +767,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -752,6 +785,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -765,6 +799,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -784,6 +819,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -797,6 +833,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -816,6 +853,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -829,6 +867,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -848,6 +887,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -861,6 +901,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -880,6 +921,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -893,6 +935,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -912,6 +955,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -925,6 +969,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -944,6 +989,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -957,6 +1003,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/type_registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -974,6 +1021,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -989,7 +1037,8 @@ "" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1004,7 +1053,8 @@ "boolean | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1019,7 +1069,8 @@ "boolean | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1034,7 +1085,8 @@ "boolean | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1049,7 +1101,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1065,6 +1118,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1085,7 +1139,8 @@ } ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1097,7 +1152,8 @@ "\nThe migration version that this migration function is defined for" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1112,7 +1168,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1124,7 +1181,8 @@ "\nWhether this is a single-namespace type or not" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1140,6 +1198,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1160,7 +1219,8 @@ "" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1176,6 +1236,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/client_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1188,7 +1249,8 @@ "string[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/client_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1201,7 +1263,8 @@ "string[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/client_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1217,6 +1280,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/client_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1229,7 +1293,8 @@ "SavedObjectsClientContract" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/client_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1248,7 +1313,8 @@ } ], "path": "packages/core/saved-objects/core-saved-objects-server/src/client_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1262,7 +1328,8 @@ "" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/client_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1295,6 +1362,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1310,7 +1378,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1343,6 +1412,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1357,7 +1427,8 @@ "string[]" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1373,7 +1444,8 @@ "[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1388,7 +1460,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1402,6 +1475,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1413,7 +1487,8 @@ "id of the excluded object" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1425,7 +1500,8 @@ "type of the excluded object" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1440,7 +1516,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1456,6 +1533,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1467,7 +1545,8 @@ "number of successfully exported objects" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1479,7 +1558,8 @@ "number of missing references" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1495,7 +1575,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1507,7 +1588,8 @@ "number of objects that were excluded from the export" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1529,7 +1611,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1545,6 +1628,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1560,7 +1644,8 @@ "" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1576,6 +1661,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1591,7 +1677,8 @@ "[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1607,6 +1694,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1621,7 +1709,8 @@ "Readable" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1633,7 +1722,8 @@ "If true, will override existing object if present. Note: this has no effect when used with the `createNewCopies` option." ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1648,7 +1738,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1660,7 +1751,8 @@ "If true, will create new copies of import objects, each with a random `id` and undefined `originId`." ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1675,7 +1767,8 @@ "boolean | \"wait_for\" | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1691,6 +1784,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/mapping_definition.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1710,7 +1804,8 @@ } ], "path": "packages/core/saved-objects/core-saved-objects-server/src/mapping_definition.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1724,6 +1819,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1737,6 +1833,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1750,6 +1847,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1767,6 +1865,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1780,6 +1879,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1800,6 +1900,7 @@ "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [], "children": [ { @@ -1814,6 +1915,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1831,6 +1933,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1844,6 +1947,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1865,6 +1969,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1878,6 +1983,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1892,6 +1998,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1911,6 +2018,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1920,7 +2028,8 @@ "label": "_id", "description": [], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1939,7 +2048,8 @@ } ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1952,7 +2062,8 @@ "number | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1965,7 +2076,8 @@ "number | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1981,6 +2093,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -1995,7 +2108,8 @@ "\"strict\" | \"lax\" | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2009,6 +2123,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2018,7 +2133,8 @@ "label": "type", "description": [], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2031,7 +2147,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2044,7 +2161,8 @@ "string[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2058,7 +2176,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2071,7 +2190,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2085,7 +2205,8 @@ "[] | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2098,7 +2219,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2111,7 +2233,8 @@ "[typeMapping: string]: any" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2127,6 +2250,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/client_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2145,6 +2269,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/client_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2159,6 +2284,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/client_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2175,6 +2301,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/client_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2195,6 +2322,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/client_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2210,6 +2338,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/client_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2229,6 +2358,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/request_handler_context.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2241,7 +2371,8 @@ "SavedObjectsClientContract" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/request_handler_context.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2260,7 +2391,8 @@ } ], "path": "packages/core/saved-objects/core-saved-objects-server/src/request_handler_context.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2283,6 +2415,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/request_handler_context.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2303,6 +2436,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/request_handler_context.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2329,6 +2463,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/request_handler_context.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2342,6 +2477,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/request_handler_context.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2368,6 +2504,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/request_handler_context.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2381,6 +2518,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/request_handler_context.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2400,6 +2538,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2414,7 +2553,8 @@ "Readable" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2430,7 +2570,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2445,7 +2586,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2457,7 +2599,8 @@ "If true, will create new copies of import objects, each with a random `id` and undefined `originId`." ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2473,6 +2616,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2496,6 +2640,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2515,6 +2660,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2542,6 +2688,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2555,6 +2702,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2569,6 +2717,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2589,6 +2738,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2618,6 +2768,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2638,6 +2789,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2657,6 +2809,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2674,6 +2827,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2700,6 +2854,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2714,6 +2869,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2735,6 +2891,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2757,6 +2914,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2773,6 +2931,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2789,6 +2948,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2809,6 +2969,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2824,6 +2985,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2850,6 +3012,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2876,6 +3039,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2889,6 +3053,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2917,6 +3082,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2930,6 +3096,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2956,6 +3123,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/contracts.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2973,6 +3141,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_status.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -2985,7 +3154,8 @@ "{ [status: string]: number; skipped: number; migrated: number; }" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_status.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3009,6 +3179,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3020,7 +3191,8 @@ "\nThe name of the type, which is also used as the internal id." ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3032,7 +3204,8 @@ "\nIs the type hidden by default. If true, repositories will not have access to this type unless explicitly\ndeclared as an `extraType` when creating the repository.\n\nSee {@link SavedObjectsServiceStart.createInternalRepository | createInternalRepository}." ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3047,7 +3220,8 @@ "\"single\" | \"multiple\" | \"multiple-isolated\" | \"agnostic\"" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3062,7 +3236,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3077,7 +3252,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3099,7 +3275,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3120,7 +3297,8 @@ } ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3150,7 +3328,8 @@ ") | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3180,7 +3359,8 @@ ") | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3195,7 +3375,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3217,7 +3398,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3243,6 +3425,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_management.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3257,7 +3440,8 @@ "boolean | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_management.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3272,7 +3456,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_management.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3287,7 +3472,8 @@ "boolean | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_management.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3302,7 +3488,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_management.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3317,7 +3504,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_management.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3335,6 +3523,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_management.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3349,6 +3538,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_management.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3370,6 +3560,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_management.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3384,6 +3575,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_management.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3405,6 +3597,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_management.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3419,6 +3612,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_management.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3446,7 +3640,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_management.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3468,7 +3663,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_management.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3490,7 +3686,8 @@ " | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_management.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3506,6 +3703,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/mapping_definition.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3520,7 +3718,8 @@ "false | \"strict\" | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/mapping_definition.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3541,7 +3740,8 @@ } ], "path": "packages/core/saved-objects/core-saved-objects-server/src/mapping_definition.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3557,6 +3757,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/validation.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3576,7 +3777,8 @@ } ], "path": "packages/core/saved-objects/core-saved-objects-server/src/validation.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3597,6 +3799,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3637,6 +3840,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3652,7 +3856,8 @@ "[] | undefined; }" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3671,7 +3876,8 @@ } ], "path": "packages/core/saved-objects/core-saved-objects-server/src/migration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3692,6 +3898,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3711,6 +3918,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/client_factory.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3726,7 +3934,8 @@ "; includedHiddenTypes?: string[] | undefined; }" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/client_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3760,6 +3969,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/client_factory.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3779,7 +3989,8 @@ } ], "path": "packages/core/saved-objects/core-saved-objects-server/src/client_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3807,6 +4018,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/client_factory.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3826,7 +4038,8 @@ } ], "path": "packages/core/saved-objects/core-saved-objects-server/src/client_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3845,6 +4058,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_management.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3859,7 +4073,8 @@ "" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_management.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3892,6 +4107,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3911,7 +4127,8 @@ } ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server", @@ -3925,7 +4142,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3947,6 +4165,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/mapping_definition.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3981,6 +4200,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3995,7 +4215,8 @@ "[]" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/import.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4015,6 +4236,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/validation.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4039,6 +4261,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_type.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4054,7 +4277,8 @@ ", \"search\">; }" ], "path": "packages/core/saved-objects/core-saved-objects-server/src/saved_objects_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4075,6 +4299,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server/src/serialization.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_saved_objects_server.mdx b/api_docs/kbn_core_saved_objects_server.mdx index 60209bd509c07..b50e4f961b89e 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_saved_objects_server_internal.devdocs.json index c77e8080f91c1..c4872c37e0445 100644 --- a/api_docs/kbn_core_saved_objects_server_internal.devdocs.json +++ b/api_docs/kbn_core_saved_objects_server_internal.devdocs.json @@ -35,6 +35,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/saved_objects_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -48,6 +49,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/saved_objects_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -61,6 +63,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/saved_objects_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -82,6 +85,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/saved_objects_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -95,6 +99,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/saved_objects_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -116,6 +121,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/saved_objects_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -129,6 +135,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/saved_objects_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -146,6 +153,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/saved_objects_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -168,6 +176,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/bulk_create.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -181,6 +190,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/bulk_create.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -195,6 +205,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/bulk_create.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -215,6 +226,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/bulk_get.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -228,6 +240,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/bulk_get.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -242,6 +255,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/bulk_get.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -262,6 +276,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/bulk_resolve.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -275,6 +290,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/bulk_resolve.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -289,6 +305,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/bulk_resolve.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -309,6 +326,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/bulk_update.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -322,6 +340,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/bulk_update.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -336,6 +355,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/bulk_update.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -356,6 +376,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/create.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -369,6 +390,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/create.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -383,6 +405,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/create.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -403,6 +426,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/delete.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -416,6 +440,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/delete.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -430,6 +455,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/delete.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -450,6 +476,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/deprecations/delete_unknown_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -463,6 +490,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/deprecations/delete_unknown_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -477,6 +505,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/deprecations/delete_unknown_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -497,6 +526,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/export.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -510,6 +540,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/export.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -524,6 +555,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/export.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -544,6 +576,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/find.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -557,6 +590,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/find.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -571,6 +605,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/find.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -591,6 +626,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/get.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -604,6 +640,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/get.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -618,6 +655,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/get.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -638,6 +676,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/import.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -651,6 +690,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/import.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -665,6 +705,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/import.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -689,6 +730,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/export.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -702,6 +744,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/export.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -713,6 +756,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/export.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -722,7 +766,8 @@ "label": "kibanaVersion", "description": [], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -735,7 +780,8 @@ "InternalCoreUsageDataSetup" ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -748,7 +794,8 @@ "Logger" ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/export.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -774,6 +821,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/import.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -787,6 +835,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/import.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -798,6 +847,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/import.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -807,7 +857,8 @@ "label": "maxImportPayloadBytes", "description": [], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/import.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -820,7 +871,8 @@ "InternalCoreUsageDataSetup" ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/import.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -833,7 +885,8 @@ "Logger" ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/legacy_import_export/import.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -857,6 +910,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/migrate.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -870,6 +924,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/migrate.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -886,6 +941,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/migrate.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -906,6 +962,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/resolve_import_errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -919,6 +976,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/resolve_import_errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -933,6 +991,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/resolve_import_errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -953,6 +1012,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/resolve.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -966,6 +1026,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/resolve.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -980,6 +1041,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/resolve.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1000,6 +1062,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/update.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-internal", @@ -1013,6 +1076,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/update.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1027,6 +1091,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/routes/update.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1049,6 +1114,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-internal/src/saved_objects_service.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_saved_objects_server_internal.mdx b/api_docs/kbn_core_saved_objects_server_internal.mdx index a079db4f12f55..f5b7858d33f53 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_saved_objects_server_mocks.devdocs.json index b5300ea9814a7..75554244f43ff 100644 --- a/api_docs/kbn_core_saved_objects_server_mocks.devdocs.json +++ b/api_docs/kbn_core_saved_objects_server_mocks.devdocs.json @@ -24,6 +24,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-server-mocks/src/saved_objects_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-server-mocks", @@ -37,6 +38,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-mocks/src/saved_objects_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -54,6 +56,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-mocks/src/saved_objects_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -71,6 +74,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-mocks/src/saved_objects_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -90,6 +94,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-mocks/src/saved_objects_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -105,7 +110,8 @@ "> | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server-mocks/src/saved_objects_service.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -125,6 +131,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-mocks/src/saved_objects_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -140,7 +147,8 @@ "> | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-server-mocks/src/saved_objects_service.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -158,6 +166,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-mocks/src/saved_objects_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -171,7 +180,8 @@ "{ migrationVersion?: string | undefined; convertToMultiNamespaceTypeVersion?: string | undefined; isSingleNamespaceType?: boolean | undefined; } | undefined" ], "path": "node_modules/@types/kbn__core-saved-objects-migration-server-mocks/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -191,6 +201,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-mocks/src/saved_objects_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -208,6 +219,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-mocks/src/saved_objects_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -225,6 +237,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-mocks/src/saved_objects_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -242,6 +255,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-server-mocks/src/saved_objects_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_saved_objects_server_mocks.mdx b/api_docs/kbn_core_saved_objects_server_mocks.mdx index e527c49a20b12..9d97b89c2f36c 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_saved_objects_utils_server.devdocs.json index c8f93a8055235..b8c138a99687f 100644 --- a/api_docs/kbn_core_saved_objects_utils_server.devdocs.json +++ b/api_docs/kbn_core_saved_objects_utils_server.devdocs.json @@ -19,6 +19,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -39,6 +40,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -52,6 +54,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -76,6 +79,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -89,6 +93,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -103,6 +108,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -127,6 +133,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -140,6 +147,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -164,6 +172,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -177,6 +186,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -202,6 +212,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -222,6 +233,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -246,6 +258,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -259,6 +272,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -284,6 +298,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -304,6 +319,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -328,6 +344,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -341,6 +358,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -355,6 +373,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -380,6 +399,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -400,6 +420,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -424,6 +445,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -437,6 +459,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -451,6 +474,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -476,6 +500,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -496,6 +521,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -520,6 +546,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -533,6 +560,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -547,6 +575,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -572,6 +601,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -592,6 +622,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -616,6 +647,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -629,6 +661,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -643,6 +676,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -667,6 +701,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -680,6 +715,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -704,6 +740,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -717,6 +754,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -731,6 +769,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -756,6 +795,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -776,6 +816,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -800,6 +841,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -813,6 +855,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -827,6 +870,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -851,6 +895,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -864,6 +909,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -878,6 +924,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -892,6 +939,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -917,6 +965,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -937,6 +986,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -961,6 +1011,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -974,6 +1025,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -988,6 +1040,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1012,6 +1065,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -1025,6 +1079,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1039,6 +1094,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1064,6 +1120,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -1084,6 +1141,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1108,6 +1166,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -1121,6 +1180,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1135,6 +1195,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1160,6 +1221,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -1180,6 +1242,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1204,6 +1267,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -1217,6 +1281,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1231,6 +1296,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1256,6 +1322,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -1276,6 +1343,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1300,6 +1368,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -1313,6 +1382,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1327,6 +1397,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1352,6 +1423,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -1372,6 +1444,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1396,6 +1469,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -1409,6 +1483,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1423,6 +1498,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1440,6 +1516,7 @@ "description": [], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -1455,6 +1532,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -1470,6 +1548,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1489,6 +1568,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -1504,6 +1584,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1527,6 +1608,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -1540,6 +1622,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1559,6 +1642,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1578,6 +1662,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -1593,6 +1678,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1612,6 +1698,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -1627,6 +1714,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1643,6 +1731,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1659,6 +1748,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1690,6 +1780,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/merge_migration_maps.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -1703,6 +1794,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/merge_migration_maps.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1717,6 +1809,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/merge_migration_maps.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1746,6 +1839,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-saved-objects-utils-server", @@ -1758,7 +1852,8 @@ "string | undefined" ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_error_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1778,6 +1873,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_utils.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1792,6 +1888,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_utils.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1806,6 +1903,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_utils.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1820,6 +1918,7 @@ ], "path": "packages/core/saved-objects/core-saved-objects-utils-server/src/saved_objects_utils.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_saved_objects_utils_server.mdx b/api_docs/kbn_core_saved_objects_utils_server.mdx index b38c05f678ca9..415cc81dd6cdc 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: 2022-09-05 +date: 2022-09-08 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_test_helpers_deprecations_getters.devdocs.json b/api_docs/kbn_core_test_helpers_deprecations_getters.devdocs.json index 05089cba7a7ba..625a82429f672 100644 --- a/api_docs/kbn_core_test_helpers_deprecations_getters.devdocs.json +++ b/api_docs/kbn_core_test_helpers_deprecations_getters.devdocs.json @@ -25,6 +25,7 @@ ], "path": "packages/core/test-helpers/core-test-helpers-deprecations-getters/src/deprecations_getters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-test-helpers-deprecations-getters", @@ -35,6 +36,7 @@ "description": [], "path": "packages/core/test-helpers/core-test-helpers-deprecations-getters/src/deprecations_getters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-test-helpers-deprecations-getters", @@ -52,6 +54,7 @@ ], "path": "packages/core/test-helpers/core-test-helpers-deprecations-getters/src/deprecations_getters.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -65,7 +68,8 @@ "ConfigDeprecationFactory" ], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -80,7 +84,8 @@ "Record | undefined" ], "path": "packages/core/test-helpers/core-test-helpers-deprecations-getters/src/deprecations_getters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-test-helpers-deprecations-getters", @@ -90,7 +95,8 @@ "label": "path", "description": [], "path": "packages/core/test-helpers/core-test-helpers-deprecations-getters/src/deprecations_getters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -112,6 +118,7 @@ ], "path": "packages/core/test-helpers/core-test-helpers-deprecations-getters/src/deprecations_getters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-test-helpers-deprecations-getters", @@ -122,6 +129,7 @@ "description": [], "path": "packages/core/test-helpers/core-test-helpers-deprecations-getters/src/deprecations_getters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-test-helpers-deprecations-getters", @@ -139,6 +147,7 @@ ], "path": "packages/core/test-helpers/core-test-helpers-deprecations-getters/src/deprecations_getters.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -152,7 +161,8 @@ "ConfigDeprecationFactory" ], "path": "node_modules/@types/kbn__config/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -167,7 +177,8 @@ "Record | undefined" ], "path": "packages/core/test-helpers/core-test-helpers-deprecations-getters/src/deprecations_getters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kbn_core_test_helpers_deprecations_getters.mdx b/api_docs/kbn_core_test_helpers_deprecations_getters.mdx index f4870e83a7bd0..aaf942ddf2b32 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: 2022-09-05 +date: 2022-09-08 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 477484917583d..f368f3a1b89b0 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 @@ -47,6 +47,7 @@ ], "path": "packages/core/test-helpers/core-test-helpers-http-setup-browser/src/http_test_setup.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-test-helpers-http-setup-browser", @@ -66,6 +67,7 @@ ], "path": "packages/core/test-helpers/core-test-helpers-http-setup-browser/src/http_test_setup.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -92,6 +94,7 @@ ], "path": "packages/core/test-helpers/core-test-helpers-http-setup-browser/src/http_test_setup.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -112,7 +115,8 @@ "InternalInjectedMetadataSetup" ], "path": "packages/core/test-helpers/core-test-helpers-http-setup-browser/src/http_test_setup.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-test-helpers-http-setup-browser", @@ -130,7 +134,8 @@ "FatalErrorsSetup" ], "path": "packages/core/test-helpers/core-test-helpers-http-setup-browser/src/http_test_setup.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false 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 7e1d9513f5925..83e3c09e6f322 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: 2022-09-05 +date: 2022-09-08 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_theme_browser.devdocs.json b/api_docs/kbn_core_theme_browser.devdocs.json index f5ef7d3cb967c..5df9c41bed591 100644 --- a/api_docs/kbn_core_theme_browser.devdocs.json +++ b/api_docs/kbn_core_theme_browser.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/core/theme/core-theme-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-theme-browser", @@ -42,7 +43,8 @@ "is dark mode enabled or not" ], "path": "packages/core/theme/core-theme-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -56,6 +58,7 @@ "description": [], "path": "packages/core/theme/core-theme-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-theme-browser", @@ -77,7 +80,8 @@ ">" ], "path": "packages/core/theme/core-theme-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -91,6 +95,7 @@ "description": [], "path": "packages/core/theme/core-theme-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-theme-browser", @@ -112,7 +117,8 @@ ">" ], "path": "packages/core/theme/core-theme-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_core_theme_browser.mdx b/api_docs/kbn_core_theme_browser.mdx index 77f61ecd7d1f2..62e874e46202f 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: 2022-09-05 +date: 2022-09-08 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_internal.devdocs.json b/api_docs/kbn_core_theme_browser_internal.devdocs.json index d1fdbd153181b..b3002e49c80b3 100644 --- a/api_docs/kbn_core_theme_browser_internal.devdocs.json +++ b/api_docs/kbn_core_theme_browser_internal.devdocs.json @@ -33,6 +33,7 @@ ], "path": "packages/core/theme/core-theme-browser-internal/src/core_context_provider.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-theme-browser-internal", @@ -46,6 +47,7 @@ ], "path": "packages/core/theme/core-theme-browser-internal/src/core_context_provider.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_core_theme_browser_internal.mdx b/api_docs/kbn_core_theme_browser_internal.mdx index 9306898d97e01..9537871eeff34 100644 --- a/api_docs/kbn_core_theme_browser_internal.mdx +++ b/api_docs/kbn_core_theme_browser_internal.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-core-theme-browser-internal title: "@kbn/core-theme-browser-internal" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/core-theme-browser-internal plugin -date: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-theme-browser-internal'] --- import kbnCoreThemeBrowserInternalObj from './kbn_core_theme_browser_internal.devdocs.json'; diff --git a/api_docs/kbn_core_theme_browser_mocks.devdocs.json b/api_docs/kbn_core_theme_browser_mocks.devdocs.json index 4a715b9a81a59..888d4b04303a2 100644 --- a/api_docs/kbn_core_theme_browser_mocks.devdocs.json +++ b/api_docs/kbn_core_theme_browser_mocks.devdocs.json @@ -32,6 +32,7 @@ "description": [], "path": "packages/core/theme/core-theme-browser-mocks/src/theme_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-theme-browser-mocks", @@ -45,6 +46,7 @@ ], "path": "packages/core/theme/core-theme-browser-mocks/src/theme_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -62,6 +64,7 @@ ], "path": "packages/core/theme/core-theme-browser-mocks/src/theme_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -79,6 +82,7 @@ ], "path": "packages/core/theme/core-theme-browser-mocks/src/theme_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -95,6 +99,7 @@ ], "path": "packages/core/theme/core-theme-browser-mocks/src/theme_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -114,6 +119,7 @@ ], "path": "packages/core/theme/core-theme-browser-mocks/src/theme_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_theme_browser_mocks.mdx b/api_docs/kbn_core_theme_browser_mocks.mdx index 88422e45883a9..beebf1fdcc401 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_ui_settings_browser.devdocs.json index 20f23615866bd..8a46c32c24978 100644 --- a/api_docs/kbn_core_ui_settings_browser.devdocs.json +++ b/api_docs/kbn_core_ui_settings_browser.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser", @@ -46,6 +47,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser", @@ -59,6 +61,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -73,6 +76,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -94,6 +98,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser", @@ -107,6 +112,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -121,6 +127,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -144,6 +151,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -161,6 +169,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser", @@ -174,6 +183,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -188,6 +198,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -207,6 +218,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser", @@ -220,6 +232,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -239,6 +252,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser", @@ -252,6 +266,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -271,6 +286,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser", @@ -284,6 +300,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -303,6 +320,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser", @@ -316,6 +334,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -335,6 +354,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser", @@ -348,6 +368,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -369,6 +390,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -388,6 +410,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -403,6 +426,7 @@ "description": [], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser", @@ -419,7 +443,8 @@ "" ], "path": "packages/core/ui-settings/core-ui-settings-browser/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_core_ui_settings_browser.mdx b/api_docs/kbn_core_ui_settings_browser.mdx index 5cc52e9379915..ef2df898310fa 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_ui_settings_browser_internal.devdocs.json index 3bf2fabb7e222..3d089bf821f4f 100644 --- a/api_docs/kbn_core_ui_settings_browser_internal.devdocs.json +++ b/api_docs/kbn_core_ui_settings_browser_internal.devdocs.json @@ -38,6 +38,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser-internal", @@ -51,6 +52,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser-internal", @@ -64,6 +66,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -85,6 +88,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -100,6 +104,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser-internal", @@ -113,6 +118,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -127,6 +133,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -146,6 +153,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser-internal", @@ -159,6 +167,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -173,6 +182,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -190,6 +200,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser-internal", @@ -203,6 +214,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -217,6 +229,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -234,6 +247,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser-internal", @@ -247,6 +261,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -264,6 +279,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser-internal", @@ -277,6 +293,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -294,6 +311,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser-internal", @@ -307,6 +325,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -324,6 +343,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser-internal", @@ -337,6 +357,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -354,6 +375,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser-internal", @@ -367,6 +389,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -386,6 +409,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -403,6 +427,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-internal/src/ui_settings_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } diff --git a/api_docs/kbn_core_ui_settings_browser_internal.mdx b/api_docs/kbn_core_ui_settings_browser_internal.mdx index f92eeb74596c7..09ed2bcd433de 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_ui_settings_browser_mocks.devdocs.json index c836e521e1e16..13108950725c0 100644 --- a/api_docs/kbn_core_ui_settings_browser_mocks.devdocs.json +++ b/api_docs/kbn_core_ui_settings_browser_mocks.devdocs.json @@ -32,6 +32,7 @@ "description": [], "path": "packages/core/ui-settings/core-ui-settings-browser-mocks/src/ui_settings_service.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-browser-mocks", @@ -45,6 +46,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-mocks/src/ui_settings_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -62,6 +64,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-mocks/src/ui_settings_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -79,6 +82,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-browser-mocks/src/ui_settings_service.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_core_ui_settings_browser_mocks.mdx b/api_docs/kbn_core_ui_settings_browser_mocks.mdx index 89a23ba867e2c..9a154dff10020 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: 2022-09-05 +date: 2022-09-08 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 f74eb88611721..6a5e89a290d41 100644 --- a/api_docs/kbn_core_ui_settings_common.devdocs.json +++ b/api_docs/kbn_core_ui_settings_common.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-common", @@ -42,7 +43,8 @@ "Deprecation message" ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-ui-settings-common", @@ -54,7 +56,8 @@ "Key to documentation links" ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -80,6 +83,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-common", @@ -94,7 +98,8 @@ "string | undefined" ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-ui-settings-common", @@ -109,7 +114,8 @@ "T | undefined" ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-ui-settings-common", @@ -124,7 +130,8 @@ "string | undefined" ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-ui-settings-common", @@ -139,7 +146,8 @@ "string[] | undefined" ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-ui-settings-common", @@ -154,7 +162,8 @@ "string[] | number[] | undefined" ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-ui-settings-common", @@ -169,7 +178,8 @@ "Record | undefined" ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-ui-settings-common", @@ -184,7 +194,8 @@ "boolean | undefined" ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-ui-settings-common", @@ -199,7 +210,8 @@ "boolean | undefined" ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-ui-settings-common", @@ -214,7 +226,8 @@ "boolean | undefined" ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-ui-settings-common", @@ -236,7 +249,8 @@ " | undefined" ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-ui-settings-common", @@ -258,7 +272,8 @@ " | undefined" ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-ui-settings-common", @@ -273,7 +288,8 @@ "number | undefined" ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-ui-settings-common", @@ -287,7 +303,8 @@ "" ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-ui-settings-common", @@ -305,6 +322,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", "deprecated": true, + "trackAdoption": false, "references": [] } ], @@ -331,6 +349,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-ui-settings-common", @@ -343,7 +362,8 @@ "T | undefined" ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-ui-settings-common", @@ -356,7 +376,8 @@ "boolean | undefined" ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -394,6 +415,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -410,6 +432,7 @@ ], "path": "packages/core/ui-settings/core-ui-settings-common/src/ui_settings.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_core_ui_settings_common.mdx b/api_docs/kbn_core_ui_settings_common.mdx index 32804e518a3ee..b49506a87cfaa 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-ui-settings-common'] --- import kbnCoreUiSettingsCommonObj from './kbn_core_ui_settings_common.devdocs.json'; diff --git a/api_docs/kbn_core_usage_data_server.devdocs.json b/api_docs/kbn_core_usage_data_server.devdocs.json index b35c04c622a0f..49517d65e5019 100644 --- a/api_docs/kbn_core_usage_data_server.devdocs.json +++ b/api_docs/kbn_core_usage_data_server.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_data.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-usage-data-server", @@ -35,7 +36,8 @@ "{ sniffOnStart: boolean; sniffIntervalMs?: number | undefined; sniffOnConnectionFault: boolean; numberOfHostsConfigured: number; requestHeadersWhitelistConfigured: boolean; customHeadersConfigured: boolean; shardTimeoutMs: number; requestTimeoutMs: number; pingTimeoutMs: number; logQueries: boolean; ssl: { verificationMode: \"none\" | \"full\" | \"certificate\"; certificateAuthoritiesConfigured: boolean; certificateConfigured: boolean; keyConfigured: boolean; keystoreConfigured: boolean; truststoreConfigured: boolean; alwaysPresentCertificate: boolean; }; apiVersion: string; healthCheckDelayMs: number; principal: \"unknown\" | \"elastic_user\" | \"kibana_user\" | \"kibana_system_user\" | \"other_user\" | \"kibana_service_account\"; }" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_data.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -48,7 +50,8 @@ "{ basePathConfigured: boolean; maxPayloadInBytes: number; rewriteBasePath: boolean; keepaliveTimeout: number; socketTimeout: number; compression: { enabled: boolean; referrerWhitelistConfigured: boolean; }; xsrf: { disableProtection: boolean; allowlistConfigured: boolean; }; requestId: { allowFromAnyIp: boolean; ipAllowlistConfigured: boolean; }; ssl: { certificateAuthoritiesConfigured: boolean; certificateConfigured: boolean; cipherSuites: string[]; keyConfigured: boolean; keystoreConfigured: boolean; truststoreConfigured: boolean; redirectHttpFromPortConfigured: boolean; supportedProtocols: string[]; clientAuthentication: \"optional\" | \"none\" | \"required\"; }; securityResponseHeaders: { strictTransportSecurity: string; xContentTypeOptions: string; referrerPolicy: string; permissionsPolicyConfigured: boolean; disableEmbedding: boolean; }; }" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_data.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -61,7 +64,8 @@ "{ appendersTypesUsed: string[]; loggersConfiguredCount: number; }" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_data.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -74,7 +78,8 @@ "{ customIndex: boolean; maxImportPayloadBytes: number; maxImportExportSize: number; }" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_data.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -87,7 +92,8 @@ "{ set: string[]; unset: string[]; }" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_data.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -103,6 +109,7 @@ ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_data.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-usage-data-server", @@ -115,7 +122,8 @@ "{ heapTotalBytes: number; heapUsedBytes: number; heapSizeLimit: number; }" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_data.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -129,6 +137,7 @@ "description": [], "path": "packages/core/usage-data/core-usage-data-server/src/setup_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-usage-data-server", @@ -140,7 +149,8 @@ "The name of the counter" ], "path": "packages/core/usage-data/core-usage-data-server/src/setup_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -155,7 +165,8 @@ "string | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/setup_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -170,7 +181,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/setup_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -186,6 +198,7 @@ ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_data.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-usage-data-server", @@ -198,7 +211,8 @@ "{ indices: { alias: string; docsCount: number; docsDeleted: number; storeSizeBytes: number; primaryStoreSizeBytes: number; savedObjectsDocsCount: number; }[]; legacyUrlAliases: { activeCount: number; inactiveCount: number; disabledCount: number; totalCount: number; }; }" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_data.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -212,6 +226,7 @@ "description": [], "path": "packages/core/usage-data/core-usage-data-server/src/setup_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false }, @@ -243,6 +258,7 @@ ], "path": "packages/core/usage-data/core-usage-data-server/src/start_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-usage-data-server", @@ -261,7 +277,8 @@ } ], "path": "packages/core/usage-data/core-usage-data-server/src/start_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -280,7 +297,8 @@ } ], "path": "packages/core/usage-data/core-usage-data-server/src/start_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -299,7 +317,8 @@ } ], "path": "packages/core/usage-data/core-usage-data-server/src/start_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -317,6 +336,7 @@ ], "path": "packages/core/usage-data/core-usage-data-server/src/setup_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-usage-data-server", @@ -340,6 +360,7 @@ ], "path": "packages/core/usage-data/core-usage-data-server/src/setup_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-usage-data-server", @@ -359,6 +380,7 @@ ], "path": "packages/core/usage-data/core-usage-data-server/src/setup_contract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -380,6 +402,7 @@ ], "path": "packages/core/usage-data/core-usage-data-server/src/start_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-usage-data-server", @@ -401,6 +424,7 @@ ], "path": "packages/core/usage-data/core-usage-data-server/src/start_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -416,6 +440,7 @@ "description": [], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/core-usage-data-server", @@ -428,7 +453,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -441,7 +467,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -454,7 +481,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -467,7 +495,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -480,7 +509,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -493,7 +523,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -506,7 +537,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -519,7 +551,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -532,7 +565,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -545,7 +579,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -558,7 +593,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -571,7 +607,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -584,7 +621,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -597,7 +635,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -610,7 +649,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -623,7 +663,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -636,7 +677,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -649,7 +691,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -662,7 +705,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -675,7 +719,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -688,7 +733,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -701,7 +747,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -714,7 +761,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -727,7 +775,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -740,7 +789,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -753,7 +803,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -766,7 +817,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -779,7 +831,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -792,7 +845,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -805,7 +859,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -818,7 +873,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -831,7 +887,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -844,7 +901,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -857,7 +915,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -870,7 +929,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -883,7 +943,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -896,7 +957,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -909,7 +971,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -922,7 +985,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -935,7 +999,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -948,7 +1013,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -961,7 +1027,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -974,7 +1041,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -987,7 +1055,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1000,7 +1069,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1013,7 +1083,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1026,7 +1097,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1039,7 +1111,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1052,7 +1125,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1065,7 +1139,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1078,7 +1153,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1091,7 +1167,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1104,7 +1181,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1117,7 +1195,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1130,7 +1209,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1143,7 +1223,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1156,7 +1237,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1169,7 +1251,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1182,7 +1265,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1195,7 +1279,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1208,7 +1293,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1221,7 +1307,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1234,7 +1321,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1247,7 +1335,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1260,7 +1349,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1273,7 +1363,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1286,7 +1377,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1299,7 +1391,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1312,7 +1405,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1325,7 +1419,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1338,7 +1433,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1351,7 +1447,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1364,7 +1461,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1377,7 +1475,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1390,7 +1489,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1403,7 +1503,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1416,7 +1517,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1429,7 +1531,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1442,7 +1545,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1455,7 +1559,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1468,7 +1573,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1481,7 +1587,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1494,7 +1601,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1507,7 +1615,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1520,7 +1629,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1533,7 +1643,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1546,7 +1657,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1559,7 +1671,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1572,7 +1685,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1585,7 +1699,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1598,7 +1713,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1611,7 +1727,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1624,7 +1741,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1637,7 +1755,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1650,7 +1769,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1663,7 +1783,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1676,7 +1797,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1689,7 +1811,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1702,7 +1825,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1715,7 +1839,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1728,7 +1853,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1741,7 +1867,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1754,7 +1881,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1767,7 +1895,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1780,7 +1909,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1793,7 +1923,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1806,7 +1937,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1819,7 +1951,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1832,7 +1965,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1845,7 +1979,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1858,7 +1993,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1871,7 +2007,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1884,7 +2021,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1897,7 +2035,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1910,7 +2049,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1923,7 +2063,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1936,7 +2077,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/core-usage-data-server", @@ -1949,7 +2091,8 @@ "number | undefined" ], "path": "packages/core/usage-data/core-usage-data-server/src/core_usage_stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1971,6 +2114,7 @@ ], "path": "packages/core/usage-data/core-usage-data-server/src/start_contract.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1993,6 +2137,7 @@ ], "path": "packages/core/usage-data/core-usage-data-server/src/setup_contract.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2012,7 +2157,8 @@ } ], "path": "packages/core/usage-data/core-usage-data-server/src/setup_contract.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_core_usage_data_server.mdx b/api_docs/kbn_core_usage_data_server.mdx index eebe7a2022bdf..d2da3e366390d 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_core_usage_data_server_internal.devdocs.json new file mode 100644 index 0000000000000..9673e8514d67a --- /dev/null +++ b/api_docs/kbn_core_usage_data_server_internal.devdocs.json @@ -0,0 +1,179 @@ +{ + "id": "@kbn/core-usage-data-server-internal", + "client": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [], + "objects": [] + }, + "server": { + "classes": [ + { + "parentPluginId": "@kbn/core-usage-data-server-internal", + "id": "def-server.CoreUsageDataService", + "type": "Class", + "tags": [], + "label": "CoreUsageDataService", + "description": [], + "signature": [ + { + "pluginId": "@kbn/core-usage-data-server-internal", + "scope": "server", + "docId": "kibKbnCoreUsageDataServerInternalPluginApi", + "section": "def-server.CoreUsageDataService", + "text": "CoreUsageDataService" + }, + " implements ", + "CoreService", + "<", + "InternalCoreUsageDataSetup", + ", ", + "CoreUsageDataStart", + ">" + ], + "path": "packages/core/usage-data/core-usage-data-server-internal/src/core_usage_data_service.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/core-usage-data-server-internal", + "id": "def-server.CoreUsageDataService.Unnamed", + "type": "Function", + "tags": [], + "label": "Constructor", + "description": [], + "signature": [ + "any" + ], + "path": "packages/core/usage-data/core-usage-data-server-internal/src/core_usage_data_service.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/core-usage-data-server-internal", + "id": "def-server.CoreUsageDataService.Unnamed.$1", + "type": "Object", + "tags": [], + "label": "core", + "description": [], + "signature": [ + "CoreContext" + ], + "path": "packages/core/usage-data/core-usage-data-server-internal/src/core_usage_data_service.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "@kbn/core-usage-data-server-internal", + "id": "def-server.CoreUsageDataService.setup", + "type": "Function", + "tags": [], + "label": "setup", + "description": [], + "signature": [ + "({ http, metrics, savedObjectsStartPromise, changedDeprecatedConfigPath$ }: ", + "SetupDeps", + ") => ", + "InternalCoreUsageDataSetup" + ], + "path": "packages/core/usage-data/core-usage-data-server-internal/src/core_usage_data_service.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/core-usage-data-server-internal", + "id": "def-server.CoreUsageDataService.setup.$1", + "type": "Object", + "tags": [], + "label": "{ http, metrics, savedObjectsStartPromise, changedDeprecatedConfigPath$ }", + "description": [], + "signature": [ + "SetupDeps" + ], + "path": "packages/core/usage-data/core-usage-data-server-internal/src/core_usage_data_service.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "@kbn/core-usage-data-server-internal", + "id": "def-server.CoreUsageDataService.start", + "type": "Function", + "tags": [], + "label": "start", + "description": [], + "signature": [ + "({ savedObjects, elasticsearch, exposedConfigsToUsage }: ", + "StartDeps", + ") => { getCoreUsageData: () => Promise<", + "CoreUsageData", + ">; getConfigsUsageData: () => Promise<", + "ConfigUsageData", + ">; }" + ], + "path": "packages/core/usage-data/core-usage-data-server-internal/src/core_usage_data_service.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/core-usage-data-server-internal", + "id": "def-server.CoreUsageDataService.start.$1", + "type": "Object", + "tags": [], + "label": "{ savedObjects, elasticsearch, exposedConfigsToUsage }", + "description": [], + "signature": [ + "StartDeps" + ], + "path": "packages/core/usage-data/core-usage-data-server-internal/src/core_usage_data_service.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "@kbn/core-usage-data-server-internal", + "id": "def-server.CoreUsageDataService.stop", + "type": "Function", + "tags": [], + "label": "stop", + "description": [], + "signature": [ + "() => void" + ], + "path": "packages/core/usage-data/core-usage-data-server-internal/src/core_usage_data_service.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [] + } + ], + "initialIsOpen": false + } + ], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [], + "objects": [] + }, + "common": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [], + "objects": [] + } +} \ No newline at end of file diff --git a/api_docs/kbn_core_usage_data_server_internal.mdx b/api_docs/kbn_core_usage_data_server_internal.mdx new file mode 100644 index 0000000000000..81d238bf3469e --- /dev/null +++ b/api_docs/kbn_core_usage_data_server_internal.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: kibKbnCoreUsageDataServerInternalPluginApi +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: 2022-09-08 +tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-usage-data-server-internal'] +--- +import kbnCoreUsageDataServerInternalObj from './kbn_core_usage_data_server_internal.devdocs.json'; + + + +Contact Kibana Core for questions regarding this plugin. + +**Code health stats** + +| Public API count | Any count | Items lacking comments | Missing exports | +|-------------------|-----------|------------------------|-----------------| +| 8 | 0 | 8 | 2 | + +## Server + +### Classes + + diff --git a/api_docs/kbn_core_usage_data_server_mocks.devdocs.json b/api_docs/kbn_core_usage_data_server_mocks.devdocs.json new file mode 100644 index 0000000000000..20f3ce6d5b306 --- /dev/null +++ b/api_docs/kbn_core_usage_data_server_mocks.devdocs.json @@ -0,0 +1,180 @@ +{ + "id": "@kbn/core-usage-data-server-mocks", + "client": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [], + "objects": [] + }, + "server": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [], + "objects": [ + { + "parentPluginId": "@kbn/core-usage-data-server-mocks", + "id": "def-server.coreUsageDataServiceMock", + "type": "Object", + "tags": [], + "label": "coreUsageDataServiceMock", + "description": [], + "path": "packages/core/usage-data/core-usage-data-server-mocks/src/core_usage_data_service.mock.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/core-usage-data-server-mocks", + "id": "def-server.coreUsageDataServiceMock.create", + "type": "Function", + "tags": [], + "label": "create", + "description": [], + "signature": [ + "() => jest.Mocked<", + "PublicMethodsOf", + "<", + "CoreUsageDataService", + ">>" + ], + "path": "packages/core/usage-data/core-usage-data-server-mocks/src/core_usage_data_service.mock.ts", + "deprecated": false, + "trackAdoption": false, + "returnComment": [], + "children": [] + }, + { + "parentPluginId": "@kbn/core-usage-data-server-mocks", + "id": "def-server.coreUsageDataServiceMock.createSetupContract", + "type": "Function", + "tags": [], + "label": "createSetupContract", + "description": [], + "signature": [ + "(usageStatsClient?: jest.Mocked<", + "ICoreUsageStatsClient", + ">) => jest.Mocked<", + "InternalCoreUsageDataSetup", + ">" + ], + "path": "packages/core/usage-data/core-usage-data-server-mocks/src/core_usage_data_service.mock.ts", + "deprecated": false, + "trackAdoption": false, + "returnComment": [], + "children": [ + { + "parentPluginId": "@kbn/core-usage-data-server-mocks", + "id": "def-server.coreUsageDataServiceMock.createSetupContract.$1", + "type": "CompoundType", + "tags": [], + "label": "usageStatsClient", + "description": [], + "signature": [ + "{ getUsageStats: jest.MockInstance, []>; incrementSavedObjectsBulkCreate: jest.MockInstance, [options: ", + "BaseIncrementOptions", + "]>; incrementSavedObjectsBulkGet: jest.MockInstance, [options: ", + "BaseIncrementOptions", + "]>; incrementSavedObjectsBulkResolve: jest.MockInstance, [options: ", + "BaseIncrementOptions", + "]>; incrementSavedObjectsBulkUpdate: jest.MockInstance, [options: ", + "BaseIncrementOptions", + "]>; incrementSavedObjectsCreate: jest.MockInstance, [options: ", + "BaseIncrementOptions", + "]>; incrementSavedObjectsDelete: jest.MockInstance, [options: ", + "BaseIncrementOptions", + "]>; incrementSavedObjectsFind: jest.MockInstance, [options: ", + "BaseIncrementOptions", + "]>; incrementSavedObjectsGet: jest.MockInstance, [options: ", + "BaseIncrementOptions", + "]>; incrementSavedObjectsResolve: jest.MockInstance, [options: ", + "BaseIncrementOptions", + "]>; incrementSavedObjectsUpdate: jest.MockInstance, [options: ", + "BaseIncrementOptions", + "]>; incrementSavedObjectsImport: jest.MockInstance, [options: ", + "IncrementSavedObjectsImportOptions", + "]>; incrementSavedObjectsResolveImportErrors: jest.MockInstance, [options: ", + "IncrementSavedObjectsResolveImportErrorsOptions", + "]>; incrementSavedObjectsExport: jest.MockInstance, [options: ", + "IncrementSavedObjectsExportOptions", + "]>; incrementLegacyDashboardsImport: jest.MockInstance, [options: ", + "BaseIncrementOptions", + "]>; incrementLegacyDashboardsExport: jest.MockInstance, [options: ", + "BaseIncrementOptions", + "]>; } & ", + "ICoreUsageStatsClient" + ], + "path": "packages/core/usage-data/core-usage-data-server-mocks/src/core_usage_data_service.mock.ts", + "deprecated": false, + "trackAdoption": false + } + ] + }, + { + "parentPluginId": "@kbn/core-usage-data-server-mocks", + "id": "def-server.coreUsageDataServiceMock.createStartContract", + "type": "Function", + "tags": [], + "label": "createStartContract", + "description": [], + "signature": [ + "() => jest.Mocked<", + "CoreUsageDataStart", + ">" + ], + "path": "packages/core/usage-data/core-usage-data-server-mocks/src/core_usage_data_service.mock.ts", + "deprecated": false, + "trackAdoption": false, + "returnComment": [], + "children": [] + } + ], + "initialIsOpen": false + }, + { + "parentPluginId": "@kbn/core-usage-data-server-mocks", + "id": "def-server.coreUsageStatsClientMock", + "type": "Object", + "tags": [], + "label": "coreUsageStatsClientMock", + "description": [], + "path": "packages/core/usage-data/core-usage-data-server-mocks/src/core_usage_stats_client.mock.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/core-usage-data-server-mocks", + "id": "def-server.coreUsageStatsClientMock.create", + "type": "Function", + "tags": [], + "label": "create", + "description": [], + "signature": [ + "() => jest.Mocked<", + "ICoreUsageStatsClient", + ">" + ], + "path": "packages/core/usage-data/core-usage-data-server-mocks/src/core_usage_stats_client.mock.ts", + "deprecated": false, + "trackAdoption": false, + "returnComment": [], + "children": [] + } + ], + "initialIsOpen": false + } + ] + }, + "common": { + "classes": [], + "functions": [], + "interfaces": [], + "enums": [], + "misc": [], + "objects": [] + } +} \ No newline at end of file diff --git a/api_docs/kbn_core_usage_data_server_mocks.mdx b/api_docs/kbn_core_usage_data_server_mocks.mdx new file mode 100644 index 0000000000000..0a453d4f36607 --- /dev/null +++ b/api_docs/kbn_core_usage_data_server_mocks.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: kibKbnCoreUsageDataServerMocksPluginApi +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: 2022-09-08 +tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/core-usage-data-server-mocks'] +--- +import kbnCoreUsageDataServerMocksObj from './kbn_core_usage_data_server_mocks.devdocs.json'; + + + +Contact Kibana Core for questions regarding this plugin. + +**Code health stats** + +| Public API count | Any count | Items lacking comments | Missing exports | +|-------------------|-----------|------------------------|-----------------| +| 7 | 0 | 7 | 0 | + +## Server + +### Objects + + diff --git a/api_docs/kbn_crypto.devdocs.json b/api_docs/kbn_crypto.devdocs.json index 06ba197514855..7c7690ea36fbf 100644 --- a/api_docs/kbn_crypto.devdocs.json +++ b/api_docs/kbn_crypto.devdocs.json @@ -25,6 +25,7 @@ ], "path": "packages/kbn-crypto/src/sha256.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/crypto", @@ -38,6 +39,7 @@ ], "path": "packages/kbn-crypto/src/sha256.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -52,6 +54,7 @@ ], "path": "packages/kbn-crypto/src/sha256.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -81,6 +84,7 @@ ], "path": "packages/kbn-crypto/src/pkcs12.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/crypto", @@ -96,6 +100,7 @@ ], "path": "packages/kbn-crypto/src/pkcs12.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -112,6 +117,7 @@ ], "path": "packages/kbn-crypto/src/pkcs12.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -134,6 +140,7 @@ ], "path": "packages/kbn-crypto/src/pkcs12.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/crypto", @@ -149,6 +156,7 @@ ], "path": "packages/kbn-crypto/src/pkcs12.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -165,6 +173,7 @@ ], "path": "packages/kbn-crypto/src/pkcs12.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -184,6 +193,7 @@ "description": [], "path": "packages/kbn-crypto/src/pkcs12.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/crypto", @@ -196,7 +206,8 @@ "string[] | undefined" ], "path": "packages/kbn-crypto/src/pkcs12.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/crypto", @@ -209,7 +220,8 @@ "string | undefined" ], "path": "packages/kbn-crypto/src/pkcs12.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/crypto", @@ -222,7 +234,8 @@ "string | undefined" ], "path": "packages/kbn-crypto/src/pkcs12.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_crypto.mdx b/api_docs/kbn_crypto.mdx index 2080716063487..ceca8f916777d 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/crypto'] --- import kbnCryptoObj from './kbn_crypto.devdocs.json'; diff --git a/api_docs/kbn_crypto_browser.devdocs.json b/api_docs/kbn_crypto_browser.devdocs.json index c35710c489d65..957697ef29a31 100644 --- a/api_docs/kbn_crypto_browser.devdocs.json +++ b/api_docs/kbn_crypto_browser.devdocs.json @@ -27,6 +27,7 @@ "description": [], "path": "packages/kbn-crypto-browser/src/sha256.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/crypto-browser", @@ -40,6 +41,7 @@ ], "path": "packages/kbn-crypto-browser/src/sha256.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -62,6 +64,7 @@ ], "path": "packages/kbn-crypto-browser/src/sha256.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/crypto-browser", @@ -75,6 +78,7 @@ ], "path": "packages/kbn-crypto-browser/src/sha256.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -89,6 +93,7 @@ ], "path": "packages/kbn-crypto-browser/src/sha256.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -106,6 +111,7 @@ ], "path": "packages/kbn-crypto-browser/src/sha256.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/crypto-browser", @@ -119,6 +125,7 @@ ], "path": "packages/kbn-crypto-browser/src/sha256.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -136,6 +143,7 @@ ], "path": "packages/kbn-crypto-browser/src/sha256.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/crypto-browser", @@ -149,6 +157,7 @@ ], "path": "packages/kbn-crypto-browser/src/sha256.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -166,6 +175,7 @@ ], "path": "packages/kbn-crypto-browser/src/sha256.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } diff --git a/api_docs/kbn_crypto_browser.mdx b/api_docs/kbn_crypto_browser.mdx index 89c7bfb6074e2..5c73a9981b76c 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/crypto-browser'] --- import kbnCryptoBrowserObj from './kbn_crypto_browser.devdocs.json'; diff --git a/api_docs/kbn_datemath.devdocs.json b/api_docs/kbn_datemath.devdocs.json index 93d9e94d4646d..bc344a7156a16 100644 --- a/api_docs/kbn_datemath.devdocs.json +++ b/api_docs/kbn_datemath.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/kbn-datemath/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/datemath", @@ -36,6 +37,7 @@ ], "path": "packages/kbn-datemath/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -47,6 +49,7 @@ "description": [], "path": "packages/kbn-datemath/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/datemath", @@ -59,7 +62,8 @@ "boolean | undefined" ], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/datemath", @@ -72,7 +76,8 @@ "typeof moment | undefined" ], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/datemath", @@ -85,7 +90,8 @@ "Date | undefined" ], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -109,6 +115,7 @@ ], "path": "packages/kbn-datemath/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -130,6 +137,7 @@ ], "path": "packages/kbn-datemath/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -151,6 +159,7 @@ ], "path": "packages/kbn-datemath/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -172,6 +181,7 @@ ], "path": "packages/kbn-datemath/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -186,6 +196,7 @@ ], "path": "packages/kbn-datemath/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -199,6 +210,7 @@ "description": [], "path": "packages/kbn-datemath/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/datemath", @@ -209,6 +221,7 @@ "description": [], "path": "packages/kbn-datemath/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/datemath", @@ -218,7 +231,8 @@ "label": "weight", "description": [], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/datemath", @@ -231,7 +245,8 @@ "\"fixed\"" ], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/datemath", @@ -241,7 +256,8 @@ "label": "base", "description": [], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -254,6 +270,7 @@ "description": [], "path": "packages/kbn-datemath/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/datemath", @@ -263,7 +280,8 @@ "label": "weight", "description": [], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/datemath", @@ -276,7 +294,8 @@ "\"fixed\"" ], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/datemath", @@ -286,7 +305,8 @@ "label": "base", "description": [], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -299,6 +319,7 @@ "description": [], "path": "packages/kbn-datemath/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/datemath", @@ -308,7 +329,8 @@ "label": "weight", "description": [], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/datemath", @@ -321,7 +343,8 @@ "\"mixed\"" ], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/datemath", @@ -331,7 +354,8 @@ "label": "base", "description": [], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -344,6 +368,7 @@ "description": [], "path": "packages/kbn-datemath/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/datemath", @@ -353,7 +378,8 @@ "label": "weight", "description": [], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/datemath", @@ -366,7 +392,8 @@ "\"mixed\"" ], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/datemath", @@ -376,7 +403,8 @@ "label": "base", "description": [], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -389,6 +417,7 @@ "description": [], "path": "packages/kbn-datemath/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/datemath", @@ -398,7 +427,8 @@ "label": "weight", "description": [], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/datemath", @@ -411,7 +441,8 @@ "\"mixed\"" ], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/datemath", @@ -421,7 +452,8 @@ "label": "base", "description": [], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -434,6 +466,7 @@ "description": [], "path": "packages/kbn-datemath/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/datemath", @@ -443,7 +476,8 @@ "label": "weight", "description": [], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/datemath", @@ -456,7 +490,8 @@ "\"calendar\"" ], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/datemath", @@ -466,7 +501,8 @@ "label": "base", "description": [], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -479,6 +515,7 @@ "description": [], "path": "packages/kbn-datemath/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/datemath", @@ -488,7 +525,8 @@ "label": "weight", "description": [], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/datemath", @@ -501,7 +539,8 @@ "\"calendar\"" ], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/datemath", @@ -511,7 +550,8 @@ "label": "base", "description": [], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -526,6 +566,7 @@ ], "path": "packages/kbn-datemath/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/datemath", @@ -535,7 +576,8 @@ "label": "weight", "description": [], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/datemath", @@ -548,7 +590,8 @@ "\"calendar\"" ], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/datemath", @@ -558,7 +601,8 @@ "label": "base", "description": [], "path": "packages/kbn-datemath/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kbn_datemath.mdx b/api_docs/kbn_datemath.mdx index 4886547d2eba9..cc1aaa0a7f76a 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/datemath'] --- import kbnDatemathObj from './kbn_datemath.devdocs.json'; diff --git a/api_docs/kbn_dev_cli_errors.devdocs.json b/api_docs/kbn_dev_cli_errors.devdocs.json index df3e10099f15f..62b97f47f703a 100644 --- a/api_docs/kbn_dev_cli_errors.devdocs.json +++ b/api_docs/kbn_dev_cli_errors.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/kbn-dev-cli-errors/src/dev_cli_errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-cli-errors", @@ -36,6 +37,7 @@ ], "path": "packages/kbn-dev-cli-errors/src/dev_cli_errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -54,6 +56,7 @@ ], "path": "packages/kbn-dev-cli-errors/src/dev_cli_errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-cli-errors", @@ -67,6 +70,7 @@ ], "path": "packages/kbn-dev-cli-errors/src/dev_cli_errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -81,6 +85,7 @@ ], "path": "packages/kbn-dev-cli-errors/src/dev_cli_errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -99,6 +104,7 @@ ], "path": "packages/kbn-dev-cli-errors/src/dev_cli_errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-cli-errors", @@ -112,6 +118,7 @@ ], "path": "packages/kbn-dev-cli-errors/src/dev_cli_errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -130,6 +137,7 @@ ], "path": "packages/kbn-dev-cli-errors/src/dev_cli_errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-cli-errors", @@ -143,6 +151,7 @@ ], "path": "packages/kbn-dev-cli-errors/src/dev_cli_errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_dev_cli_errors.mdx b/api_docs/kbn_dev_cli_errors.mdx index 1696ba58be6d6..53170339b30df 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_dev_cli_runner.devdocs.json index cb449481aaf1b..b5aa6f1375735 100644 --- a/api_docs/kbn_dev_cli_runner.devdocs.json +++ b/api_docs/kbn_dev_cli_runner.devdocs.json @@ -29,6 +29,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-cli-runner", @@ -42,6 +43,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-cli-runner", @@ -62,6 +64,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -83,6 +86,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -116,6 +120,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-cli-runner", @@ -136,6 +141,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -153,6 +159,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -188,6 +195,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/flags.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-cli-runner", @@ -201,6 +209,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/flags.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -222,6 +231,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/flags.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -236,6 +246,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/flags.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -277,6 +288,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/flags.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-cli-runner", @@ -296,6 +308,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/flags.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -316,6 +329,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/flags.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -350,6 +364,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/run.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-cli-runner", @@ -369,6 +384,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/run.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -389,6 +405,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/run.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -416,6 +433,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-cli-runner", @@ -425,7 +443,8 @@ "label": "name", "description": [], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -447,6 +466,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -467,7 +487,8 @@ " & T" ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -482,7 +503,8 @@ "string | undefined" ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -495,7 +517,8 @@ "string | undefined" ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -515,7 +538,8 @@ " | undefined" ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -529,6 +553,7 @@ "description": [], "path": "packages/kbn-dev-cli-runner/src/flags.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-cli-runner", @@ -541,7 +566,8 @@ "boolean | undefined" ], "path": "packages/kbn-dev-cli-runner/src/flags.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -554,7 +580,8 @@ "boolean | undefined" ], "path": "packages/kbn-dev-cli-runner/src/flags.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -567,7 +594,8 @@ "string | undefined" ], "path": "packages/kbn-dev-cli-runner/src/flags.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -580,7 +608,8 @@ "{ [key: string]: string | string[]; } | undefined" ], "path": "packages/kbn-dev-cli-runner/src/flags.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -593,7 +622,8 @@ "string[] | undefined" ], "path": "packages/kbn-dev-cli-runner/src/flags.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -606,7 +636,8 @@ "string[] | undefined" ], "path": "packages/kbn-dev-cli-runner/src/flags.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -619,7 +650,8 @@ "{ [key: string]: any; } | undefined" ], "path": "packages/kbn-dev-cli-runner/src/flags.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -633,6 +665,7 @@ "description": [], "path": "packages/kbn-dev-cli-runner/src/flags.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-cli-runner", @@ -642,7 +675,8 @@ "label": "verbose", "description": [], "path": "packages/kbn-dev-cli-runner/src/flags.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -652,7 +686,8 @@ "label": "quiet", "description": [], "path": "packages/kbn-dev-cli-runner/src/flags.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -662,7 +697,8 @@ "label": "silent", "description": [], "path": "packages/kbn-dev-cli-runner/src/flags.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -672,7 +708,8 @@ "label": "debug", "description": [], "path": "packages/kbn-dev-cli-runner/src/flags.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -682,7 +719,8 @@ "label": "help", "description": [], "path": "packages/kbn-dev-cli-runner/src/flags.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -695,7 +733,8 @@ "string[]" ], "path": "packages/kbn-dev-cli-runner/src/flags.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -708,7 +747,8 @@ "string[]" ], "path": "packages/kbn-dev-cli-runner/src/flags.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -721,7 +761,8 @@ "[key: string]: string | boolean | string[] | undefined" ], "path": "packages/kbn-dev-cli-runner/src/flags.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -735,6 +776,7 @@ "description": [], "path": "packages/kbn-dev-cli-runner/src/run.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-cli-runner", @@ -747,7 +789,8 @@ "ToolingLog" ], "path": "packages/kbn-dev-cli-runner/src/run.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -766,7 +809,8 @@ } ], "path": "packages/kbn-dev-cli-runner/src/run.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -779,7 +823,8 @@ "ProcRunner" ], "path": "packages/kbn-dev-cli-runner/src/run.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -792,7 +837,8 @@ "Map" ], "path": "packages/kbn-dev-cli-runner/src/run.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -814,6 +860,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/run.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-cli-runner", @@ -833,6 +880,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/run.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -850,6 +898,7 @@ "description": [], "path": "packages/kbn-dev-cli-runner/src/run.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-cli-runner", @@ -862,7 +911,8 @@ "string | undefined" ], "path": "packages/kbn-dev-cli-runner/src/run.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -875,7 +925,8 @@ "string | undefined" ], "path": "packages/kbn-dev-cli-runner/src/run.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -888,7 +939,8 @@ "{ defaultLevel?: \"error\" | \"warning\" | \"success\" | \"info\" | \"debug\" | \"silent\" | \"verbose\" | undefined; } | undefined" ], "path": "packages/kbn-dev-cli-runner/src/run.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -908,7 +960,8 @@ " | undefined" ], "path": "packages/kbn-dev-cli-runner/src/run.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -932,6 +985,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-cli-runner", @@ -944,7 +998,8 @@ "{ defaultLevel?: \"error\" | \"warning\" | \"success\" | \"info\" | \"debug\" | \"silent\" | \"verbose\" | undefined; } | undefined" ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -957,7 +1012,8 @@ "string | undefined" ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -970,7 +1026,8 @@ "string | undefined" ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -990,7 +1047,8 @@ " | undefined" ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/dev-cli-runner", @@ -1012,6 +1070,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-cli-runner", @@ -1031,6 +1090,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1056,6 +1116,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/cleanup.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -1080,6 +1141,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1100,7 +1162,8 @@ " & T" ], "path": "packages/kbn-dev-cli-runner/src/run_with_commands.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1125,6 +1188,7 @@ ], "path": "packages/kbn-dev-cli-runner/src/run.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1144,7 +1208,8 @@ } ], "path": "packages/kbn-dev-cli-runner/src/run.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_dev_cli_runner.mdx b/api_docs/kbn_dev_cli_runner.mdx index b04f764deb1fb..c9ba13f62781d 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_dev_proc_runner.devdocs.json index 875359f3f36d9..614ee960a9726 100644 --- a/api_docs/kbn_dev_proc_runner.devdocs.json +++ b/api_docs/kbn_dev_proc_runner.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/kbn-dev-proc-runner/src/proc_runner.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-proc-runner", @@ -36,6 +37,7 @@ ], "path": "packages/kbn-dev-proc-runner/src/proc_runner.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-proc-runner", @@ -49,6 +51,7 @@ ], "path": "packages/kbn-dev-proc-runner/src/proc_runner.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -68,6 +71,7 @@ ], "path": "packages/kbn-dev-proc-runner/src/proc_runner.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-proc-runner", @@ -81,6 +85,7 @@ ], "path": "packages/kbn-dev-proc-runner/src/proc_runner.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -95,6 +100,7 @@ ], "path": "packages/kbn-dev-proc-runner/src/proc_runner.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -114,6 +120,7 @@ ], "path": "packages/kbn-dev-proc-runner/src/proc_runner.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-proc-runner", @@ -127,6 +134,7 @@ ], "path": "packages/kbn-dev-proc-runner/src/proc_runner.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -141,6 +149,7 @@ ], "path": "packages/kbn-dev-proc-runner/src/proc_runner.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -162,6 +171,7 @@ ], "path": "packages/kbn-dev-proc-runner/src/proc_runner.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -181,6 +191,7 @@ ], "path": "packages/kbn-dev-proc-runner/src/proc_runner.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-proc-runner", @@ -194,6 +205,7 @@ ], "path": "packages/kbn-dev-proc-runner/src/proc_runner.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -230,6 +242,7 @@ ], "path": "packages/kbn-dev-proc-runner/src/with_proc_runner.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-proc-runner", @@ -243,6 +256,7 @@ ], "path": "packages/kbn-dev-proc-runner/src/with_proc_runner.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -265,6 +279,7 @@ ], "path": "packages/kbn-dev-proc-runner/src/with_proc_runner.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_dev_proc_runner.mdx b/api_docs/kbn_dev_proc_runner.mdx index 1827fe0a88d7c..e6e3a5e84ba39 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_dev_utils.devdocs.json index d3b4ebd72fb2a..a9f3df27f065a 100644 --- a/api_docs/kbn_dev_utils.devdocs.json +++ b/api_docs/kbn_dev_utils.devdocs.json @@ -25,6 +25,7 @@ ], "path": "packages/kbn-dev-utils/src/diff_strings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-utils", @@ -38,6 +39,7 @@ ], "path": "packages/kbn-dev-utils/src/diff_strings.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -52,6 +54,7 @@ ], "path": "packages/kbn-dev-utils/src/diff_strings.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -72,6 +75,7 @@ ], "path": "packages/kbn-dev-utils/src/extract.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-utils", @@ -85,6 +89,7 @@ ], "path": "packages/kbn-dev-utils/src/extract.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -110,6 +115,7 @@ ], "path": "packages/kbn-dev-utils/src/axios/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-utils", @@ -123,6 +129,7 @@ ], "path": "packages/kbn-dev-utils/src/axios/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -149,6 +156,7 @@ ], "path": "packages/kbn-dev-utils/src/axios/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-utils", @@ -162,6 +170,7 @@ ], "path": "packages/kbn-dev-utils/src/axios/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -180,6 +189,7 @@ ], "path": "packages/kbn-dev-utils/src/plugin_list/run_plugin_list_cli.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -196,6 +206,7 @@ ], "path": "packages/kbn-dev-utils/src/ship_ci_stats_cli.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -219,6 +230,7 @@ ], "path": "packages/kbn-dev-utils/src/streams.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-utils", @@ -236,6 +248,7 @@ ], "path": "packages/kbn-dev-utils/src/streams.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -258,6 +271,7 @@ ], "path": "packages/kbn-dev-utils/src/babel.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-utils", @@ -271,6 +285,7 @@ ], "path": "packages/kbn-dev-utils/src/babel.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -300,6 +315,7 @@ ], "path": "packages/kbn-dev-utils/src/axios/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-utils", @@ -312,7 +328,8 @@ "undefined" ], "path": "packages/kbn-dev-utils/src/axios/errors.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -338,6 +355,7 @@ ], "path": "packages/kbn-dev-utils/src/axios/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/dev-utils", @@ -351,7 +369,8 @@ "" ], "path": "packages/kbn-dev-utils/src/axios/errors.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -368,6 +387,7 @@ "description": [], "path": "packages/kbn-dev-utils/src/certs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -379,6 +399,7 @@ "description": [], "path": "packages/kbn-dev-utils/src/certs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -390,6 +411,7 @@ "description": [], "path": "packages/kbn-dev-utils/src/certs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -401,6 +423,7 @@ "description": [], "path": "packages/kbn-dev-utils/src/certs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -412,6 +435,7 @@ "description": [], "path": "packages/kbn-dev-utils/src/certs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -426,6 +450,7 @@ ], "path": "packages/kbn-dev-utils/src/certs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -437,6 +462,7 @@ "description": [], "path": "packages/kbn-dev-utils/src/certs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -448,6 +474,7 @@ "description": [], "path": "packages/kbn-dev-utils/src/certs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -459,6 +486,7 @@ "description": [], "path": "packages/kbn-dev-utils/src/certs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -473,6 +501,7 @@ ], "path": "packages/kbn-dev-utils/src/certs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -484,6 +513,7 @@ "description": [], "path": "packages/kbn-dev-utils/src/certs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_dev_utils.mdx b/api_docs/kbn_dev_utils.mdx index a06d8856b2240..964c46dd397ff 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/dev-utils'] --- import kbnDevUtilsObj from './kbn_dev_utils.devdocs.json'; diff --git a/api_docs/kbn_doc_links.devdocs.json b/api_docs/kbn_doc_links.devdocs.json index 16ef040b2c02a..cf429b729b807 100644 --- a/api_docs/kbn_doc_links.devdocs.json +++ b/api_docs/kbn_doc_links.devdocs.json @@ -40,6 +40,7 @@ ], "path": "packages/kbn-doc-links/src/get_doc_links.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/doc-links", @@ -53,6 +54,7 @@ ], "path": "packages/kbn-doc-links/src/get_doc_links.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -80,6 +82,7 @@ ], "path": "packages/kbn-doc-links/src/get_doc_meta.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/doc-links", @@ -93,6 +96,7 @@ ], "path": "packages/kbn-doc-links/src/get_doc_meta.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -110,6 +114,7 @@ "description": [], "path": "packages/kbn-doc-links/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/doc-links", @@ -119,7 +124,8 @@ "label": "settings", "description": [], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -129,7 +135,8 @@ "label": "elasticStackGetStarted", "description": [], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -142,7 +149,8 @@ "{ readonly upgradingStackOnPrem: string; readonly upgradingStackOnCloud: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -155,7 +163,8 @@ "{ readonly kibanaSettings: string; readonly supportedServiceMaps: string; readonly customLinks: string; readonly droppedTransactionSpans: string; readonly upgrading: string; readonly metaData: string; readonly overview: string; readonly tailSamplingPolicies: string; readonly elasticAgent: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -168,7 +177,8 @@ "{ readonly guide: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -181,7 +191,8 @@ "{ readonly indexManagement: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -194,7 +205,8 @@ "{ readonly guide: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -207,7 +219,8 @@ "{ readonly guide: string; readonly drilldowns: string; readonly drilldownsTriggerPicker: string; readonly urlDrilldownTemplateSyntax: string; readonly urlDrilldownVariables: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -220,7 +233,8 @@ "{ [x: string]: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -233,7 +247,8 @@ "{ readonly base: string; readonly installation: string; readonly configuration: string; readonly elasticsearchOutput: string; readonly elasticsearchModule: string; readonly startup: string; readonly exportedFields: string; readonly suricataModule: string; readonly zeekModule: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -246,7 +261,8 @@ "{ readonly base: string; readonly auditdModule: string; readonly systemModule: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -259,7 +275,8 @@ "{ readonly base: string; readonly configure: string; readonly httpEndpoint: string; readonly install: string; readonly start: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -272,7 +289,8 @@ "{ readonly adaptiveRelevance: string; readonly apiRef: string; readonly apiClients: string; readonly apiKeys: string; readonly authentication: string; readonly crawlRules: string; readonly curations: string; readonly duplicateDocuments: string; readonly elasticsearchIndexedEngines: string; readonly entryPoints: string; readonly gettingStarted: string; readonly guide: string; readonly indexingDocuments: string; readonly indexingDocumentsSchema: string; readonly logSettings: string; readonly metaEngines: string; readonly precisionTuning: string; readonly relevanceTuning: string; readonly resultSettings: string; readonly searchUI: string; readonly security: string; readonly synonyms: string; readonly webCrawler: string; readonly webCrawlerEventLogs: string; readonly webCrawlerReference: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -285,7 +303,8 @@ "{ readonly apiKeys: string; readonly bulkApi: string; readonly configuration: string; readonly connectors: string; readonly crawlerGettingStarted: string; readonly crawlerManaging: string; readonly crawlerOverview: string; readonly languageAnalyzers: string; readonly licenseManagement: string; readonly mailService: string; readonly start: string; readonly troubleshootSetup: string; readonly usersAccess: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -298,7 +317,8 @@ "{ readonly apiKeys: string; readonly box: string; readonly confluenceCloud: string; readonly confluenceCloudConnectorPackage: string; readonly confluenceServer: string; readonly contentSources: string; readonly customConnectorPackage: string; readonly customSources: string; readonly customSourcePermissions: string; readonly documentPermissions: string; readonly dropbox: string; readonly externalSharePointOnline: string; readonly externalIdentities: string; readonly gitHub: string; readonly gettingStarted: string; readonly gmail: string; readonly googleDrive: string; readonly indexingSchedule: string; readonly jiraCloud: string; readonly jiraServer: string; readonly networkDrive: string; readonly oneDrive: string; readonly permissions: string; readonly privateSourcePermissions: string; readonly salesforce: string; readonly security: string; readonly serviceNow: string; readonly sharePoint: string; readonly sharePointServer: string; readonly slack: string; readonly synch: string; readonly zendesk: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -311,7 +331,8 @@ "{ readonly base: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -324,7 +345,8 @@ "{ readonly getStarted: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -337,7 +359,8 @@ "{ readonly base: string; readonly inputElasticAgent: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -350,7 +373,8 @@ "{ readonly base: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -363,7 +387,8 @@ "{ readonly base: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -376,7 +401,8 @@ "{ readonly composite: string; readonly composite_missing_bucket: string; readonly date_histogram: string; readonly date_range: string; readonly date_format_pattern: string; readonly filter: string; readonly filters: string; readonly geohash_grid: string; readonly histogram: string; readonly ip_range: string; readonly range: string; readonly significant_terms: string; readonly terms: string; readonly terms_doc_count_error: string; readonly rare_terms: string; readonly avg: string; readonly avg_bucket: string; readonly max_bucket: string; readonly min_bucket: string; readonly sum_bucket: string; readonly cardinality: string; readonly count: string; readonly cumulative_sum: string; readonly derivative: string; readonly geo_bounds: string; readonly geo_centroid: string; readonly max: string; readonly median: string; readonly min: string; readonly moving_avg: string; readonly percentile_ranks: string; readonly serial_diff: string; readonly std_dev: string; readonly sum: string; readonly top_hits: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -389,7 +415,8 @@ "{ readonly overview: string; readonly mapping: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -402,7 +429,8 @@ "{ readonly scriptFields: string; readonly scriptAggs: string; readonly painless: string; readonly painlessApi: string; readonly painlessLangSpec: string; readonly painlessSyntax: string; readonly painlessWalkthrough: string; readonly luceneExpressions: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -415,7 +443,8 @@ "{ readonly sessions: string; readonly sessionLimits: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -428,7 +457,8 @@ "{ readonly introduction: string; readonly fieldFormattersNumber: string; readonly fieldFormattersString: string; readonly runtimeFields: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -438,7 +468,8 @@ "label": "addData", "description": [], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -451,7 +482,8 @@ "{ readonly guide: string; readonly autocompleteSuggestions: string; readonly secureSavedObject: string; readonly xpackSecurity: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -464,7 +496,8 @@ "{ readonly overview: string; readonly batchReindex: string; readonly remoteReindex: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -474,7 +507,8 @@ "label": "rollupJobs", "description": [], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -487,7 +521,8 @@ "{ [x: string]: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -500,7 +535,8 @@ "{ readonly privileges: string; readonly guide: string; readonly gettingStarted: string; readonly ml: string; readonly ruleChangeLog: string; readonly detectionsReq: string; readonly networkMap: string; readonly troubleshootGaps: string; readonly ruleApiOverview: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -513,7 +549,8 @@ "{ readonly trustedApps: string; readonly eventFilters: string; readonly blocklist: string; readonly policyResponseTroubleshooting: { full_disk_access: string; macos_system_ext: string; linux_deadlock: string; }; readonly threatIntelInt: string; readonly responseActions: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -526,7 +563,8 @@ "{ readonly eql: string; readonly kueryQuerySyntax: string; readonly luceneQuery: string; readonly luceneQuerySyntax: string; readonly percolate: string; readonly queryDsl: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -539,7 +577,8 @@ "{ readonly dateMath: string; readonly dateMathIndexNames: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -552,7 +591,8 @@ "{ [x: string]: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -565,7 +605,8 @@ "{ [x: string]: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -578,7 +619,8 @@ "{ [x: string]: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -591,7 +633,8 @@ "{ [x: string]: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -604,7 +647,8 @@ "{ readonly bulkIndexAlias: string; readonly byteSizeUnits: string; readonly createAutoFollowPattern: string; readonly createFollower: string; readonly createIndex: string; readonly createSnapshotLifecyclePolicy: string; readonly createRoleMapping: string; readonly createRoleMappingTemplates: string; readonly createRollupJobsRequest: string; readonly createApiKey: string; readonly createPipeline: string; readonly createTransformRequest: string; readonly cronExpressions: string; readonly executeWatchActionModes: string; readonly indexExists: string; readonly multiSearch: string; readonly openIndex: string; readonly putComponentTemplate: string; readonly painlessExecute: string; readonly painlessExecuteAPIContexts: string; readonly putComponentTemplateMetadata: string; readonly putSnapshotLifecyclePolicy: string; readonly putIndexTemplateV1: string; readonly putWatch: string; readonly searchPreference: string; readonly simulatePipeline: string; readonly timeUnits: string; readonly unfreezeIndex: string; readonly updateTransform: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -617,7 +661,8 @@ "{ readonly guide: string; readonly infrastructureThreshold: string; readonly logsThreshold: string; readonly metricsThreshold: string; readonly monitorStatus: string; readonly monitorUptime: string; readonly tlsCertificate: string; readonly uptimeDurationAnomaly: string; readonly monitorLogs: string; readonly analyzeMetrics: string; readonly monitorUptimeSynthetics: string; readonly userExperience: string; readonly createAlerts: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -630,7 +675,8 @@ "{ [x: string]: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -643,7 +689,8 @@ "{ readonly guide: string; readonly importGeospatialPrivileges: string; readonly gdalTutorial: string; readonly termJoinsExample: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -656,7 +703,8 @@ "{ [x: string]: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -669,7 +717,8 @@ "{ readonly cloudMinimumRequirements: string; readonly grantUserAccess: string; readonly browserSystemDependencies: string; readonly browserSandboxDependencies: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -682,7 +731,8 @@ "{ readonly apiKeyServiceSettings: string; readonly clusterPrivileges: string; readonly elasticsearchSettings: string; readonly elasticsearchEnableSecurity: string; readonly elasticsearchEnableApiKeys: string; readonly indicesPrivileges: string; readonly kibanaTLS: string; readonly kibanaPrivileges: string; readonly mappingRoles: string; readonly mappingRolesFieldRules: string; readonly runAsPrivilege: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -695,7 +745,8 @@ "{ readonly kibanaLegacyUrlAliases: string; readonly kibanaDisableLegacyUrlAliasesApi: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -708,7 +759,8 @@ "{ [x: string]: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -721,7 +773,8 @@ "{ [x: string]: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -734,7 +787,8 @@ "{ azureRepo: string; gcsRepo: string; hdfsRepo: string; ingestAttachment: string; s3Repo: string; snapshotRestoreRepos: string; mapperSize: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -747,7 +801,8 @@ "{ [x: string]: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -760,7 +815,8 @@ "{ [x: string]: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -773,7 +829,8 @@ "{ readonly beatsAgentComparison: string; readonly guide: string; readonly fleetServer: string; readonly fleetServerAddFleetServer: string; readonly settings: string; readonly settingsFleetServerHostSettings: string; readonly settingsFleetServerProxySettings: string; readonly troubleshooting: string; readonly elasticAgent: string; readonly datastreams: string; readonly datastreamsILM: string; readonly datastreamsNamingScheme: string; readonly installElasticAgent: string; readonly installElasticAgentStandalone: string; readonly packageSignatures: string; readonly upgradeElasticAgent: string; readonly learnMoreBlog: string; readonly apiKeysLearnMore: string; readonly onPremRegistry: string; readonly secureLogstash: string; readonly agentPolicy: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -786,7 +843,8 @@ "{ readonly guide: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -799,7 +857,8 @@ "{ readonly guide: string; readonly goIndex: string; readonly goOverview: string; readonly javaBasicAuthentication: string; readonly javaIndex: string; readonly javaInstallation: string; readonly javaIntroduction: string; readonly javaRestLow: string; readonly jsClientConnecting: string; readonly jsIntro: string; readonly netGuide: string; readonly netIntroduction: string; readonly netNest: string; readonly netSingleNode: string; readonly perlGuide: string; readonly phpGuide: string; readonly phpConnecting: string; readonly phpInstallation: string; readonly phpOverview: string; readonly pythonAuthentication: string; readonly pythonGuide: string; readonly pythonOverview: string; readonly rubyAuthentication: string; readonly rubyOverview: string; readonly rustGuide: string; readonly rustOverview: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -812,7 +871,8 @@ "{ readonly troubleshooting: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -825,7 +885,8 @@ "{ readonly privacyStatement: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -838,7 +899,8 @@ "{ readonly resolveMigrationFailures: string; readonly repeatedTimeoutRequests: string; readonly routingAllocationDisabled: string; readonly clusterShardLimitExceeded: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -851,7 +913,8 @@ "{ readonly appSearch: string; readonly elasticsearch: string; }" ], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -865,6 +928,7 @@ "description": [], "path": "packages/kbn-doc-links/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/doc-links", @@ -874,7 +938,8 @@ "label": "version", "description": [], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -884,7 +949,8 @@ "label": "elasticWebsiteUrl", "description": [], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/doc-links", @@ -894,7 +960,8 @@ "label": "docsWebsiteUrl", "description": [], "path": "packages/kbn-doc-links/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_doc_links.mdx b/api_docs/kbn_doc_links.mdx index 6ce07c42072e3..318be11d0b4be 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/doc-links'] --- import kbnDocLinksObj from './kbn_doc_links.devdocs.json'; diff --git a/api_docs/kbn_docs_utils.devdocs.json b/api_docs/kbn_docs_utils.devdocs.json index 3f8dbac226940..567bb740cd93f 100644 --- a/api_docs/kbn_docs_utils.devdocs.json +++ b/api_docs/kbn_docs_utils.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/kbn-docs-utils/src/api_docs/build_api_docs_cli.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false diff --git a/api_docs/kbn_docs_utils.mdx b/api_docs/kbn_docs_utils.mdx index 9454579a52140..ea3c7f329c54d 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/docs-utils'] --- import kbnDocsUtilsObj from './kbn_docs_utils.devdocs.json'; diff --git a/api_docs/kbn_ebt_tools.devdocs.json b/api_docs/kbn_ebt_tools.devdocs.json index 7f6e60305d982..f488bb68fdf86 100644 --- a/api_docs/kbn_ebt_tools.devdocs.json +++ b/api_docs/kbn_ebt_tools.devdocs.json @@ -37,6 +37,7 @@ ], "path": "packages/kbn-ebt-tools/src/performance_metric_events/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ebt-tools", @@ -54,6 +55,7 @@ ], "path": "packages/kbn-ebt-tools/src/performance_metric_events/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -84,6 +86,7 @@ ], "path": "packages/kbn-ebt-tools/src/performance_metric_events/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ebt-tools", @@ -101,6 +104,7 @@ ], "path": "packages/kbn-ebt-tools/src/performance_metric_events/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -123,6 +127,7 @@ ], "path": "packages/kbn-ebt-tools/src/performance_metric_events/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -142,6 +147,7 @@ ], "path": "packages/kbn-ebt-tools/src/performance_metric_events/schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ebt-tools", @@ -153,7 +159,8 @@ "\nThe name of the event that is tracked in the metrics i.e. kibana_loaded, kibana_started" ], "path": "packages/kbn-ebt-tools/src/performance_metric_events/schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ebt-tools", @@ -168,7 +175,8 @@ "Record | undefined" ], "path": "packages/kbn-ebt-tools/src/performance_metric_events/schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ebt-tools", @@ -180,7 +188,8 @@ "label": "duration", "description": [], "path": "packages/kbn-ebt-tools/src/performance_metric_events/schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ebt-tools", @@ -195,7 +204,8 @@ "string | undefined" ], "path": "packages/kbn-ebt-tools/src/performance_metric_events/schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ebt-tools", @@ -210,7 +220,8 @@ "number | undefined" ], "path": "packages/kbn-ebt-tools/src/performance_metric_events/schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ebt-tools", @@ -225,7 +236,8 @@ "string | undefined" ], "path": "packages/kbn-ebt-tools/src/performance_metric_events/schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ebt-tools", @@ -240,7 +252,8 @@ "number | undefined" ], "path": "packages/kbn-ebt-tools/src/performance_metric_events/schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ebt-tools", @@ -255,7 +268,8 @@ "string | undefined" ], "path": "packages/kbn-ebt-tools/src/performance_metric_events/schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ebt-tools", @@ -270,7 +284,8 @@ "number | undefined" ], "path": "packages/kbn-ebt-tools/src/performance_metric_events/schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ebt-tools", @@ -285,7 +300,8 @@ "string | undefined" ], "path": "packages/kbn-ebt-tools/src/performance_metric_events/schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ebt-tools", @@ -300,7 +316,8 @@ "number | undefined" ], "path": "packages/kbn-ebt-tools/src/performance_metric_events/schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ebt-tools", @@ -315,7 +332,8 @@ "string | undefined" ], "path": "packages/kbn-ebt-tools/src/performance_metric_events/schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ebt-tools", @@ -330,7 +348,8 @@ "number | undefined" ], "path": "packages/kbn-ebt-tools/src/performance_metric_events/schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_ebt_tools.mdx b/api_docs/kbn_ebt_tools.mdx index 88dfae4059edc..80a62e78497f5 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ebt-tools'] --- import kbnEbtToolsObj from './kbn_ebt_tools.devdocs.json'; diff --git a/api_docs/kbn_es_archiver.devdocs.json b/api_docs/kbn_es_archiver.devdocs.json index df0e26225b2e9..e7b1d76988c49 100644 --- a/api_docs/kbn_es_archiver.devdocs.json +++ b/api_docs/kbn_es_archiver.devdocs.json @@ -19,6 +19,7 @@ "description": [], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-archiver", @@ -32,6 +33,7 @@ ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-archiver", @@ -45,6 +47,7 @@ ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -69,6 +72,7 @@ ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-archiver", @@ -84,6 +88,7 @@ ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -100,6 +105,7 @@ ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -111,6 +117,7 @@ "description": [], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-archiver", @@ -123,7 +130,8 @@ "boolean | undefined" ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-archiver", @@ -136,7 +144,8 @@ "boolean | undefined" ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-archiver", @@ -149,7 +158,8 @@ "Record | undefined" ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -176,6 +186,7 @@ ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-archiver", @@ -191,6 +202,7 @@ ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -202,6 +214,7 @@ "description": [], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-archiver", @@ -214,7 +227,8 @@ "boolean | undefined" ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-archiver", @@ -227,7 +241,8 @@ "boolean | undefined" ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-archiver", @@ -240,7 +255,8 @@ "boolean | undefined" ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -263,6 +279,7 @@ ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-archiver", @@ -278,6 +295,7 @@ ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -297,6 +315,7 @@ ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-archiver", @@ -312,6 +331,7 @@ ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -331,6 +351,7 @@ ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-archiver", @@ -346,6 +367,7 @@ ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -360,6 +382,7 @@ ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -381,6 +404,7 @@ ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-archiver", @@ -394,6 +418,7 @@ ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -415,6 +440,7 @@ ], "path": "packages/kbn-es-archiver/src/es_archiver.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -435,6 +461,7 @@ ], "path": "packages/kbn-es-archiver/src/cli.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false diff --git a/api_docs/kbn_es_archiver.mdx b/api_docs/kbn_es_archiver.mdx index 2c3f41f62c8cd..7e7a2fc26faf1 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es-archiver'] --- import kbnEsArchiverObj from './kbn_es_archiver.devdocs.json'; diff --git a/api_docs/kbn_es_errors.devdocs.json b/api_docs/kbn_es_errors.devdocs.json index ba9f0d6dcd535..16963cc516901 100644 --- a/api_docs/kbn_es_errors.devdocs.json +++ b/api_docs/kbn_es_errors.devdocs.json @@ -25,6 +25,7 @@ ], "path": "packages/kbn-es-errors/src/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-errors", @@ -38,6 +39,7 @@ ], "path": "packages/kbn-es-errors/src/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -58,6 +60,7 @@ ], "path": "packages/kbn-es-errors/src/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-errors", @@ -71,6 +74,7 @@ ], "path": "packages/kbn-es-errors/src/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -90,6 +94,7 @@ ], "path": "packages/kbn-es-errors/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-errors", @@ -102,7 +107,8 @@ "{ type: string; reason?: string | undefined; } | undefined" ], "path": "packages/kbn-es-errors/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -125,6 +131,7 @@ ], "path": "packages/kbn-es-errors/src/errors.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_es_errors.mdx b/api_docs/kbn_es_errors.mdx index 24bb6e2989b08..c66768a2aa70e 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es-errors'] --- import kbnEsErrorsObj from './kbn_es_errors.devdocs.json'; diff --git a/api_docs/kbn_es_query.devdocs.json b/api_docs/kbn_es_query.devdocs.json index f238caaf35698..6db98adca98c5 100644 --- a/api_docs/kbn_es_query.devdocs.json +++ b/api_docs/kbn_es_query.devdocs.json @@ -39,6 +39,7 @@ ], "path": "packages/kbn-es-query/src/kuery/kuery_syntax_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -48,7 +49,8 @@ "label": "shortMessage", "description": [], "path": "packages/kbn-es-query/src/kuery/kuery_syntax_error.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -62,6 +64,7 @@ ], "path": "packages/kbn-es-query/src/kuery/kuery_syntax_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -75,6 +78,7 @@ ], "path": "packages/kbn-es-query/src/kuery/kuery_syntax_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -89,6 +93,7 @@ ], "path": "packages/kbn-es-query/src/kuery/kuery_syntax_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -130,6 +135,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/custom_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -143,6 +149,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/custom_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -157,6 +164,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/custom_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -171,6 +179,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/custom_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -185,6 +194,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/custom_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -199,6 +209,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/custom_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -219,6 +230,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/custom_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -244,6 +256,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/build_empty_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -257,6 +270,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/build_empty_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -271,6 +285,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/build_empty_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -329,6 +344,7 @@ ], "path": "packages/kbn-es-query/src/es_query/build_es_query.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -349,6 +365,7 @@ ], "path": "packages/kbn-es-query/src/es_query/build_es_query.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -365,6 +382,7 @@ ], "path": "packages/kbn-es-query/src/es_query/build_es_query.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -396,6 +414,7 @@ ], "path": "packages/kbn-es-query/src/es_query/build_es_query.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -418,6 +437,7 @@ ], "path": "packages/kbn-es-query/src/es_query/build_es_query.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -461,6 +481,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/exists_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -482,6 +503,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/exists_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -504,6 +526,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/exists_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -567,6 +590,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/build_filters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -586,6 +610,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/build_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -606,6 +631,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/build_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -626,6 +652,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/build_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -642,6 +669,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/build_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -658,6 +686,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/build_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -672,6 +701,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/build_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -688,6 +718,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/build_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -711,6 +742,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/build_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -764,6 +796,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/phrase_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -783,6 +816,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/phrase_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -797,6 +831,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/phrase_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -817,6 +852,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/phrase_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -864,6 +900,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/phrases_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -883,6 +920,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/phrases_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -898,6 +936,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/phrases_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -918,6 +957,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/phrases_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -946,6 +986,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/query_string_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -959,6 +1000,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/query_string_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -973,6 +1015,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/query_string_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -987,6 +1030,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/query_string_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1007,6 +1051,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/query_string_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1058,6 +1103,7 @@ ], "path": "packages/kbn-es-query/src/es_query/from_filters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -1078,6 +1124,7 @@ ], "path": "packages/kbn-es-query/src/es_query/from_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1099,6 +1146,7 @@ ], "path": "packages/kbn-es-query/src/es_query/from_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1119,6 +1167,7 @@ ], "path": "packages/kbn-es-query/src/es_query/from_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1182,6 +1231,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -1201,6 +1251,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1221,6 +1272,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1242,6 +1294,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1256,6 +1309,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1292,6 +1346,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -1313,6 +1368,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1373,6 +1429,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/compare_filters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -1403,6 +1460,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/compare_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1434,6 +1492,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/compare_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1456,6 +1515,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/compare_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1484,6 +1544,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/convert_range_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -1503,6 +1564,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/convert_range_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1528,6 +1590,7 @@ ], "path": "packages/kbn-es-query/src/es_query/decorate_query.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -1543,6 +1606,7 @@ ], "path": "packages/kbn-es-query/src/es_query/decorate_query.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1560,6 +1624,7 @@ ], "path": "packages/kbn-es-query/src/es_query/decorate_query.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1576,6 +1641,7 @@ ], "path": "packages/kbn-es-query/src/es_query/decorate_query.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1609,6 +1675,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -1628,6 +1695,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1663,6 +1731,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -1682,6 +1751,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1704,6 +1774,7 @@ ], "path": "packages/kbn-es-query/src/kuery/utils/escape_kuery.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1717,7 +1788,8 @@ "A" ], "path": "node_modules/@types/lodash/ts3.1/common/util.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1758,6 +1830,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/extract_time_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -1771,6 +1844,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/extract_time_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1792,6 +1866,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/extract_time_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1834,6 +1909,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/extract_time_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -1854,6 +1930,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/extract_time_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1868,6 +1945,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/extract_time_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1897,6 +1975,7 @@ ], "path": "packages/kbn-es-query/src/kuery/ast/ast.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -1911,6 +1990,7 @@ ], "path": "packages/kbn-es-query/src/kuery/ast/ast.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1927,6 +2007,7 @@ ], "path": "packages/kbn-es-query/src/kuery/ast/ast.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1953,6 +2034,7 @@ ], "path": "packages/kbn-es-query/src/es_query/es_query_sql.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -1972,6 +2054,7 @@ ], "path": "packages/kbn-es-query/src/es_query/es_query_sql.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1998,6 +2081,7 @@ ], "path": "packages/kbn-es-query/src/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2011,6 +2095,7 @@ ], "path": "packages/kbn-es-query/src/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2037,6 +2122,7 @@ ], "path": "packages/kbn-es-query/src/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2050,6 +2136,7 @@ ], "path": "packages/kbn-es-query/src/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2068,6 +2155,7 @@ ], "path": "packages/kbn-es-query/src/es_query/es_query_sql.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2081,6 +2169,7 @@ ], "path": "packages/kbn-es-query/src/es_query/es_query_sql.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2099,6 +2188,7 @@ ], "path": "packages/kbn-es-query/src/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2112,6 +2202,7 @@ ], "path": "packages/kbn-es-query/src/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2130,6 +2221,7 @@ ], "path": "packages/kbn-es-query/src/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2143,6 +2235,7 @@ ], "path": "packages/kbn-es-query/src/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2176,6 +2269,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/exists_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2195,6 +2289,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/exists_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2222,6 +2317,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2235,6 +2331,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2263,6 +2360,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2282,6 +2380,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2312,6 +2411,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2331,6 +2431,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2359,6 +2460,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2372,6 +2474,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2407,6 +2510,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/match_all_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2426,6 +2530,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/match_all_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2462,6 +2567,7 @@ ], "path": "packages/kbn-es-query/src/es_query/es_query_sql.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2490,6 +2596,7 @@ ], "path": "packages/kbn-es-query/src/es_query/es_query_sql.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2524,6 +2631,7 @@ ], "path": "packages/kbn-es-query/src/es_query/es_query_sql.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2552,6 +2660,7 @@ ], "path": "packages/kbn-es-query/src/es_query/es_query_sql.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2585,6 +2694,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/phrase_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2604,6 +2714,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/phrase_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2639,6 +2750,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/phrases_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2658,6 +2770,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/phrases_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2693,6 +2806,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/query_string_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2712,6 +2826,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/query_string_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2747,6 +2862,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2767,6 +2883,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2802,6 +2919,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/phrase_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2821,6 +2939,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/phrase_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2858,6 +2977,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2877,6 +2997,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2902,6 +3023,7 @@ ], "path": "packages/kbn-es-query/src/es_query/lucene_string_to_dsl.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2916,6 +3038,7 @@ ], "path": "packages/kbn-es-query/src/es_query/lucene_string_to_dsl.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2952,6 +3075,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/only_disabled.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -2972,6 +3096,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/only_disabled.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2993,6 +3118,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/only_disabled.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3028,6 +3154,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -3047,6 +3174,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3097,6 +3225,7 @@ ], "path": "packages/kbn-es-query/src/kuery/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -3136,6 +3265,7 @@ ], "path": "packages/kbn-es-query/src/kuery/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3172,6 +3302,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -3191,6 +3322,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3229,6 +3361,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -3248,6 +3381,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3294,6 +3428,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -3313,6 +3448,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3359,6 +3495,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/uniq_filters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -3381,6 +3518,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/uniq_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3403,6 +3541,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/uniq_filters.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3438,6 +3577,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -3457,6 +3597,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/meta_filter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3476,6 +3617,7 @@ "description": [], "path": "packages/kbn-es-query/src/es_query/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -3489,7 +3631,8 @@ "[]" ], "path": "packages/kbn-es-query/src/es_query/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3503,7 +3646,8 @@ "[]" ], "path": "packages/kbn-es-query/src/es_query/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3517,7 +3661,8 @@ "[]" ], "path": "packages/kbn-es-query/src/es_query/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3531,7 +3676,8 @@ "[]" ], "path": "packages/kbn-es-query/src/es_query/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3547,6 +3693,7 @@ ], "path": "packages/kbn-es-query/src/es_query/from_filters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -3561,7 +3708,8 @@ "boolean | undefined" ], "path": "packages/kbn-es-query/src/es_query/from_filters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3576,7 +3724,8 @@ "boolean | undefined" ], "path": "packages/kbn-es-query/src/es_query/from_filters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3590,6 +3739,7 @@ "description": [], "path": "packages/kbn-es-query/src/filters/helpers/compare_filters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -3602,7 +3752,8 @@ "boolean | undefined" ], "path": "packages/kbn-es-query/src/filters/helpers/compare_filters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3615,7 +3766,8 @@ "boolean | undefined" ], "path": "packages/kbn-es-query/src/filters/helpers/compare_filters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3628,7 +3780,8 @@ "boolean | undefined" ], "path": "packages/kbn-es-query/src/filters/helpers/compare_filters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3641,7 +3794,8 @@ "boolean | undefined" ], "path": "packages/kbn-es-query/src/filters/helpers/compare_filters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3654,7 +3808,8 @@ "boolean | undefined" ], "path": "packages/kbn-es-query/src/filters/helpers/compare_filters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3668,6 +3823,7 @@ "description": [], "path": "packages/kbn-es-query/src/kuery/node_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -3680,7 +3836,8 @@ "\"function\"" ], "path": "packages/kbn-es-query/src/kuery/node_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3693,7 +3850,8 @@ "\"range\" | \"nested\" | \"exists\" | \"is\" | \"and\" | \"or\" | \"not\"" ], "path": "packages/kbn-es-query/src/kuery/node_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3706,7 +3864,8 @@ "any[]" ], "path": "packages/kbn-es-query/src/kuery/node_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3720,6 +3879,7 @@ "description": [], "path": "packages/kbn-es-query/src/es_query/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -3732,7 +3892,8 @@ "{ parent: string; }" ], "path": "packages/kbn-es-query/src/es_query/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3746,6 +3907,7 @@ "description": [], "path": "packages/kbn-es-query/src/es_query/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -3758,7 +3920,8 @@ "{ path: string; }" ], "path": "packages/kbn-es-query/src/es_query/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3772,6 +3935,7 @@ "description": [], "path": "packages/kbn-es-query/src/kuery/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -3784,7 +3948,8 @@ "\"function\" | \"wildcard\" | \"literal\"" ], "path": "packages/kbn-es-query/src/kuery/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3797,7 +3962,8 @@ "[key: string]: any" ], "path": "packages/kbn-es-query/src/kuery/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3811,6 +3977,7 @@ "description": [], "path": "packages/kbn-es-query/src/kuery/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -3823,7 +3990,8 @@ "boolean | undefined" ], "path": "packages/kbn-es-query/src/kuery/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3836,7 +4004,8 @@ "string | undefined" ], "path": "packages/kbn-es-query/src/kuery/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3851,7 +4020,8 @@ "boolean | undefined" ], "path": "packages/kbn-es-query/src/kuery/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3867,6 +4037,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -3876,7 +4047,8 @@ "label": "lat", "description": [], "path": "packages/kbn-es-query/src/filters/build_filters/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3886,7 +4058,8 @@ "label": "lon", "description": [], "path": "packages/kbn-es-query/src/filters/build_filters/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3902,6 +4075,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -3914,7 +4088,8 @@ "string | number | undefined" ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3927,7 +4102,8 @@ "string | number | undefined" ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3940,7 +4116,8 @@ "string | number | undefined" ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3953,7 +4130,8 @@ "string | number | undefined" ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3966,7 +4144,8 @@ "string | number | undefined" ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3979,7 +4158,8 @@ "string | number | undefined" ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -3992,7 +4172,8 @@ "string | undefined" ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4010,6 +4191,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4023,6 +4205,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -4039,6 +4222,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4069,6 +4253,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/custom_filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4093,6 +4278,7 @@ ], "path": "packages/kbn-es-query/src/es_query/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4117,6 +4303,7 @@ ], "path": "packages/kbn-es-query/src/es_query/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4131,6 +4318,7 @@ ], "path": "packages/kbn-es-query/src/kuery/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4164,6 +4352,7 @@ ], "path": "packages/kbn-es-query/src/es_query/build_es_query.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4193,6 +4382,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/exists_filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4247,6 +4437,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4277,6 +4468,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4291,6 +4483,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4309,6 +4502,7 @@ ], "path": "packages/kbn-es-query/src/es_query/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4334,6 +4528,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/match_all_filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4361,6 +4556,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/phrase_filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4386,6 +4582,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/phrases_filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4400,6 +4597,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4429,6 +4627,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/query_string_filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4466,6 +4665,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4495,6 +4695,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4520,6 +4721,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/phrase_filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4551,6 +4753,7 @@ ], "path": "packages/kbn-es-query/src/filters/build_filters/range_filter.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4565,6 +4768,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -4580,6 +4784,7 @@ ], "path": "packages/kbn-es-query/src/filters/helpers/compare_filters.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -4592,7 +4797,8 @@ "true" ], "path": "packages/kbn-es-query/src/filters/helpers/compare_filters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -4605,7 +4811,8 @@ "true" ], "path": "packages/kbn-es-query/src/filters/helpers/compare_filters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -4618,7 +4825,8 @@ "true" ], "path": "packages/kbn-es-query/src/filters/helpers/compare_filters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -4631,7 +4839,8 @@ "true" ], "path": "packages/kbn-es-query/src/filters/helpers/compare_filters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -4644,7 +4853,8 @@ "true" ], "path": "packages/kbn-es-query/src/filters/helpers/compare_filters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4658,6 +4868,7 @@ "description": [], "path": "packages/kbn-es-query/src/kuery/node_types/node_builder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -4686,6 +4897,7 @@ ], "path": "packages/kbn-es-query/src/kuery/node_types/node_builder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -4699,6 +4911,7 @@ ], "path": "packages/kbn-es-query/src/kuery/node_types/node_builder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4720,6 +4933,7 @@ ], "path": "packages/kbn-es-query/src/kuery/node_types/node_builder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4752,6 +4966,7 @@ ], "path": "packages/kbn-es-query/src/kuery/node_types/node_builder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -4772,6 +4987,7 @@ ], "path": "packages/kbn-es-query/src/kuery/node_types/node_builder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4804,6 +5020,7 @@ ], "path": "packages/kbn-es-query/src/kuery/node_types/node_builder.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -4824,6 +5041,7 @@ ], "path": "packages/kbn-es-query/src/kuery/node_types/node_builder.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4841,6 +5059,7 @@ "description": [], "path": "packages/kbn-es-query/src/kuery/node_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/es-query", @@ -4856,7 +5075,8 @@ "packages/kbn-es-query/src/kuery/node_types/function" ], "path": "packages/kbn-es-query/src/kuery/node_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -4870,7 +5090,8 @@ "packages/kbn-es-query/src/kuery/node_types/literal" ], "path": "packages/kbn-es-query/src/kuery/node_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/es-query", @@ -4884,7 +5105,8 @@ "packages/kbn-es-query/src/kuery/node_types/wildcard" ], "path": "packages/kbn-es-query/src/kuery/node_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_es_query.mdx b/api_docs/kbn_es_query.mdx index 93f1631c408cf..fbf8f231c74b8 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/es-query'] --- import kbnEsQueryObj from './kbn_es_query.devdocs.json'; diff --git a/api_docs/kbn_eslint_plugin_imports.devdocs.json b/api_docs/kbn_eslint_plugin_imports.devdocs.json index c1b952dc57cd6..14ca36177b2ea 100644 --- a/api_docs/kbn_eslint_plugin_imports.devdocs.json +++ b/api_docs/kbn_eslint_plugin_imports.devdocs.json @@ -28,6 +28,7 @@ ], "path": "packages/kbn-eslint-plugin-imports/src/get_import_resolver.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/eslint-plugin-imports", @@ -42,6 +43,7 @@ ], "path": "packages/kbn-eslint-plugin-imports/src/get_import_resolver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_eslint_plugin_imports.mdx b/api_docs/kbn_eslint_plugin_imports.mdx index 2a6ec74ef9761..737f01b338245 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/eslint-plugin-imports'] --- import kbnEslintPluginImportsObj from './kbn_eslint_plugin_imports.devdocs.json'; diff --git a/api_docs/kbn_field_types.devdocs.json b/api_docs/kbn_field_types.devdocs.json index 47a8f1982a518..3aa7c53ebf9c9 100644 --- a/api_docs/kbn_field_types.devdocs.json +++ b/api_docs/kbn_field_types.devdocs.json @@ -27,6 +27,7 @@ "description": [], "path": "packages/kbn-field-types/src/kbn_field_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/field-types", @@ -36,7 +37,8 @@ "label": "name", "description": [], "path": "packages/kbn-field-types/src/kbn_field_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/field-types", @@ -46,7 +48,8 @@ "label": "sortable", "description": [], "path": "packages/kbn-field-types/src/kbn_field_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/field-types", @@ -56,7 +59,8 @@ "label": "filterable", "description": [], "path": "packages/kbn-field-types/src/kbn_field_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/field-types", @@ -77,7 +81,8 @@ "[]" ], "path": "packages/kbn-field-types/src/kbn_field_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/field-types", @@ -91,6 +96,7 @@ ], "path": "packages/kbn-field-types/src/kbn_field_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/field-types", @@ -112,6 +118,7 @@ ], "path": "packages/kbn-field-types/src/kbn_field_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -145,6 +152,7 @@ ], "path": "packages/kbn-field-types/src/kbn_field_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/field-types", @@ -158,6 +166,7 @@ ], "path": "packages/kbn-field-types/src/kbn_field_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -180,6 +189,7 @@ ], "path": "packages/kbn-field-types/src/kbn_field_types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -207,6 +217,7 @@ ], "path": "packages/kbn-field-types/src/kbn_field_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/field-types", @@ -220,6 +231,7 @@ ], "path": "packages/kbn-field-types/src/kbn_field_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -242,6 +254,7 @@ ], "path": "packages/kbn-field-types/src/kbn_field_types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -257,6 +270,7 @@ "description": [], "path": "packages/kbn-field-types/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/field-types", @@ -266,7 +280,8 @@ "label": "sortable", "description": [], "path": "packages/kbn-field-types/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/field-types", @@ -276,7 +291,8 @@ "label": "filterable", "description": [], "path": "packages/kbn-field-types/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/field-types", @@ -286,7 +302,8 @@ "label": "name", "description": [], "path": "packages/kbn-field-types/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/field-types", @@ -306,7 +323,8 @@ "[]" ], "path": "packages/kbn-field-types/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -322,6 +340,7 @@ "description": [], "path": "packages/kbn-field-types/src/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -333,6 +352,7 @@ "description": [], "path": "packages/kbn-field-types/src/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_field_types.mdx b/api_docs/kbn_field_types.mdx index 0139707633d71..4f006611e9fc3 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/field-types'] --- import kbnFieldTypesObj from './kbn_field_types.devdocs.json'; diff --git a/api_docs/kbn_find_used_node_modules.devdocs.json b/api_docs/kbn_find_used_node_modules.devdocs.json index 8635fa4c975ef..a5e8158bc0e19 100644 --- a/api_docs/kbn_find_used_node_modules.devdocs.json +++ b/api_docs/kbn_find_used_node_modules.devdocs.json @@ -25,6 +25,7 @@ ], "path": "packages/kbn-find-used-node-modules/src/find_used_node_modules.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/find-used-node-modules", @@ -38,6 +39,7 @@ ], "path": "packages/kbn-find-used-node-modules/src/find_used_node_modules.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_find_used_node_modules.mdx b/api_docs/kbn_find_used_node_modules.mdx index 5d588ab9af4f4..999bfe5e1ae72 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: 2022-09-05 +date: 2022-09-08 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_generate.devdocs.json b/api_docs/kbn_generate.devdocs.json index 8c4bdd9286ad2..68b0ebb41e012 100644 --- a/api_docs/kbn_generate.devdocs.json +++ b/api_docs/kbn_generate.devdocs.json @@ -25,6 +25,7 @@ ], "path": "packages/kbn-generate/src/cli.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false diff --git a/api_docs/kbn_generate.mdx b/api_docs/kbn_generate.mdx index 8f85c8f515a54..08ba76ffa1001 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/generate'] --- import kbnGenerateObj from './kbn_generate.devdocs.json'; diff --git a/api_docs/kbn_get_repo_files.devdocs.json b/api_docs/kbn_get_repo_files.devdocs.json index 9eb2249f94ac6..0386c3a04ea58 100644 --- a/api_docs/kbn_get_repo_files.devdocs.json +++ b/api_docs/kbn_get_repo_files.devdocs.json @@ -25,6 +25,7 @@ ], "path": "packages/kbn-get-repo-files/src/get_repo_files.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/get-repo-files", @@ -40,6 +41,7 @@ ], "path": "packages/kbn-get-repo-files/src/get_repo_files.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -56,6 +58,7 @@ ], "path": "packages/kbn-get-repo-files/src/get_repo_files.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], diff --git a/api_docs/kbn_get_repo_files.mdx b/api_docs/kbn_get_repo_files.mdx index c6aa49cad60c6..0eb9adf03cae8 100644 --- a/api_docs/kbn_get_repo_files.mdx +++ b/api_docs/kbn_get_repo_files.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-get-repo-files title: "@kbn/get-repo-files" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/get-repo-files plugin -date: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/get-repo-files'] --- import kbnGetRepoFilesObj from './kbn_get_repo_files.devdocs.json'; diff --git a/api_docs/kbn_handlebars.devdocs.json b/api_docs/kbn_handlebars.devdocs.json index a69d828c0cee6..440a27d24ef64 100644 --- a/api_docs/kbn_handlebars.devdocs.json +++ b/api_docs/kbn_handlebars.devdocs.json @@ -41,6 +41,7 @@ ], "path": "packages/kbn-handlebars/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "A sandboxed/scoped version of the" @@ -65,6 +66,7 @@ ], "path": "packages/kbn-handlebars/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -81,6 +83,7 @@ ], "path": "packages/kbn-handlebars/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -97,6 +100,7 @@ ], "path": "packages/kbn-handlebars/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -121,6 +125,7 @@ ], "path": "packages/kbn-handlebars/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -146,6 +151,7 @@ ], "path": "packages/kbn-handlebars/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/kbn_handlebars.mdx b/api_docs/kbn_handlebars.mdx index d387670444058..f2548afb38b8f 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/handlebars'] --- import kbnHandlebarsObj from './kbn_handlebars.devdocs.json'; diff --git a/api_docs/kbn_hapi_mocks.devdocs.json b/api_docs/kbn_hapi_mocks.devdocs.json index 86c64dd6d5650..37376eff5726b 100644 --- a/api_docs/kbn_hapi_mocks.devdocs.json +++ b/api_docs/kbn_hapi_mocks.devdocs.json @@ -24,6 +24,7 @@ "description": [], "path": "packages/kbn-hapi-mocks/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/hapi-mocks", @@ -42,6 +43,7 @@ ], "path": "packages/kbn-hapi-mocks/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -257,7 +259,8 @@ "<(name: string) => boolean> | undefined; }" ], "path": "packages/kbn-hapi-mocks/src/request.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kbn_hapi_mocks.mdx b/api_docs/kbn_hapi_mocks.mdx index 840231863e22a..71c5afc499e71 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/hapi-mocks'] --- import kbnHapiMocksObj from './kbn_hapi_mocks.devdocs.json'; diff --git a/api_docs/kbn_home_sample_data_card.devdocs.json b/api_docs/kbn_home_sample_data_card.devdocs.json index 1806b7c0a813f..729ea01b9dc8e 100644 --- a/api_docs/kbn_home_sample_data_card.devdocs.json +++ b/api_docs/kbn_home_sample_data_card.devdocs.json @@ -39,6 +39,7 @@ ], "path": "packages/home/sample_data_card/src/mocks/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/home-sample-data-card", @@ -54,6 +55,7 @@ ], "path": "packages/home/sample_data_card/src/mocks/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -76,6 +78,7 @@ ], "path": "packages/home/sample_data_card/src/mocks/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -109,6 +112,7 @@ ], "path": "packages/home/sample_data_card/src/mocks/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/home-sample-data-card", @@ -128,6 +132,7 @@ ], "path": "packages/home/sample_data_card/src/mocks/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -156,6 +161,7 @@ ], "path": "packages/home/sample_data_card/src/sample_data_card.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/home-sample-data-card", @@ -175,6 +181,7 @@ ], "path": "packages/home/sample_data_card/src/sample_data_card.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -203,6 +210,7 @@ ], "path": "packages/home/sample_data_card/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/home-sample-data-card", @@ -224,6 +232,7 @@ ], "path": "packages/home/sample_data_card/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -252,6 +261,7 @@ ], "path": "packages/home/sample_data_card/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/home-sample-data-card", @@ -273,6 +283,7 @@ ], "path": "packages/home/sample_data_card/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -290,6 +301,7 @@ "description": [], "path": "packages/home/sample_data_card/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/home-sample-data-card", @@ -302,7 +314,8 @@ "{ application: { navigateToUrl: NavigateToUrl; }; http: { basePath: { prepend: (path: string) => string; }; delete: (path: string) => Promise; post: (path: string) => Promise; }; notifications: { toasts: { addDanger: NotifyFn; addSuccess: NotifyFn; }; }; uiSettings: { get: (key: string, defaultOverride?: any) => any; isDefault: (key: string) => boolean; set: (key: string, value: any) => Promise; }; }" ], "path": "packages/home/sample_data_card/src/services.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/home-sample-data-card", @@ -315,7 +328,8 @@ "{ clearCache: () => void; }" ], "path": "packages/home/sample_data_card/src/services.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -349,6 +363,7 @@ ], "path": "packages/home/sample_data_card/src/sample_data_card.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/home-sample-data-card", @@ -363,7 +378,8 @@ "SampleDataSet" ], "path": "packages/home/sample_data_card/src/sample_data_card.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -379,6 +395,7 @@ ], "path": "packages/home/sample_data_card/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/home-sample-data-card", @@ -392,6 +409,7 @@ ], "path": "packages/home/sample_data_card/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/home-sample-data-card", @@ -405,6 +423,7 @@ ], "path": "packages/home/sample_data_card/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -422,6 +441,7 @@ ], "path": "packages/home/sample_data_card/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/home-sample-data-card", @@ -435,6 +455,7 @@ ], "path": "packages/home/sample_data_card/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -452,6 +473,7 @@ ], "path": "packages/home/sample_data_card/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/home-sample-data-card", @@ -465,6 +487,7 @@ ], "path": "packages/home/sample_data_card/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -479,6 +502,7 @@ ], "path": "packages/home/sample_data_card/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -496,6 +520,7 @@ ], "path": "packages/home/sample_data_card/src/services.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -509,7 +534,8 @@ "string | NotifyInputFields" ], "path": "packages/home/sample_data_card/src/services.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -525,6 +551,7 @@ ], "path": "packages/home/sample_data_card/src/services.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -538,7 +565,8 @@ "string | NotifyInputFields" ], "path": "packages/home/sample_data_card/src/services.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -554,6 +582,7 @@ ], "path": "packages/home/sample_data_card/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/home-sample-data-card", @@ -567,6 +596,7 @@ ], "path": "packages/home/sample_data_card/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -581,6 +611,7 @@ ], "path": "packages/home/sample_data_card/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -606,6 +637,7 @@ ], "path": "packages/home/sample_data_card/src/mocks/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_home_sample_data_card.mdx b/api_docs/kbn_home_sample_data_card.mdx index ab3c66c660cdb..fe9f7362f92d9 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_home_sample_data_tab.devdocs.json index 1de6c1bec06e8..a1f56d9c6ae1a 100644 --- a/api_docs/kbn_home_sample_data_tab.devdocs.json +++ b/api_docs/kbn_home_sample_data_tab.devdocs.json @@ -33,6 +33,7 @@ ], "path": "packages/home/sample_data_tab/src/sample_data_tab.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -53,6 +54,7 @@ ], "path": "packages/home/sample_data_tab/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/home-sample-data-tab", @@ -68,6 +70,7 @@ ], "path": "packages/home/sample_data_tab/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -90,6 +93,7 @@ ], "path": "packages/home/sample_data_tab/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/home-sample-data-tab", @@ -105,6 +109,7 @@ ], "path": "packages/home/sample_data_tab/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -129,6 +134,7 @@ ], "path": "packages/home/sample_data_tab/src/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -145,6 +151,7 @@ ], "path": "packages/home/sample_data_tab/src/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -161,6 +168,7 @@ ], "path": "packages/home/sample_data_tab/src/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_home_sample_data_tab.mdx b/api_docs/kbn_home_sample_data_tab.mdx index c236fbd46cae1..260ed51eb714a 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_i18n.devdocs.json index c37ae0b4cb55c..5cea6349dcdbc 100644 --- a/api_docs/kbn_i18n.devdocs.json +++ b/api_docs/kbn_i18n.devdocs.json @@ -29,6 +29,7 @@ "description": [], "path": "packages/kbn-i18n/src/core/formats.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/i18n", @@ -41,7 +42,8 @@ "Partial<{ [key: string]: NumberFormatOptions<\"percent\" | \"currency\" | \"decimal\">; currency: NumberFormatOptions<\"currency\">; percent: NumberFormatOptions<\"percent\">; }> | undefined" ], "path": "packages/kbn-i18n/src/core/formats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/i18n", @@ -54,7 +56,8 @@ "Partial<{ [key: string]: DateTimeFormatOptions; short: DateTimeFormatOptions; medium: DateTimeFormatOptions; long: DateTimeFormatOptions; full: DateTimeFormatOptions; }> | undefined" ], "path": "packages/kbn-i18n/src/core/formats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/i18n", @@ -67,7 +70,8 @@ "Partial<{ [key: string]: DateTimeFormatOptions; short: DateTimeFormatOptions; medium: DateTimeFormatOptions; long: DateTimeFormatOptions; full: DateTimeFormatOptions; }> | undefined" ], "path": "packages/kbn-i18n/src/core/formats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/i18n", @@ -80,7 +84,8 @@ "Partial<{ [key: string]: { style?: \"numeric\" | \"best fit\" | undefined; units: \"year\" | \"month\" | \"day\" | \"hour\" | \"minute\" | \"second\"; }; }> | undefined" ], "path": "packages/kbn-i18n/src/core/formats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -94,6 +99,7 @@ "description": [], "path": "packages/kbn-i18n/src/core/i18n.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/i18n", @@ -106,7 +112,8 @@ "Record | undefined" ], "path": "packages/kbn-i18n/src/core/i18n.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/i18n", @@ -116,7 +123,8 @@ "label": "defaultMessage", "description": [], "path": "packages/kbn-i18n/src/core/i18n.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/i18n", @@ -129,7 +137,8 @@ "string | undefined" ], "path": "packages/kbn-i18n/src/core/i18n.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -143,6 +152,7 @@ "description": [], "path": "packages/kbn-i18n/src/translation.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/i18n", @@ -157,7 +167,8 @@ "{ [x: string]: string; }" ], "path": "packages/kbn-i18n/src/translation.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/i18n", @@ -172,7 +183,8 @@ "string | undefined" ], "path": "packages/kbn-i18n/src/translation.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/i18n", @@ -194,7 +206,8 @@ " | undefined" ], "path": "packages/kbn-i18n/src/translation.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -212,6 +225,7 @@ "description": [], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/i18n", @@ -230,7 +244,8 @@ } ], "path": "packages/kbn-i18n/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/i18n", @@ -252,6 +267,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -271,7 +287,8 @@ } ], "path": "packages/kbn-i18n/src/core/i18n.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/i18n", @@ -284,7 +301,8 @@ "string | undefined" ], "path": "packages/kbn-i18n/src/core/i18n.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -307,6 +325,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -322,6 +341,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -332,7 +352,8 @@ "label": "locale", "description": [], "path": "packages/kbn-i18n/src/core/i18n.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -348,6 +369,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -363,6 +385,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -373,7 +396,8 @@ "label": "locale", "description": [], "path": "packages/kbn-i18n/src/core/i18n.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -389,6 +413,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -412,6 +437,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -431,7 +457,8 @@ } ], "path": "packages/kbn-i18n/src/core/i18n.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -454,6 +481,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -469,6 +497,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -492,6 +521,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -502,7 +532,8 @@ "label": "id", "description": [], "path": "packages/kbn-i18n/src/core/i18n.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/i18n", @@ -521,7 +552,8 @@ } ], "path": "packages/kbn-i18n/src/core/i18n.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -545,6 +577,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -565,7 +598,8 @@ " | undefined" ], "path": "packages/kbn-i18n/src/core/i18n.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -581,6 +615,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -591,7 +626,8 @@ "label": "translationsUrl", "description": [], "path": "packages/kbn-i18n/src/core/i18n.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -607,6 +643,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -617,7 +654,8 @@ "label": "locale", "description": [], "path": "packages/kbn-i18n/src/core/pseudo_locale.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -633,6 +671,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -643,7 +682,8 @@ "label": "message", "description": [], "path": "packages/kbn-i18n/src/core/pseudo_locale.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -659,6 +699,7 @@ "description": [], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/i18n", @@ -672,6 +713,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -682,7 +724,8 @@ "label": "translationFilePath", "description": [], "path": "packages/kbn-i18n/src/loader.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -698,6 +741,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -711,7 +755,8 @@ "string[]" ], "path": "packages/kbn-i18n/src/loader.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -735,6 +780,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -745,7 +791,8 @@ "label": "locale", "description": [], "path": "packages/kbn-i18n/src/loader.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -769,6 +816,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -792,6 +840,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -805,7 +854,8 @@ "string[]" ], "path": "packages/kbn-i18n/src/loader.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -821,6 +871,7 @@ ], "path": "packages/kbn-i18n/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/kbn_i18n.mdx b/api_docs/kbn_i18n.mdx index df02e3458d94a..4831d49ebd44d 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/i18n'] --- import kbnI18nObj from './kbn_i18n.devdocs.json'; diff --git a/api_docs/kbn_import_resolver.devdocs.json b/api_docs/kbn_import_resolver.devdocs.json index 50e7cdda82ff7..d5e2e003efc91 100644 --- a/api_docs/kbn_import_resolver.devdocs.json +++ b/api_docs/kbn_import_resolver.devdocs.json @@ -19,6 +19,7 @@ "description": [], "path": "packages/kbn-import-resolver/src/import_resolver.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/import-resolver", @@ -39,6 +40,7 @@ ], "path": "packages/kbn-import-resolver/src/import_resolver.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/import-resolver", @@ -52,6 +54,7 @@ ], "path": "packages/kbn-import-resolver/src/import_resolver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -69,6 +72,7 @@ ], "path": "packages/kbn-import-resolver/src/import_resolver.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/import-resolver", @@ -82,6 +86,7 @@ ], "path": "packages/kbn-import-resolver/src/import_resolver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -96,6 +101,7 @@ ], "path": "packages/kbn-import-resolver/src/import_resolver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -110,6 +116,7 @@ ], "path": "packages/kbn-import-resolver/src/import_resolver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -127,6 +134,7 @@ ], "path": "packages/kbn-import-resolver/src/import_resolver.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/import-resolver", @@ -140,6 +148,7 @@ ], "path": "packages/kbn-import-resolver/src/import_resolver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -157,6 +166,7 @@ ], "path": "packages/kbn-import-resolver/src/import_resolver.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/import-resolver", @@ -170,6 +180,7 @@ ], "path": "packages/kbn-import-resolver/src/import_resolver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -187,6 +198,7 @@ ], "path": "packages/kbn-import-resolver/src/import_resolver.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/import-resolver", @@ -200,6 +212,7 @@ ], "path": "packages/kbn-import-resolver/src/import_resolver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -217,6 +230,7 @@ ], "path": "packages/kbn-import-resolver/src/import_resolver.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/import-resolver", @@ -230,6 +244,7 @@ ], "path": "packages/kbn-import-resolver/src/import_resolver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -257,6 +272,7 @@ ], "path": "packages/kbn-import-resolver/src/import_resolver.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/import-resolver", @@ -270,6 +286,7 @@ ], "path": "packages/kbn-import-resolver/src/import_resolver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -284,6 +301,7 @@ ], "path": "packages/kbn-import-resolver/src/import_resolver.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -306,6 +324,7 @@ ], "path": "packages/kbn-import-resolver/src/helpers/import_req.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/import-resolver", @@ -319,6 +338,7 @@ ], "path": "packages/kbn-import-resolver/src/helpers/import_req.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -337,6 +357,7 @@ ], "path": "packages/kbn-import-resolver/src/helpers/import_req.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/import-resolver", @@ -350,6 +371,7 @@ ], "path": "packages/kbn-import-resolver/src/helpers/import_req.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -376,6 +398,7 @@ ], "path": "packages/kbn-import-resolver/src/helpers/import_req.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/import-resolver", @@ -389,6 +412,7 @@ ], "path": "packages/kbn-import-resolver/src/helpers/import_req.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -409,6 +433,7 @@ ], "path": "packages/kbn-import-resolver/src/helpers/import_req.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -423,6 +448,7 @@ ], "path": "packages/kbn-import-resolver/src/helpers/import_req.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -442,6 +468,7 @@ ], "path": "packages/kbn-import-resolver/src/resolve_result.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/import-resolver", @@ -454,7 +481,8 @@ "\"built-in\"" ], "path": "packages/kbn-import-resolver/src/resolve_result.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -470,6 +498,7 @@ ], "path": "packages/kbn-import-resolver/src/resolve_result.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/import-resolver", @@ -482,7 +511,8 @@ "\"file\"" ], "path": "packages/kbn-import-resolver/src/resolve_result.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/import-resolver", @@ -492,7 +522,8 @@ "label": "absolute", "description": [], "path": "packages/kbn-import-resolver/src/resolve_result.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/import-resolver", @@ -505,7 +536,8 @@ "string | undefined" ], "path": "packages/kbn-import-resolver/src/resolve_result.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/import-resolver", @@ -518,7 +550,8 @@ "string | undefined" ], "path": "packages/kbn-import-resolver/src/resolve_result.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/import-resolver", @@ -531,7 +564,8 @@ "string | undefined" ], "path": "packages/kbn-import-resolver/src/resolve_result.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -547,6 +581,7 @@ ], "path": "packages/kbn-import-resolver/src/resolve_result.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/import-resolver", @@ -559,7 +594,8 @@ "\"ignore\"" ], "path": "packages/kbn-import-resolver/src/resolve_result.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -575,6 +611,7 @@ ], "path": "packages/kbn-import-resolver/src/resolve_result.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/import-resolver", @@ -587,7 +624,8 @@ "\"optional-and-missing\"" ], "path": "packages/kbn-import-resolver/src/resolve_result.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -603,6 +641,7 @@ ], "path": "packages/kbn-import-resolver/src/resolve_result.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/import-resolver", @@ -615,7 +654,8 @@ "\"@types\"" ], "path": "packages/kbn-import-resolver/src/resolve_result.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/import-resolver", @@ -625,7 +665,8 @@ "label": "module", "description": [], "path": "packages/kbn-import-resolver/src/resolve_result.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -645,6 +686,7 @@ ], "path": "packages/kbn-import-resolver/src/helpers/import_req.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -699,6 +741,7 @@ ], "path": "packages/kbn-import-resolver/src/resolve_result.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_import_resolver.mdx b/api_docs/kbn_import_resolver.mdx index 6d22b5a14aa19..38cd87cb6c7d2 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/import-resolver'] --- import kbnImportResolverObj from './kbn_import_resolver.devdocs.json'; diff --git a/api_docs/kbn_interpreter.devdocs.json b/api_docs/kbn_interpreter.devdocs.json index efcfec31ab71b..4122a34219731 100644 --- a/api_docs/kbn_interpreter.devdocs.json +++ b/api_docs/kbn_interpreter.devdocs.json @@ -37,6 +37,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/interpreter", @@ -50,6 +51,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/interpreter", @@ -63,6 +65,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -80,6 +83,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/interpreter", @@ -93,6 +97,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -110,6 +115,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/interpreter", @@ -123,6 +129,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -140,6 +147,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -155,6 +163,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -170,6 +179,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/interpreter", @@ -183,6 +193,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/registry.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -200,6 +211,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -215,6 +227,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -242,6 +255,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/ast/from_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/interpreter", @@ -255,6 +269,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/ast/from_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -269,6 +284,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/ast/from_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -287,6 +303,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/get_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/interpreter", @@ -300,6 +317,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/get_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -318,6 +336,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/ast/ast.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/interpreter", @@ -331,6 +350,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/ast/ast.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -349,6 +369,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/ast/ast.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/interpreter", @@ -362,6 +383,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/ast/ast.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -387,6 +409,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/ast/safe_element_from_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/interpreter", @@ -400,6 +423,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/ast/safe_element_from_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -426,6 +450,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/ast/to_expression.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/interpreter", @@ -445,6 +470,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/ast/to_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -459,6 +485,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/ast/to_expression.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -489,6 +516,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/ast/ast.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -510,6 +538,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/ast/ast.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -531,6 +560,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/ast/ast.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -553,6 +583,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/ast/ast.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -583,6 +614,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/ast/ast.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -611,6 +643,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/ast/ast.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -641,6 +674,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/ast/ast.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -655,6 +689,7 @@ ], "path": "packages/kbn-interpreter/src/common/lib/parse.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_interpreter.mdx b/api_docs/kbn_interpreter.mdx index 3e118ec1e7b51..9165151e477f1 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/interpreter'] --- import kbnInterpreterObj from './kbn_interpreter.devdocs.json'; diff --git a/api_docs/kbn_io_ts_utils.devdocs.json b/api_docs/kbn_io_ts_utils.devdocs.json index cde8a3b1eb600..4f27d88f64b54 100644 --- a/api_docs/kbn_io_ts_utils.devdocs.json +++ b/api_docs/kbn_io_ts_utils.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/kbn-io-ts-utils/src/deep_exact_rt/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/io-ts-utils", @@ -44,6 +45,7 @@ ], "path": "packages/kbn-io-ts-utils/src/deep_exact_rt/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -96,6 +98,7 @@ ], "path": "packages/kbn-io-ts-utils/src/deep_exact_rt/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/io-ts-utils", @@ -111,6 +114,7 @@ ], "path": "packages/kbn-io-ts-utils/src/deep_exact_rt/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -131,6 +135,7 @@ ], "path": "packages/kbn-io-ts-utils/src/merge_rt/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/io-ts-utils", @@ -144,6 +149,7 @@ ], "path": "packages/kbn-io-ts-utils/src/merge_rt/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -158,6 +164,7 @@ ], "path": "packages/kbn-io-ts-utils/src/merge_rt/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -186,6 +193,7 @@ ], "path": "packages/kbn-io-ts-utils/src/merge_rt/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/io-ts-utils", @@ -200,6 +208,7 @@ ], "path": "packages/kbn-io-ts-utils/src/merge_rt/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -220,6 +229,7 @@ ], "path": "packages/kbn-io-ts-utils/src/strict_keys_rt/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/io-ts-utils", @@ -233,6 +243,7 @@ ], "path": "packages/kbn-io-ts-utils/src/strict_keys_rt/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -253,6 +264,7 @@ ], "path": "packages/kbn-io-ts-utils/src/to_json_schema/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/io-ts-utils", @@ -266,6 +278,7 @@ ], "path": "packages/kbn-io-ts-utils/src/to_json_schema/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -283,6 +296,7 @@ "description": [], "path": "packages/kbn-io-ts-utils/src/non_empty_string_rt/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/io-ts-utils", @@ -303,7 +317,8 @@ "[\"NonEmptyString\"]" ], "path": "packages/kbn-io-ts-utils/src/non_empty_string_rt/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -325,6 +340,7 @@ ], "path": "packages/kbn-io-ts-utils/src/iso_to_epoch_rt/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -340,6 +356,7 @@ ], "path": "packages/kbn-io-ts-utils/src/json_rt/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -365,6 +382,7 @@ ], "path": "packages/kbn-io-ts-utils/src/non_empty_string_rt/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -380,6 +398,7 @@ ], "path": "packages/kbn-io-ts-utils/src/to_boolean_rt/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -395,6 +414,7 @@ ], "path": "packages/kbn-io-ts-utils/src/to_number_rt/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/kbn_io_ts_utils.mdx b/api_docs/kbn_io_ts_utils.mdx index 20f5830a558b1..28459bf26edb1 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_jest_serializers.devdocs.json index f4595b16f9025..c4b87cdea3261 100644 --- a/api_docs/kbn_jest_serializers.devdocs.json +++ b/api_docs/kbn_jest_serializers.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/kbn-jest-serializers/src/absolute_path_serializer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/jest-serializers", @@ -36,6 +37,7 @@ ], "path": "packages/kbn-jest-serializers/src/absolute_path_serializer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -50,6 +52,7 @@ ], "path": "packages/kbn-jest-serializers/src/absolute_path_serializer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -68,6 +71,7 @@ ], "path": "packages/kbn-jest-serializers/src/any_instance_serizlizer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/jest-serializers", @@ -81,6 +85,7 @@ ], "path": "packages/kbn-jest-serializers/src/any_instance_serizlizer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -95,6 +100,7 @@ ], "path": "packages/kbn-jest-serializers/src/any_instance_serizlizer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -113,6 +119,7 @@ ], "path": "packages/kbn-jest-serializers/src/recursive_serializer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/jest-serializers", @@ -126,6 +133,7 @@ ], "path": "packages/kbn-jest-serializers/src/recursive_serializer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -140,6 +148,7 @@ ], "path": "packages/kbn-jest-serializers/src/recursive_serializer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -158,6 +167,7 @@ ], "path": "packages/kbn-jest-serializers/src/replace_serializer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/jest-serializers", @@ -171,6 +181,7 @@ ], "path": "packages/kbn-jest-serializers/src/replace_serializer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -185,6 +196,7 @@ ], "path": "packages/kbn-jest-serializers/src/replace_serializer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -203,6 +215,7 @@ ], "path": "packages/kbn-jest-serializers/src/strip_ansi_serializer.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false diff --git a/api_docs/kbn_jest_serializers.mdx b/api_docs/kbn_jest_serializers.mdx index 4966b9c345bbf..ba94c00e027fe 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/jest-serializers'] --- import kbnJestSerializersObj from './kbn_jest_serializers.devdocs.json'; diff --git a/api_docs/kbn_kibana_manifest_parser.devdocs.json b/api_docs/kbn_kibana_manifest_parser.devdocs.json index 69af5a03b1498..2a179421fb304 100644 --- a/api_docs/kbn_kibana_manifest_parser.devdocs.json +++ b/api_docs/kbn_kibana_manifest_parser.devdocs.json @@ -32,6 +32,7 @@ ], "path": "packages/kbn-kibana-manifest-parser/src/parse_kibana_manifest.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-parser", @@ -45,6 +46,7 @@ ], "path": "packages/kbn-kibana-manifest-parser/src/parse_kibana_manifest.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -72,6 +74,7 @@ ], "path": "packages/kbn-kibana-manifest-parser/src/parse_kibana_manifest.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-parser", @@ -85,6 +88,7 @@ ], "path": "packages/kbn-kibana-manifest-parser/src/parse_kibana_manifest.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -112,6 +116,7 @@ ], "path": "packages/kbn-kibana-manifest-parser/src/parse_kibana_manifest.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-parser", @@ -125,6 +130,7 @@ ], "path": "packages/kbn-kibana-manifest-parser/src/parse_kibana_manifest.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -151,6 +157,7 @@ ], "path": "packages/kbn-kibana-manifest-parser/src/kibana_manifest.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_kibana_manifest_parser.mdx b/api_docs/kbn_kibana_manifest_parser.mdx index 18c04020ea98c..021c15b48ce90 100644 --- a/api_docs/kbn_kibana_manifest_parser.mdx +++ b/api_docs/kbn_kibana_manifest_parser.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-kibana-manifest-parser title: "@kbn/kibana-manifest-parser" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/kibana-manifest-parser plugin -date: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/kibana-manifest-parser'] --- import kbnKibanaManifestParserObj from './kbn_kibana_manifest_parser.devdocs.json'; diff --git a/api_docs/kbn_kibana_manifest_schema.devdocs.json b/api_docs/kbn_kibana_manifest_schema.devdocs.json index 6f93a8e7f8851..9a2294b16a387 100644 --- a/api_docs/kbn_kibana_manifest_schema.devdocs.json +++ b/api_docs/kbn_kibana_manifest_schema.devdocs.json @@ -24,6 +24,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -33,7 +34,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -46,7 +48,8 @@ "string[]" ], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -57,6 +60,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -67,6 +71,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -76,7 +81,8 @@ "label": "description", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -86,7 +92,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -96,7 +103,8 @@ "label": "pattern", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -109,6 +117,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -118,7 +127,8 @@ "label": "description", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -128,7 +138,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -138,7 +149,8 @@ "label": "pattern", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -151,6 +163,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -160,7 +173,8 @@ "label": "description", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -170,7 +184,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -180,7 +195,8 @@ "label": "pattern", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -193,6 +209,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -202,7 +219,8 @@ "label": "description", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -215,7 +233,8 @@ "string[]" ], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -228,6 +247,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -237,7 +257,8 @@ "label": "description", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -250,7 +271,8 @@ "({ type: string; } | { type: string; items: { type: string; }; })[]" ], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -263,6 +285,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -272,7 +295,8 @@ "label": "description", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -282,7 +306,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -293,6 +318,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -302,7 +328,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -317,6 +344,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -326,7 +354,8 @@ "label": "description", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -336,7 +365,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -347,6 +377,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -356,7 +387,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -371,6 +403,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -380,7 +413,8 @@ "label": "description", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -390,7 +424,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -401,6 +436,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -410,7 +446,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -425,6 +462,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -434,7 +472,8 @@ "label": "description", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -444,7 +483,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -457,6 +497,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -466,7 +507,8 @@ "label": "description", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -476,7 +518,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -489,6 +532,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -498,7 +542,8 @@ "label": "description", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -508,7 +553,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -519,6 +565,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -528,7 +575,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -543,6 +591,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -552,7 +601,8 @@ "label": "description", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -562,7 +612,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -573,6 +624,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -582,7 +634,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -597,6 +650,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -606,7 +660,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -619,7 +674,8 @@ "string[]" ], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -630,6 +686,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -640,6 +697,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -649,7 +707,8 @@ "label": "description", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -659,7 +718,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -672,6 +732,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -681,7 +742,8 @@ "label": "description", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -691,7 +753,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -708,6 +771,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -717,7 +781,8 @@ "label": "description", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -727,7 +792,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -740,6 +806,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -749,7 +816,8 @@ "label": "description", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -759,7 +827,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v1_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -777,6 +846,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -786,7 +856,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -799,7 +870,8 @@ "string[]" ], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -810,6 +882,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -820,6 +893,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -829,7 +903,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -839,7 +914,8 @@ "label": "pattern", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -852,6 +928,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -861,7 +938,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -871,7 +949,8 @@ "label": "description", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -881,7 +960,8 @@ "label": "pattern", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -894,6 +974,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -903,7 +984,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -913,7 +995,8 @@ "label": "description", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -924,6 +1007,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -933,7 +1017,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -948,6 +1033,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -957,7 +1043,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -967,7 +1054,8 @@ "label": "description", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -978,6 +1066,7 @@ "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/kibana-manifest-schema", @@ -987,7 +1076,8 @@ "label": "type", "description": [], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1006,7 +1096,8 @@ "({ type: string; properties: { type: { enum: string[]; }; plugin: { type: string; required: string[]; properties: { id: { type: string; pattern: string; }; configPath: { description: string; type: string; items: { type: string; pattern: string; }; }; requiredPlugins: { type: string; items: { type: string; pattern: string; }; }; optionalPlugins: { type: string; items: { type: string; pattern: string; }; }; description: { description: string; type: string; }; enabledOnAnonymousPages: { description: string; type: string; }; serviceFolders: { description: string; type: string; items: { type: string; }; }; }; }; }; } | { type: string; properties: { type: { const: string; }; sharedBrowserBundle: { type: string; description: string; }; }; } | { type: string; properties: { type: { enum: string[]; }; }; })[]" ], "path": "packages/kbn-kibana-manifest-schema/src/kibana_json_v2_schema.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_kibana_manifest_schema.mdx b/api_docs/kbn_kibana_manifest_schema.mdx index 17371606561c6..ec3e2af47fc8f 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/kibana-manifest-schema'] --- import kbnKibanaManifestSchemaObj from './kbn_kibana_manifest_schema.devdocs.json'; diff --git a/api_docs/kbn_logging.devdocs.json b/api_docs/kbn_logging.devdocs.json index 33bcbcb329f08..70e29f10ab2af 100644 --- a/api_docs/kbn_logging.devdocs.json +++ b/api_docs/kbn_logging.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/logging", @@ -54,6 +55,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/logging", @@ -69,6 +71,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -85,6 +88,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -120,6 +124,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/logging", @@ -135,6 +140,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -151,6 +157,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -186,6 +193,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/logging", @@ -201,6 +209,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -217,6 +226,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -252,6 +262,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/logging", @@ -267,6 +278,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -283,6 +295,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -318,6 +331,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/logging", @@ -333,6 +347,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -349,6 +364,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -384,6 +400,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/logging", @@ -399,6 +416,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -415,6 +433,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -441,6 +460,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/logging", @@ -454,6 +474,7 @@ ], "path": "packages/kbn-logging/src/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -473,6 +494,7 @@ ], "path": "packages/kbn-logging/src/logger_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/logging", @@ -495,6 +517,7 @@ ], "path": "packages/kbn-logging/src/logger_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/logging", @@ -510,6 +533,7 @@ ], "path": "packages/kbn-logging/src/logger_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -608,6 +632,7 @@ ], "path": "packages/kbn-logging/src/ecs/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -622,6 +647,7 @@ ], "path": "packages/kbn-logging/src/ecs/event.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -636,6 +662,7 @@ ], "path": "packages/kbn-logging/src/ecs/event.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -650,6 +677,7 @@ ], "path": "packages/kbn-logging/src/ecs/event.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -664,6 +692,7 @@ ], "path": "packages/kbn-logging/src/ecs/event.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -746,6 +775,7 @@ ], "path": "packages/kbn-logging/src/log_meta.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_logging.mdx b/api_docs/kbn_logging.mdx index ddfeed376c25c..e09b62c0bb1b9 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/logging'] --- import kbnLoggingObj from './kbn_logging.devdocs.json'; diff --git a/api_docs/kbn_logging_mocks.devdocs.json b/api_docs/kbn_logging_mocks.devdocs.json index 410bd83befdb6..fdd0f4b0a5b4d 100644 --- a/api_docs/kbn_logging_mocks.devdocs.json +++ b/api_docs/kbn_logging_mocks.devdocs.json @@ -44,6 +44,7 @@ ], "path": "packages/kbn-logging-mocks/src/logger.mock.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -57,6 +58,7 @@ "description": [], "path": "packages/kbn-logging-mocks/src/logger.mock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/logging-mocks", @@ -77,6 +79,7 @@ ], "path": "packages/kbn-logging-mocks/src/logger.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -90,7 +93,8 @@ "string[]" ], "path": "packages/kbn-logging-mocks/src/logger.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -114,6 +118,7 @@ ], "path": "packages/kbn-logging-mocks/src/logger.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -145,7 +150,8 @@ " & { context: string[]; }" ], "path": "packages/kbn-logging-mocks/src/logger.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -183,6 +189,7 @@ ], "path": "packages/kbn-logging-mocks/src/logger.mock.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -214,7 +221,8 @@ " & { context: string[]; }" ], "path": "packages/kbn-logging-mocks/src/logger.mock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kbn_logging_mocks.mdx b/api_docs/kbn_logging_mocks.mdx index 754e1a09fa163..c0923437c7df5 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/logging-mocks'] --- import kbnLoggingMocksObj from './kbn_logging_mocks.devdocs.json'; diff --git a/api_docs/kbn_managed_vscode_config.devdocs.json b/api_docs/kbn_managed_vscode_config.devdocs.json index 8a40ed80ca04a..ad084931876e0 100644 --- a/api_docs/kbn_managed_vscode_config.devdocs.json +++ b/api_docs/kbn_managed_vscode_config.devdocs.json @@ -27,6 +27,7 @@ ], "path": "packages/kbn-managed-vscode-config/src/update_vscode_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/managed-vscode-config", @@ -43,6 +44,7 @@ ], "path": "packages/kbn-managed-vscode-config/src/update_vscode_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -59,6 +61,7 @@ ], "path": "packages/kbn-managed-vscode-config/src/update_vscode_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -75,6 +78,7 @@ ], "path": "packages/kbn-managed-vscode-config/src/update_vscode_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -97,6 +101,7 @@ ], "path": "packages/kbn-managed-vscode-config/src/managed_config_keys.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -114,6 +119,7 @@ ], "path": "packages/kbn-managed-vscode-config/src/managed_config_keys.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_managed_vscode_config.mdx b/api_docs/kbn_managed_vscode_config.mdx index d164d8905e3a6..5e5e690c99883 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/managed-vscode-config'] --- import kbnManagedVscodeConfigObj from './kbn_managed_vscode_config.devdocs.json'; diff --git a/api_docs/kbn_mapbox_gl.devdocs.json b/api_docs/kbn_mapbox_gl.devdocs.json index 74da52f71e7a8..0feba79911db8 100644 --- a/api_docs/kbn_mapbox_gl.devdocs.json +++ b/api_docs/kbn_mapbox_gl.devdocs.json @@ -30,6 +30,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -42,7 +43,8 @@ "\"geojson\"" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -52,7 +54,8 @@ "label": "id", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -62,7 +65,8 @@ "label": "minzoom", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -72,7 +76,8 @@ "label": "maxzoom", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -82,7 +87,8 @@ "label": "tileSize", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -92,7 +98,8 @@ "label": "attribution", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -105,7 +112,8 @@ "string | { [_: string]: string; }" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -115,7 +123,8 @@ "label": "isTileClipped", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -125,7 +134,8 @@ "label": "reparseOverscaled", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -138,7 +148,8 @@ "string | GeoJSON.GeoJSON" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -151,7 +162,8 @@ "any" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -164,7 +176,8 @@ "any" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -177,7 +190,8 @@ "maplibregl.Map" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -190,7 +204,8 @@ "maplibregl.Actor" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -200,7 +215,8 @@ "label": "_pendingLoads", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -210,7 +226,8 @@ "label": "_collectResourceTiming", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -220,7 +237,8 @@ "label": "_removed", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -236,6 +254,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -249,6 +268,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -263,6 +283,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -277,6 +298,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -291,6 +313,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -308,6 +331,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -323,6 +347,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -336,6 +361,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -355,6 +381,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -370,6 +397,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -391,6 +419,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -406,6 +435,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -422,6 +452,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -443,6 +474,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -458,6 +490,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -474,6 +507,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -495,6 +529,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -510,6 +545,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -526,6 +562,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -542,6 +579,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -558,6 +596,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -577,6 +616,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -590,6 +630,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -607,6 +648,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -622,6 +664,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -635,6 +678,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -649,6 +693,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -666,6 +711,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -679,6 +725,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -696,6 +743,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -709,6 +757,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -726,6 +775,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -741,6 +791,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -756,6 +807,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -774,6 +826,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -783,7 +836,8 @@ "label": "lng", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -793,7 +847,8 @@ "label": "lat", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -807,6 +862,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -820,6 +876,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -834,6 +891,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -853,6 +911,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The wrapped `LngLat` object." @@ -872,6 +931,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The coordinates represeted as an array of longitude and latitude." @@ -891,6 +951,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The coordinates represented as a string of the format `'LngLat(lng, lat)'`." @@ -910,6 +971,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -925,6 +987,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -946,6 +1009,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -961,6 +1025,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -982,6 +1047,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -997,6 +1063,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1019,6 +1086,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -1031,7 +1099,8 @@ "maplibregl.LngLat" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1044,7 +1113,8 @@ "maplibregl.LngLat" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1058,6 +1128,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -1071,6 +1142,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1085,6 +1157,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1104,6 +1177,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -1119,6 +1193,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1140,6 +1215,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -1155,6 +1231,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1176,6 +1253,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -1191,6 +1269,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1212,6 +1291,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The bounding box's center." @@ -1231,6 +1311,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The southwest corner of the bounding box." @@ -1250,6 +1331,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The northeast corner of the bounding box." @@ -1269,6 +1351,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The northwest corner of the bounding box." @@ -1288,6 +1371,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The southeast corner of the bounding box." @@ -1307,6 +1391,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The west edge of the bounding box." @@ -1326,6 +1411,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The south edge of the bounding box." @@ -1345,6 +1431,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The east edge of the bounding box." @@ -1364,6 +1451,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The north edge of the bounding box." @@ -1383,6 +1471,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The bounding box represented as an array, consisting of the\nsouthwest and northeast coordinates of the bounding represented as arrays of numbers." @@ -1402,6 +1491,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The bounding box represents as a string of the format\n`'LngLatBounds(LngLat(lng, lat), LngLat(lng, lat))'`." @@ -1421,6 +1511,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "True if bounds have been defined, otherwise false." @@ -1440,6 +1531,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -1455,6 +1547,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1476,6 +1569,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -1491,6 +1585,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1513,6 +1608,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -1525,7 +1621,8 @@ "maplibregl.Style" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1538,7 +1635,8 @@ "maplibregl.Painter" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1551,7 +1649,8 @@ "maplibregl.HandlerManager" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1564,7 +1663,8 @@ "HTMLElement" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1577,7 +1677,8 @@ "HTMLElement" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1590,7 +1691,8 @@ "HTMLElement" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1603,7 +1705,8 @@ "{ [_: string]: HTMLElement; }" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1613,7 +1716,8 @@ "label": "_interactive", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1623,7 +1727,8 @@ "label": "_showTileBoundaries", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1633,7 +1738,8 @@ "label": "_showCollisionBoxes", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1643,7 +1749,8 @@ "label": "_showPadding", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1653,7 +1760,8 @@ "label": "_showOverdrawInspector", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1663,7 +1771,8 @@ "label": "_repaint", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1673,7 +1782,8 @@ "label": "_vertices", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1686,7 +1796,8 @@ "HTMLCanvasElement" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1696,7 +1807,8 @@ "label": "_maxTileCacheSize", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1709,7 +1821,8 @@ "{ cancel: () => void; }" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1719,7 +1832,8 @@ "label": "_styleDirty", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1729,7 +1843,8 @@ "label": "_sourcesDirty", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1739,7 +1854,8 @@ "label": "_placementDirty", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1749,7 +1865,8 @@ "label": "_loaded", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1759,7 +1876,8 @@ "label": "_fullyLoaded", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1769,7 +1887,8 @@ "label": "_trackResize", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1779,7 +1898,8 @@ "label": "_preserveDrawingBuffer", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1789,7 +1909,8 @@ "label": "_failIfMajorPerformanceCaveat", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1799,7 +1920,8 @@ "label": "_antialias", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1809,7 +1931,8 @@ "label": "_refreshExpiredTiles", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1822,7 +1945,8 @@ "maplibregl.Hash" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1835,7 +1959,8 @@ "any" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1845,7 +1970,8 @@ "label": "_fadeDuration", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1855,7 +1981,8 @@ "label": "_crossSourceCollisions", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1865,7 +1992,8 @@ "label": "_crossFadingFactor", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1875,7 +2003,8 @@ "label": "_collectResourceTiming", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1888,7 +2017,8 @@ "maplibregl.TaskQueue" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1901,7 +2031,8 @@ "maplibregl.IControl[]" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1911,7 +2042,8 @@ "label": "_mapId", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1921,7 +2053,8 @@ "label": "_localIdeographFontFamily", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1934,7 +2067,8 @@ "maplibregl.RequestManager" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1947,7 +2081,8 @@ "any" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1957,7 +2092,8 @@ "label": "_removed", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1967,7 +2103,8 @@ "label": "_clickTolerance", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1977,7 +2114,8 @@ "label": "_pixelRatio", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -1992,7 +2130,8 @@ "maplibregl.ScrollZoomHandler" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -2007,7 +2146,8 @@ "maplibregl.BoxZoomHandler" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -2022,7 +2162,8 @@ "maplibregl.DragRotateHandler" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -2037,7 +2178,8 @@ "maplibregl.DragPanHandler" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -2052,7 +2194,8 @@ "maplibregl.KeyboardHandler" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -2067,7 +2210,8 @@ "maplibregl.DoubleClickZoomHandler" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -2082,7 +2226,8 @@ "maplibregl.TouchZoomRotateHandler" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -2097,7 +2242,8 @@ "maplibregl.TouchPitchHandler" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -2111,6 +2257,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -2124,6 +2271,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2141,6 +2289,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2160,6 +2309,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -2175,6 +2325,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2191,6 +2342,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2212,6 +2364,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -2227,6 +2380,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2248,6 +2402,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -2263,6 +2418,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2284,6 +2440,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -2299,6 +2456,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2320,6 +2478,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The pixel ratio." @@ -2339,6 +2498,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -2354,6 +2514,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2373,6 +2534,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The geographical bounds of the map as {@link LngLatBounds }." @@ -2392,6 +2554,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The map object." @@ -2411,6 +2574,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -2426,6 +2590,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2447,6 +2612,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -2462,6 +2628,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2483,6 +2650,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "minZoom" @@ -2502,6 +2670,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -2517,6 +2686,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2538,6 +2708,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "maxZoom" @@ -2557,6 +2728,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -2572,6 +2744,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2593,6 +2766,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "minPitch" @@ -2612,6 +2786,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -2627,6 +2802,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2648,6 +2824,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "maxPitch" @@ -2669,6 +2846,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "renderWorldCopies" @@ -2690,6 +2868,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -2705,6 +2884,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2727,6 +2907,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -2742,6 +2923,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2763,6 +2945,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -2778,6 +2961,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2799,6 +2983,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "True if the map is moving." @@ -2818,6 +3003,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "True if the map is zooming." @@ -2837,6 +3023,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "True if the map is rotating." @@ -2854,6 +3041,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -2867,6 +3055,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2881,6 +3070,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2895,6 +3085,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2919,6 +3110,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -2934,6 +3126,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2948,6 +3141,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2964,6 +3158,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2983,6 +3178,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -2996,6 +3192,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3010,6 +3207,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3027,6 +3225,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -3040,6 +3239,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3054,6 +3254,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3078,6 +3279,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -3093,6 +3295,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3107,6 +3310,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3123,6 +3327,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3142,6 +3347,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -3155,6 +3361,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3169,6 +3376,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3186,6 +3394,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -3199,6 +3408,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3213,6 +3423,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3237,6 +3448,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -3252,6 +3464,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3266,6 +3479,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3282,6 +3496,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3301,6 +3516,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -3314,6 +3530,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3328,6 +3545,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3345,6 +3563,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -3358,6 +3577,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3372,6 +3592,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3393,6 +3614,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -3408,6 +3630,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -3424,6 +3647,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3445,6 +3669,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -3460,6 +3685,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3476,6 +3702,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3497,6 +3724,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -3512,6 +3740,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -3528,6 +3757,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3549,6 +3779,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -3564,6 +3795,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3583,6 +3815,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -3596,6 +3829,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3613,6 +3847,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -3626,6 +3861,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -3640,6 +3876,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3657,6 +3894,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3672,6 +3910,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -3685,6 +3924,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3699,6 +3939,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3716,6 +3957,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -3729,6 +3971,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3743,6 +3986,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3762,6 +4006,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The map's style JSON object." @@ -3781,6 +4026,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "A Boolean indicating whether the style is fully loaded." @@ -3803,6 +4049,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -3818,6 +4065,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3834,6 +4082,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3855,6 +4104,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -3870,6 +4120,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3891,6 +4142,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "A Boolean indicating whether all tiles are loaded." @@ -3912,6 +4164,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -3927,6 +4180,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3943,6 +4197,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3959,6 +4214,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3978,6 +4234,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -3993,6 +4250,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4018,6 +4276,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -4033,6 +4292,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4057,6 +4317,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -4072,6 +4333,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4088,6 +4350,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4102,6 +4365,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4121,6 +4385,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -4136,6 +4401,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4152,6 +4418,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4171,6 +4438,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -4186,6 +4454,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4207,6 +4476,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -4222,6 +4492,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4243,6 +4514,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -4258,6 +4530,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4274,6 +4547,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4293,6 +4567,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "An Array of strings containing the names of all sprites/images currently available in the map." @@ -4316,6 +4591,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -4331,6 +4607,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4347,6 +4624,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4368,6 +4646,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -4383,6 +4662,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4399,6 +4679,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4422,6 +4703,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -4437,6 +4719,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4459,6 +4742,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -4474,6 +4758,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4495,6 +4780,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -4510,6 +4796,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4526,6 +4813,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4542,6 +4830,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4565,6 +4854,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -4580,6 +4870,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4596,6 +4887,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -4612,6 +4904,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4633,6 +4926,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -4648,6 +4942,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4672,6 +4967,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -4687,6 +4983,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4703,6 +5000,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4719,6 +5017,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4735,6 +5034,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4756,6 +5056,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -4771,6 +5072,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4787,6 +5089,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4808,6 +5111,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -4823,6 +5127,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4839,6 +5144,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4855,6 +5161,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4871,6 +5178,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4892,6 +5200,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -4907,6 +5216,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4923,6 +5233,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4944,6 +5255,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -4959,6 +5271,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4975,6 +5288,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4996,6 +5310,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "light Light properties of the style." @@ -5017,6 +5332,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -5032,6 +5348,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5048,6 +5365,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5067,6 +5385,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -5082,6 +5401,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5098,6 +5418,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -5117,6 +5438,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -5132,6 +5454,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5153,6 +5476,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The map's container." @@ -5174,6 +5498,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The container of the map's ``." @@ -5197,6 +5522,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The map's `` element." @@ -5214,6 +5540,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5229,6 +5556,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5244,6 +5572,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -5257,6 +5586,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5271,6 +5601,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5285,6 +5616,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5302,6 +5634,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5317,6 +5650,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -5330,6 +5664,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5347,6 +5682,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -5360,6 +5696,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5377,6 +5714,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -5390,6 +5728,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5409,6 +5748,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "A Boolean indicating whether the map is fully loaded." @@ -5430,6 +5770,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -5445,6 +5786,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -5468,6 +5810,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -5481,6 +5824,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5500,6 +5844,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -5513,6 +5858,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5534,6 +5880,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -5549,6 +5896,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5570,6 +5918,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "`this`" @@ -5589,6 +5938,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5609,6 +5959,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5624,6 +5975,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5639,6 +5991,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -5652,6 +6005,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5672,7 +6026,8 @@ "\nGets and sets a Boolean indicating whether the map will render an outline\naround each tile and the tile ID. These tile boundaries are useful for\ndebugging.\n\nThe uncompressed file size of the first vector source is drawn in the top left\ncorner of each tile, next to the tile ID.\n" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -5682,7 +6037,8 @@ "label": "showTileBoundaries", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -5699,7 +6055,8 @@ "\nGets and sets a Boolean indicating whether the map will visualize\nthe padding offsets.\n" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -5709,7 +6066,8 @@ "label": "showPadding", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -5726,7 +6084,8 @@ "\nGets and sets a Boolean indicating whether the map will render boxes\naround all symbols in the data source, revealing which symbols\nwere rendered or which were hidden due to collisions.\nThis information is useful for debugging.\n" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -5736,7 +6095,8 @@ "label": "showCollisionBoxes", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -5746,7 +6106,8 @@ "label": "showOverdrawInspector", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -5756,7 +6117,8 @@ "label": "showOverdrawInspector", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -5773,7 +6135,8 @@ "\nGets and sets a Boolean indicating whether the map will\ncontinuously repaint. This information is useful for analyzing performance.\n" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -5783,7 +6146,8 @@ "label": "repaint", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -5793,7 +6157,8 @@ "label": "vertices", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -5803,7 +6168,8 @@ "label": "vertices", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -5817,6 +6183,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -5830,6 +6197,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5844,6 +6212,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5864,6 +6233,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -5878,7 +6248,8 @@ "\"mousedown\" | \"mouseup\" | \"mouseover\" | \"mousemove\" | \"click\" | \"dblclick\" | \"mouseenter\" | \"mouseleave\" | \"mouseout\" | \"contextmenu\"" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -5893,7 +6264,8 @@ "maplibregl.Map" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -5908,7 +6280,8 @@ "MouseEvent" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -5923,7 +6296,8 @@ "node_modules/@types/mapbox__point-geometry/index" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -5938,7 +6312,8 @@ "maplibregl.LngLat" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -5954,6 +6329,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5969,7 +6345,8 @@ "\n`true` if `preventDefault` has been called." ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -5979,7 +6356,8 @@ "label": "_defaultPrevented", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -5995,6 +6373,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -6008,6 +6387,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6022,6 +6402,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6036,6 +6417,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6050,6 +6432,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6070,6 +6453,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -6082,7 +6466,8 @@ "\"raster\" | \"raster-dem\"" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6092,7 +6477,8 @@ "label": "id", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6102,7 +6488,8 @@ "label": "minzoom", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6112,7 +6499,8 @@ "label": "maxzoom", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6122,7 +6510,8 @@ "label": "url", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6132,7 +6521,8 @@ "label": "scheme", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6142,7 +6532,8 @@ "label": "tileSize", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6155,7 +6546,8 @@ "[number, number, number, number]" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6168,7 +6560,8 @@ "maplibregl.TileBounds" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6178,7 +6571,8 @@ "label": "roundZoom", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6191,7 +6585,8 @@ "maplibregl.Dispatcher" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6204,7 +6599,8 @@ "maplibregl.Map" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6217,7 +6613,8 @@ "string[]" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6227,7 +6624,8 @@ "label": "_loaded", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6240,7 +6638,8 @@ "maplibregl.RasterSourceSpecification | maplibregl.RasterDEMSourceSpecification" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6253,7 +6652,8 @@ "{ cancel: () => void; }" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6267,6 +6667,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -6280,6 +6681,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6294,6 +6696,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6308,6 +6711,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6322,6 +6726,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6339,6 +6744,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6354,6 +6760,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6369,6 +6776,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -6382,6 +6790,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6399,6 +6808,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6414,6 +6824,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6429,6 +6840,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -6442,6 +6854,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6459,6 +6872,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -6472,6 +6886,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6486,6 +6901,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6503,6 +6919,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -6516,6 +6933,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6530,6 +6948,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6547,6 +6966,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -6560,6 +6980,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6574,6 +6995,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6591,6 +7013,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -6609,6 +7032,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -6621,7 +7045,8 @@ "\"vector\"" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6631,7 +7056,8 @@ "label": "id", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6641,7 +7067,8 @@ "label": "minzoom", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6651,7 +7078,8 @@ "label": "maxzoom", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6661,7 +7089,8 @@ "label": "url", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6671,7 +7100,8 @@ "label": "scheme", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6681,7 +7111,8 @@ "label": "tileSize", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6694,7 +7125,8 @@ "string | { [_: string]: string; }" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6707,7 +7139,8 @@ "{ type: \"vector\"; url?: string | undefined; tiles?: string[] | undefined; bounds?: [number, number, number, number] | undefined; scheme?: \"xyz\" | \"tms\" | undefined; minzoom?: number | undefined; maxzoom?: number | undefined; attribution?: string | undefined; promoteId?: maplibregl.PromoteIdSpecification | undefined; volatile?: boolean | undefined; }" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6717,7 +7150,8 @@ "label": "_collectResourceTiming", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6730,7 +7164,8 @@ "maplibregl.Dispatcher" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6743,7 +7178,8 @@ "maplibregl.Map" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6756,7 +7192,8 @@ "[number, number, number, number]" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6769,7 +7206,8 @@ "string[]" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6782,7 +7220,8 @@ "maplibregl.TileBounds" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6792,7 +7231,8 @@ "label": "reparseOverscaled", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6802,7 +7242,8 @@ "label": "isTileClipped", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6815,7 +7256,8 @@ "{ cancel: () => void; }" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6825,7 +7267,8 @@ "label": "_loaded", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -6839,6 +7282,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -6852,6 +7296,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6866,6 +7311,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6880,6 +7326,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6894,6 +7341,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6911,6 +7359,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6926,6 +7375,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -6941,6 +7391,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -6954,6 +7405,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6971,6 +7423,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -6984,6 +7437,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7001,6 +7455,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -7014,6 +7469,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7033,6 +7489,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -7048,6 +7505,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7069,6 +7527,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -7084,6 +7543,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7103,6 +7563,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -7118,6 +7579,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -7133,6 +7595,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -7146,6 +7609,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7160,6 +7624,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7177,6 +7642,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -7190,6 +7656,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7207,6 +7674,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -7220,6 +7688,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7237,6 +7706,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -7262,6 +7732,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -7273,7 +7744,8 @@ "label": "id", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7288,7 +7760,8 @@ "\"custom\"" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7303,7 +7776,8 @@ "\"2d\" | \"3d\" | undefined" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7326,6 +7800,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7341,7 +7816,8 @@ "WebGLRenderingContext" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7356,7 +7832,8 @@ "Float32Array | [number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number]" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -7378,7 +7855,8 @@ "maplibregl.CustomRenderMethod | undefined" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7399,6 +7877,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -7414,6 +7893,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7430,6 +7910,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7454,6 +7935,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -7469,6 +7951,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7485,6 +7968,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7505,6 +7989,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -7517,7 +8002,8 @@ "\"source\"" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7527,7 +8013,8 @@ "label": "isSourceLoaded", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7540,7 +8027,8 @@ "maplibregl.VectorSourceSpecification | maplibregl.RasterSourceSpecification | maplibregl.RasterDEMSourceSpecification | maplibregl.GeoJSONSourceSpecification | maplibregl.VideoSourceSpecification | maplibregl.ImageSourceSpecification" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7550,7 +8038,8 @@ "label": "sourceId", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7563,7 +8052,8 @@ "\"metadata\" | \"content\"" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7576,7 +8066,8 @@ "any" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7604,6 +8095,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -7613,7 +8105,8 @@ "label": "type", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7623,7 +8116,8 @@ "label": "id", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7633,7 +8127,8 @@ "label": "minzoom", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7643,7 +8138,8 @@ "label": "maxzoom", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7653,7 +8149,8 @@ "label": "tileSize", "description": [], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7666,7 +8163,8 @@ "string | undefined" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7679,7 +8177,8 @@ "boolean | undefined" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7692,7 +8191,8 @@ "boolean | undefined" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7705,7 +8205,8 @@ "maplibregl.CanonicalTileID | undefined" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7718,7 +8219,8 @@ "boolean | undefined" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7731,7 +8233,8 @@ "string[] | undefined" ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/mapbox-gl", @@ -7745,6 +8248,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -7760,6 +8264,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -7775,6 +8280,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -7788,6 +8294,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7805,6 +8312,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -7818,6 +8326,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7835,6 +8344,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -7848,6 +8358,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7865,6 +8376,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -7878,6 +8390,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7892,6 +8405,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7909,6 +8423,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -7922,6 +8437,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7939,6 +8455,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -7952,6 +8469,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7966,6 +8484,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7983,6 +8502,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/mapbox-gl", @@ -7996,6 +8516,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8010,6 +8531,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8029,6 +8551,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "A plain (stringifiable) JS object representing the current state of the source.\nCreating a source using the returned object as the `options` should result in a Source that is\nequivalent to this one." @@ -8046,6 +8569,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -8067,6 +8591,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8081,6 +8606,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8095,6 +8621,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8109,6 +8636,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8123,6 +8651,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8137,6 +8666,7 @@ ], "path": "packages/kbn-mapbox-gl/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8151,6 +8681,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8165,6 +8696,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8184,6 +8716,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8198,6 +8731,7 @@ ], "path": "node_modules/maplibre-gl/dist/maplibre-gl.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_mapbox_gl.mdx b/api_docs/kbn_mapbox_gl.mdx index b9e787849484f..7977d52647157 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/mapbox-gl'] --- import kbnMapboxGlObj from './kbn_mapbox_gl.devdocs.json'; diff --git a/api_docs/kbn_ml_agg_utils.devdocs.json b/api_docs/kbn_ml_agg_utils.devdocs.json index 828f8f58d79cc..286109a9ceee4 100644 --- a/api_docs/kbn_ml_agg_utils.devdocs.json +++ b/api_docs/kbn_ml_agg_utils.devdocs.json @@ -27,6 +27,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/build_sampler_aggregation.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ml-agg-utils", @@ -40,6 +41,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/build_sampler_aggregation.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -54,6 +56,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/build_sampler_aggregation.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -96,6 +99,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/fetch_agg_intervals.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ml-agg-utils", @@ -109,6 +113,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/fetch_agg_intervals.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -123,6 +128,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/fetch_agg_intervals.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -137,6 +143,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/fetch_agg_intervals.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -158,6 +165,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/fetch_agg_intervals.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -172,6 +180,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/fetch_agg_intervals.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -187,6 +196,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/fetch_agg_intervals.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -221,6 +231,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/fetch_histograms_for_fields.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ml-agg-utils", @@ -236,6 +247,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/fetch_histograms_for_fields.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -252,6 +264,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/fetch_histograms_for_fields.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -268,6 +281,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/fetch_histograms_for_fields.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -290,6 +304,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/fetch_histograms_for_fields.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -306,6 +321,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/fetch_histograms_for_fields.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -323,6 +339,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/fetch_histograms_for_fields.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -343,6 +360,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/get_sampler_aggregations_response_path.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ml-agg-utils", @@ -356,6 +374,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/get_sampler_aggregations_response_path.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -384,6 +403,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/validate_number.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ml-agg-utils", @@ -394,6 +414,7 @@ "description": [], "path": "x-pack/packages/ml/agg_utils/src/validate_number.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ml-agg-utils", @@ -406,7 +427,8 @@ "number | undefined" ], "path": "x-pack/packages/ml/agg_utils/src/validate_number.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ml-agg-utils", @@ -419,7 +441,8 @@ "number | undefined" ], "path": "x-pack/packages/ml/agg_utils/src/validate_number.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ml-agg-utils", @@ -432,7 +455,8 @@ "boolean | undefined" ], "path": "x-pack/packages/ml/agg_utils/src/validate_number.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -453,6 +477,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ml-agg-utils", @@ -465,7 +490,8 @@ "FieldAggCardinality | ScriptAggCardinality" ], "path": "x-pack/packages/ml/agg_utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -492,6 +518,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ml-agg-utils", @@ -501,7 +528,8 @@ "label": "doc_count", "description": [], "path": "x-pack/packages/ml/agg_utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ml-agg-utils", @@ -511,7 +539,8 @@ "label": "bg_count", "description": [], "path": "x-pack/packages/ml/agg_utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ml-agg-utils", @@ -521,7 +550,8 @@ "label": "score", "description": [], "path": "x-pack/packages/ml/agg_utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ml-agg-utils", @@ -534,7 +564,8 @@ "number | null" ], "path": "x-pack/packages/ml/agg_utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ml-agg-utils", @@ -544,7 +575,8 @@ "label": "normalizedScore", "description": [], "path": "x-pack/packages/ml/agg_utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ml-agg-utils", @@ -564,7 +596,8 @@ "[] | undefined" ], "path": "x-pack/packages/ml/agg_utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -591,6 +624,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ml-agg-utils", @@ -610,7 +644,8 @@ "[]" ], "path": "x-pack/packages/ml/agg_utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -626,6 +661,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ml-agg-utils", @@ -635,7 +671,8 @@ "label": "doc_count_overall", "description": [], "path": "x-pack/packages/ml/agg_utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ml-agg-utils", @@ -645,7 +682,8 @@ "label": "doc_count_change_point", "description": [], "path": "x-pack/packages/ml/agg_utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ml-agg-utils", @@ -655,7 +693,8 @@ "label": "key", "description": [], "path": "x-pack/packages/ml/agg_utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ml-agg-utils", @@ -665,7 +704,8 @@ "label": "key_as_string", "description": [], "path": "x-pack/packages/ml/agg_utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -681,6 +721,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ml-agg-utils", @@ -690,7 +731,8 @@ "label": "fieldName", "description": [], "path": "x-pack/packages/ml/agg_utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ml-agg-utils", @@ -703,7 +745,8 @@ "KBN_FIELD_TYPES" ], "path": "x-pack/packages/ml/agg_utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -717,6 +760,7 @@ "description": [], "path": "x-pack/packages/ml/agg_utils/src/validate_number.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ml-agg-utils", @@ -726,7 +770,8 @@ "label": "min", "description": [], "path": "x-pack/packages/ml/agg_utils/src/validate_number.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ml-agg-utils", @@ -736,7 +781,8 @@ "label": "max", "description": [], "path": "x-pack/packages/ml/agg_utils/src/validate_number.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ml-agg-utils", @@ -746,7 +792,8 @@ "label": "integerOnly", "description": [], "path": "x-pack/packages/ml/agg_utils/src/validate_number.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -762,6 +809,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ml-agg-utils", @@ -771,7 +819,8 @@ "label": "interval", "description": [], "path": "x-pack/packages/ml/agg_utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ml-agg-utils", @@ -781,7 +830,8 @@ "label": "min", "description": [], "path": "x-pack/packages/ml/agg_utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/ml-agg-utils", @@ -791,7 +841,8 @@ "label": "max", "description": [], "path": "x-pack/packages/ml/agg_utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -815,6 +866,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/fetch_histograms_for_fields.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -839,6 +891,7 @@ ], "path": "x-pack/packages/ml/agg_utils/src/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_ml_agg_utils.mdx b/api_docs/kbn_ml_agg_utils.mdx index a8c5473158f5b..ff08f4cbbad11 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: 2022-09-05 +date: 2022-09-08 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_is_populated_object.devdocs.json b/api_docs/kbn_ml_is_populated_object.devdocs.json index c9570aa14dbf0..ed63d11aac696 100644 --- a/api_docs/kbn_ml_is_populated_object.devdocs.json +++ b/api_docs/kbn_ml_is_populated_object.devdocs.json @@ -25,6 +25,7 @@ ], "path": "x-pack/packages/ml/is_populated_object/src/is_populated_object.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ml-is-populated-object", @@ -38,6 +39,7 @@ ], "path": "x-pack/packages/ml/is_populated_object/src/is_populated_object.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -52,6 +54,7 @@ ], "path": "x-pack/packages/ml/is_populated_object/src/is_populated_object.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_ml_is_populated_object.mdx b/api_docs/kbn_ml_is_populated_object.mdx index 132e2891c775f..36546dca93696 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: 2022-09-05 +date: 2022-09-08 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_string_hash.devdocs.json b/api_docs/kbn_ml_string_hash.devdocs.json index a6a3ccb30be3c..9adcde699f249 100644 --- a/api_docs/kbn_ml_string_hash.devdocs.json +++ b/api_docs/kbn_ml_string_hash.devdocs.json @@ -25,6 +25,7 @@ ], "path": "x-pack/packages/ml/string_hash/src/string_hash.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/ml-string-hash", @@ -38,6 +39,7 @@ ], "path": "x-pack/packages/ml/string_hash/src/string_hash.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_ml_string_hash.mdx b/api_docs/kbn_ml_string_hash.mdx index 0ee6cf82d7365..5db7b02795897 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ml-string-hash'] --- import kbnMlStringHashObj from './kbn_ml_string_hash.devdocs.json'; diff --git a/api_docs/kbn_monaco.devdocs.json b/api_docs/kbn_monaco.devdocs.json index 7e6cdc9776d0e..4bcaaaf4efbfd 100644 --- a/api_docs/kbn_monaco.devdocs.json +++ b/api_docs/kbn_monaco.devdocs.json @@ -39,6 +39,7 @@ ], "path": "packages/kbn-monaco/src/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/monaco", @@ -58,6 +59,7 @@ ], "path": "packages/kbn-monaco/src/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -92,6 +94,7 @@ ], "path": "packages/kbn-monaco/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/monaco", @@ -105,7 +108,8 @@ ".LanguageConfiguration" ], "path": "packages/kbn-monaco/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -118,7 +122,8 @@ "Function" ], "path": "packages/kbn-monaco/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -131,7 +136,8 @@ "Function" ], "path": "packages/kbn-monaco/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -155,6 +161,7 @@ ], "path": "packages/kbn-monaco/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -170,6 +177,7 @@ "description": [], "path": "packages/kbn-monaco/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/monaco", @@ -179,7 +187,8 @@ "label": "startLineNumber", "description": [], "path": "packages/kbn-monaco/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -189,7 +198,8 @@ "label": "startColumn", "description": [], "path": "packages/kbn-monaco/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -199,7 +209,8 @@ "label": "endLineNumber", "description": [], "path": "packages/kbn-monaco/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -209,7 +220,8 @@ "label": "endColumn", "description": [], "path": "packages/kbn-monaco/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -219,7 +231,8 @@ "label": "message", "description": [], "path": "packages/kbn-monaco/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -233,6 +246,7 @@ "description": [], "path": "packages/kbn-monaco/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/monaco", @@ -242,7 +256,8 @@ "label": "ID", "description": [], "path": "packages/kbn-monaco/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -256,7 +271,8 @@ ".IMonarchLanguage" ], "path": "packages/kbn-monaco/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -270,7 +286,8 @@ ".LanguageConfiguration | undefined" ], "path": "packages/kbn-monaco/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -283,7 +300,8 @@ "Function | undefined" ], "path": "packages/kbn-monaco/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -296,7 +314,8 @@ "Function | undefined" ], "path": "packages/kbn-monaco/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -310,6 +329,7 @@ "description": [], "path": "packages/kbn-monaco/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/monaco", @@ -319,7 +339,8 @@ "label": "isValidating", "description": [], "path": "packages/kbn-monaco/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -329,7 +350,8 @@ "label": "isValid", "description": [], "path": "packages/kbn-monaco/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -349,7 +371,8 @@ "[]" ], "path": "packages/kbn-monaco/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -363,6 +386,7 @@ "description": [], "path": "packages/kbn-monaco/src/painless/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/monaco", @@ -372,7 +396,8 @@ "label": "name", "description": [], "path": "packages/kbn-monaco/src/painless/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -382,7 +407,8 @@ "label": "type", "description": [], "path": "packages/kbn-monaco/src/painless/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -396,6 +422,7 @@ "description": [], "path": "packages/kbn-monaco/src/painless/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/monaco", @@ -405,7 +432,8 @@ "label": "label", "description": [], "path": "packages/kbn-monaco/src/painless/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -418,7 +446,8 @@ "\"type\" | \"method\" | \"keyword\" | \"field\" | \"property\" | \"class\" | \"constructor\"" ], "path": "packages/kbn-monaco/src/painless/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -428,7 +457,8 @@ "label": "documentation", "description": [], "path": "packages/kbn-monaco/src/painless/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -438,7 +468,8 @@ "label": "insertText", "description": [], "path": "packages/kbn-monaco/src/painless/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -451,7 +482,8 @@ "boolean | undefined" ], "path": "packages/kbn-monaco/src/painless/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -465,6 +497,7 @@ "description": [], "path": "packages/kbn-monaco/src/painless/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/monaco", @@ -474,7 +507,8 @@ "label": "isIncomplete", "description": [], "path": "packages/kbn-monaco/src/painless/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -494,7 +528,8 @@ "[]" ], "path": "packages/kbn-monaco/src/painless/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -508,6 +543,7 @@ "description": [], "path": "packages/kbn-monaco/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/monaco", @@ -528,7 +564,8 @@ "[]" ], "path": "packages/kbn-monaco/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -548,6 +585,7 @@ ], "path": "packages/kbn-monaco/src/painless/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -562,6 +600,7 @@ ], "path": "packages/kbn-monaco/src/painless/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -575,6 +614,7 @@ "description": [], "path": "packages/kbn-monaco/src/esql/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/monaco", @@ -584,7 +624,8 @@ "label": "ID", "description": [], "path": "packages/kbn-monaco/src/esql/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -598,7 +639,8 @@ ".IMonarchLanguage" ], "path": "packages/kbn-monaco/src/esql/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -612,6 +654,7 @@ "description": [], "path": "packages/kbn-monaco/src/painless/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/monaco", @@ -621,7 +664,8 @@ "label": "ID", "description": [], "path": "packages/kbn-monaco/src/painless/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -652,6 +696,7 @@ ], "path": "packages/kbn-monaco/src/painless/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -665,7 +710,8 @@ "\"filter\" | \"score\" | \"painless_test\" | \"boolean_script_field_script_field\" | \"date_script_field\" | \"double_script_field_script_field\" | \"ip_script_field_script_field\" | \"long_script_field_script_field\" | \"processor_conditional\" | \"string_script_field_script_field\"" ], "path": "packages/kbn-monaco/src/painless/language.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -685,7 +731,8 @@ "[] | undefined" ], "path": "packages/kbn-monaco/src/painless/language.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -700,7 +747,8 @@ "Language" ], "path": "packages/kbn-monaco/src/painless/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -714,7 +762,8 @@ ".LanguageConfiguration" ], "path": "packages/kbn-monaco/src/painless/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -735,6 +784,7 @@ ], "path": "packages/kbn-monaco/src/painless/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -760,6 +810,7 @@ ], "path": "packages/kbn-monaco/src/painless/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -775,6 +826,7 @@ "description": [], "path": "packages/kbn-monaco/src/xjson/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/monaco", @@ -784,7 +836,8 @@ "label": "ID", "description": [], "path": "packages/kbn-monaco/src/xjson/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -798,7 +851,8 @@ ".IMonarchLanguage" ], "path": "packages/kbn-monaco/src/xjson/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/monaco", @@ -812,7 +866,8 @@ ".LanguageConfiguration" ], "path": "packages/kbn-monaco/src/xjson/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_monaco.mdx b/api_docs/kbn_monaco.mdx index 22207d9971196..ff8408aff7acc 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/monaco'] --- import kbnMonacoObj from './kbn_monaco.devdocs.json'; diff --git a/api_docs/kbn_optimizer.devdocs.json b/api_docs/kbn_optimizer.devdocs.json index bd22eca63f168..0eb4cd95ddadd 100644 --- a/api_docs/kbn_optimizer.devdocs.json +++ b/api_docs/kbn_optimizer.devdocs.json @@ -19,6 +19,7 @@ "description": [], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer", @@ -33,6 +34,7 @@ ], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer", @@ -46,6 +48,7 @@ ], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -70,6 +73,7 @@ ], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer", @@ -83,6 +87,7 @@ ], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -100,6 +105,7 @@ ], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer", @@ -114,6 +120,7 @@ ], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -129,6 +136,7 @@ ], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -143,6 +151,7 @@ ], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -157,6 +166,7 @@ ], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -171,6 +181,7 @@ ], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -186,6 +197,7 @@ ], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -200,6 +212,7 @@ ], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -214,6 +227,7 @@ ], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -228,6 +242,7 @@ ], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -242,6 +257,7 @@ ], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -256,6 +272,7 @@ ], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -274,6 +291,7 @@ ], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer", @@ -287,6 +305,7 @@ ], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -305,6 +324,7 @@ ], "path": "packages/kbn-optimizer/src/optimizer/optimizer_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -337,6 +357,7 @@ ], "path": "packages/kbn-optimizer/src/log_optimizer_progress.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer", @@ -350,6 +371,7 @@ ], "path": "packages/kbn-optimizer/src/log_optimizer_progress.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -394,6 +416,7 @@ ], "path": "packages/kbn-optimizer/src/log_optimizer_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer", @@ -407,6 +430,7 @@ ], "path": "packages/kbn-optimizer/src/log_optimizer_state.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -427,6 +451,7 @@ ], "path": "packages/kbn-optimizer/src/log_optimizer_state.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -446,6 +471,7 @@ ], "path": "packages/kbn-optimizer/src/limits.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer", @@ -459,6 +485,7 @@ ], "path": "packages/kbn-optimizer/src/limits.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -477,6 +504,7 @@ ], "path": "packages/kbn-optimizer/src/node/node_auto_tranpilation.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -519,6 +547,7 @@ ], "path": "packages/kbn-optimizer/src/report_optimizer_timings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer", @@ -532,6 +561,7 @@ ], "path": "packages/kbn-optimizer/src/report_optimizer_timings.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -552,6 +582,7 @@ ], "path": "packages/kbn-optimizer/src/report_optimizer_timings.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -570,6 +601,7 @@ ], "path": "packages/kbn-optimizer/src/audit_bundle_dependencies/find_babel_runtime_helpers_in_entry_bundles.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -586,6 +618,7 @@ ], "path": "packages/kbn-optimizer/src/audit_bundle_dependencies/find_node_libs_browser_polyfills_in_entry_bundles.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -604,6 +637,7 @@ ], "path": "packages/kbn-optimizer/src/audit_bundle_dependencies/find_target_node_imports.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -620,6 +654,7 @@ ], "path": "packages/kbn-optimizer/src/cli.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer", @@ -630,6 +665,7 @@ "description": [], "path": "packages/kbn-optimizer/src/cli.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer", @@ -639,7 +675,8 @@ "label": "defaultLimitsPath", "description": [], "path": "packages/kbn-optimizer/src/cli.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -677,6 +714,7 @@ ], "path": "packages/kbn-optimizer/src/run_optimizer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer", @@ -696,6 +734,7 @@ ], "path": "packages/kbn-optimizer/src/run_optimizer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -714,6 +753,7 @@ ], "path": "packages/kbn-optimizer/src/limits.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer", @@ -727,6 +767,7 @@ ], "path": "packages/kbn-optimizer/src/limits.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -755,6 +796,7 @@ ], "path": "packages/kbn-optimizer/src/limits.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer", @@ -768,6 +810,7 @@ ], "path": "packages/kbn-optimizer/src/limits.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -788,6 +831,7 @@ ], "path": "packages/kbn-optimizer/src/limits.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -802,6 +846,7 @@ ], "path": "packages/kbn-optimizer/src/limits.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -829,6 +874,7 @@ ], "path": "packages/kbn-optimizer/src/run_optimizer.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -852,6 +898,7 @@ ], "path": "packages/kbn-optimizer/src/run_optimizer.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_optimizer.mdx b/api_docs/kbn_optimizer.mdx index 2f3e23c36b910..de2ba0f075c74 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/optimizer'] --- import kbnOptimizerObj from './kbn_optimizer.devdocs.json'; diff --git a/api_docs/kbn_optimizer_webpack_helpers.devdocs.json b/api_docs/kbn_optimizer_webpack_helpers.devdocs.json index a0f1ba5d253e7..76777a87b7944 100644 --- a/api_docs/kbn_optimizer_webpack_helpers.devdocs.json +++ b/api_docs/kbn_optimizer_webpack_helpers.devdocs.json @@ -25,6 +25,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -38,6 +39,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -64,6 +66,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -83,6 +86,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -101,6 +105,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -114,6 +119,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -132,6 +138,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -145,6 +152,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -163,6 +171,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -176,6 +185,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -196,6 +206,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -209,6 +220,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -227,6 +239,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -240,6 +253,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -258,6 +272,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -271,6 +286,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -290,6 +306,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -299,7 +316,8 @@ "label": "type", "description": [], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -309,7 +327,8 @@ "label": "id", "description": [], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -322,7 +341,8 @@ "Dependency[]" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -335,7 +355,8 @@ "string[]" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -348,7 +369,8 @@ "unknown[]" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -364,6 +386,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -373,7 +396,8 @@ "label": "type", "description": [], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -383,7 +407,8 @@ "label": "id", "description": [], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -396,7 +421,8 @@ "unknown[]" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -408,7 +434,8 @@ "The ID of the module in the DLL manifest" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -424,6 +451,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -433,7 +461,8 @@ "label": "type", "description": [], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -443,7 +472,8 @@ "label": "id", "description": [], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -455,7 +485,8 @@ "JS used to get instance of External" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -467,7 +498,8 @@ "module name that is handled by externals" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -483,6 +515,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -492,7 +525,8 @@ "label": "type", "description": [], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -504,7 +538,8 @@ "unique string to identify this module with (starts with `ignored`)" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -516,7 +551,8 @@ "human readable identifier" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -532,6 +568,7 @@ ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -541,7 +578,8 @@ "label": "type", "description": [], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -553,7 +591,8 @@ "absolute path to file on disk" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -566,7 +605,8 @@ "{ cacheable: boolean; fileDependencies: Set; }" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -579,7 +619,8 @@ "Dependency[]" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -593,6 +634,7 @@ "description": [], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -604,7 +646,8 @@ "compilation context" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -616,7 +659,8 @@ "full request (with loaders)" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -629,7 +673,8 @@ "[{ module: unknown; weak: boolean; optional: boolean; loc: unknown; request: string; userRequest: string; }]" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -641,7 +686,8 @@ "absolute path, but probably includes loaders in some cases" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -653,7 +699,8 @@ "string from source code" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -666,7 +713,8 @@ "unknown" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -678,7 +726,8 @@ "absolute path to file, but probablt includes loaders in some cases" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -690,7 +739,8 @@ "module type" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/optimizer-webpack-helpers", @@ -703,7 +753,8 @@ "{ context: { issuer: string; }; path: string; }" ], "path": "packages/kbn-optimizer-webpack-helpers/src/webpack_helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_optimizer_webpack_helpers.mdx b/api_docs/kbn_optimizer_webpack_helpers.mdx index 6b3cb7c4f2d42..8fe04c2d25f15 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/optimizer-webpack-helpers'] --- import kbnOptimizerWebpackHelpersObj from './kbn_optimizer_webpack_helpers.devdocs.json'; diff --git a/api_docs/kbn_performance_testing_dataset_extractor.devdocs.json b/api_docs/kbn_performance_testing_dataset_extractor.devdocs.json index 9b491e7221480..4110f078c72be 100644 --- a/api_docs/kbn_performance_testing_dataset_extractor.devdocs.json +++ b/api_docs/kbn_performance_testing_dataset_extractor.devdocs.json @@ -25,6 +25,7 @@ ], "path": "packages/kbn-performance-testing-dataset-extractor/src/extractor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/performance-testing-dataset-extractor", @@ -38,6 +39,7 @@ ], "path": "packages/kbn-performance-testing-dataset-extractor/src/extractor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -56,6 +58,7 @@ ], "path": "packages/kbn-performance-testing-dataset-extractor/src/cli.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false diff --git a/api_docs/kbn_performance_testing_dataset_extractor.mdx b/api_docs/kbn_performance_testing_dataset_extractor.mdx index 8a04538f6e747..aa1371dd75ae4 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/performance-testing-dataset-extractor'] --- import kbnPerformanceTestingDatasetExtractorObj from './kbn_performance_testing_dataset_extractor.devdocs.json'; diff --git a/api_docs/kbn_plugin_generator.devdocs.json b/api_docs/kbn_plugin_generator.devdocs.json index 41448d9f09fc5..41179d0b2ace1 100644 --- a/api_docs/kbn_plugin_generator.devdocs.json +++ b/api_docs/kbn_plugin_generator.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/kbn-plugin-generator/src/cli.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false diff --git a/api_docs/kbn_plugin_generator.mdx b/api_docs/kbn_plugin_generator.mdx index c2720c3e82640..8fcbf064242d9 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/plugin-generator'] --- import kbnPluginGeneratorObj from './kbn_plugin_generator.devdocs.json'; diff --git a/api_docs/kbn_plugin_helpers.devdocs.json b/api_docs/kbn_plugin_helpers.devdocs.json index 452c0a7353b3a..dd3add5884bf5 100644 --- a/api_docs/kbn_plugin_helpers.devdocs.json +++ b/api_docs/kbn_plugin_helpers.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/kbn-plugin-helpers/src/cli.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false diff --git a/api_docs/kbn_plugin_helpers.mdx b/api_docs/kbn_plugin_helpers.mdx index f1f6a205cad77..d40aceba8e1d4 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/plugin-helpers'] --- import kbnPluginHelpersObj from './kbn_plugin_helpers.devdocs.json'; diff --git a/api_docs/kbn_react_field.devdocs.json b/api_docs/kbn_react_field.devdocs.json index 009157238dbe8..8b9492765c275 100644 --- a/api_docs/kbn_react_field.devdocs.json +++ b/api_docs/kbn_react_field.devdocs.json @@ -39,6 +39,7 @@ ], "path": "packages/kbn-react-field/src/field_button/field_button.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/react-field", @@ -58,6 +59,7 @@ ], "path": "packages/kbn-react-field/src/field_button/field_button.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -86,6 +88,7 @@ ], "path": "packages/kbn-react-field/src/field_icon/field_icon.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/react-field", @@ -105,6 +108,7 @@ ], "path": "packages/kbn-react-field/src/field_icon/field_icon.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -132,6 +136,7 @@ ], "path": "packages/kbn-react-field/src/field_button/field_button.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/react-field", @@ -146,7 +151,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "packages/kbn-react-field/src/field_button/field_button.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/react-field", @@ -161,7 +167,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "packages/kbn-react-field/src/field_button/field_button.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/react-field", @@ -176,7 +183,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "packages/kbn-react-field/src/field_button/field_button.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/react-field", @@ -191,7 +199,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "packages/kbn-react-field/src/field_button/field_button.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/react-field", @@ -206,7 +215,8 @@ "boolean | undefined" ], "path": "packages/kbn-react-field/src/field_button/field_button.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/react-field", @@ -221,7 +231,8 @@ "boolean | undefined" ], "path": "packages/kbn-react-field/src/field_button/field_button.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/react-field", @@ -236,7 +247,8 @@ "\"m\" | \"s\" | undefined" ], "path": "packages/kbn-react-field/src/field_button/field_button.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/react-field", @@ -249,7 +261,8 @@ "string | undefined" ], "path": "packages/kbn-react-field/src/field_button/field_button.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/react-field", @@ -265,6 +278,7 @@ ], "path": "packages/kbn-react-field/src/field_button/field_button.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -281,7 +295,8 @@ "string | undefined" ], "path": "packages/kbn-react-field/src/field_button/field_button.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/react-field", @@ -298,7 +313,8 @@ ") | undefined" ], "path": "packages/kbn-react-field/src/field_button/field_button.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -324,6 +340,7 @@ ], "path": "packages/kbn-react-field/src/field_icon/field_icon.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/react-field", @@ -333,7 +350,8 @@ "label": "type", "description": [], "path": "packages/kbn-react-field/src/field_icon/field_icon.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/react-field", @@ -346,7 +364,8 @@ "string | undefined" ], "path": "packages/kbn-react-field/src/field_icon/field_icon.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/react-field", @@ -359,7 +378,8 @@ "boolean | undefined" ], "path": "packages/kbn-react-field/src/field_icon/field_icon.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -379,6 +399,7 @@ ], "path": "packages/kbn-react-field/src/field_button/field_button.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_react_field.mdx b/api_docs/kbn_react_field.mdx index 50ce740f0aec3..df6f561e8cda6 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/react-field'] --- import kbnReactFieldObj from './kbn_react_field.devdocs.json'; diff --git a/api_docs/kbn_repo_source_classifier.devdocs.json b/api_docs/kbn_repo_source_classifier.devdocs.json index 060383fba7381..ed76a94aa46a9 100644 --- a/api_docs/kbn_repo_source_classifier.devdocs.json +++ b/api_docs/kbn_repo_source_classifier.devdocs.json @@ -19,6 +19,7 @@ "description": [], "path": "packages/kbn-repo-source-classifier/src/repo_source_classifier.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/repo-source-classifier", @@ -32,6 +33,7 @@ ], "path": "packages/kbn-repo-source-classifier/src/repo_source_classifier.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/repo-source-classifier", @@ -45,6 +47,7 @@ ], "path": "packages/kbn-repo-source-classifier/src/repo_source_classifier.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -63,6 +66,7 @@ ], "path": "packages/kbn-repo-source-classifier/src/repo_source_classifier.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/repo-source-classifier", @@ -76,6 +80,7 @@ ], "path": "packages/kbn-repo-source-classifier/src/repo_source_classifier.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -101,6 +106,7 @@ ], "path": "packages/kbn-repo-source-classifier/src/module_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_repo_source_classifier.mdx b/api_docs/kbn_repo_source_classifier.mdx index 501a4efd88967..701d2b801f102 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/repo-source-classifier'] --- import kbnRepoSourceClassifierObj from './kbn_repo_source_classifier.devdocs.json'; diff --git a/api_docs/kbn_rule_data_utils.devdocs.json b/api_docs/kbn_rule_data_utils.devdocs.json index 1a62ca9200de1..4323a179a30df 100644 --- a/api_docs/kbn_rule_data_utils.devdocs.json +++ b/api_docs/kbn_rule_data_utils.devdocs.json @@ -32,6 +32,7 @@ ], "path": "packages/kbn-rule-data-utils/src/alerts_as_data_rbac.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/rule-data-utils", @@ -45,6 +46,7 @@ ], "path": "packages/kbn-rule-data-utils/src/alerts_as_data_rbac.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -67,6 +69,7 @@ ], "path": "packages/kbn-rule-data-utils/src/alerts_as_data_rbac.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/rule-data-utils", @@ -83,6 +86,7 @@ ], "path": "packages/kbn-rule-data-utils/src/alerts_as_data_rbac.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -110,6 +114,7 @@ ], "path": "packages/kbn-rule-data-utils/src/alerts_as_data_rbac.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/rule-data-utils", @@ -123,6 +128,7 @@ ], "path": "packages/kbn-rule-data-utils/src/alerts_as_data_rbac.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -145,6 +151,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -159,6 +166,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -173,6 +181,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -187,6 +196,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -201,6 +211,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -215,6 +226,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -229,6 +241,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -243,6 +256,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -257,6 +271,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -271,6 +286,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -285,6 +301,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -299,6 +316,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -313,6 +331,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -327,6 +346,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -341,6 +361,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -355,6 +376,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -369,6 +391,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -383,6 +406,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -397,6 +421,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -411,6 +436,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -425,6 +451,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -439,6 +466,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -453,6 +481,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -467,6 +496,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -481,6 +511,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -495,6 +526,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -509,6 +541,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -523,6 +556,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -537,6 +571,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -551,6 +586,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -565,6 +601,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -579,6 +616,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -593,6 +631,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -607,6 +646,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -621,6 +661,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -635,6 +676,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -649,6 +691,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -663,6 +706,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -677,6 +721,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -691,6 +736,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -705,6 +751,7 @@ ], "path": "packages/kbn-rule-data-utils/src/alerts_as_data_severity.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -719,6 +766,7 @@ ], "path": "packages/kbn-rule-data-utils/src/alerts_as_data_severity.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -733,6 +781,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -747,6 +796,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -761,6 +811,7 @@ ], "path": "packages/kbn-rule-data-utils/src/alerts_as_data_status.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -775,6 +826,7 @@ ], "path": "packages/kbn-rule-data-utils/src/alerts_as_data_status.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -789,6 +841,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -803,6 +856,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -817,6 +871,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -831,6 +886,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -845,6 +901,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -859,6 +916,7 @@ ], "path": "packages/kbn-rule-data-utils/src/alerts_as_data_rbac.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -873,6 +931,7 @@ ], "path": "packages/kbn-rule-data-utils/src/alerts_as_data_severity.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -887,6 +946,7 @@ ], "path": "packages/kbn-rule-data-utils/src/alerts_as_data_status.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -901,6 +961,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -915,6 +976,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -929,6 +991,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -943,6 +1006,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -957,6 +1021,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -971,6 +1036,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -985,6 +1051,7 @@ ], "path": "packages/kbn-rule-data-utils/src/alerts_as_data_rbac.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -999,6 +1066,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1013,6 +1081,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1027,6 +1096,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1041,6 +1111,7 @@ ], "path": "packages/kbn-rule-data-utils/src/alerts_as_data_rbac.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1055,6 +1126,7 @@ ], "path": "packages/kbn-rule-data-utils/src/alerts_as_data_rbac.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1069,6 +1141,7 @@ ], "path": "packages/kbn-rule-data-utils/src/technical_field_names.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1087,6 +1160,7 @@ ], "path": "packages/kbn-rule-data-utils/src/alerts_as_data_rbac.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/kbn_rule_data_utils.mdx b/api_docs/kbn_rule_data_utils.mdx index dff52f46deb36..25cd1e62b3ecb 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/rule-data-utils'] --- import kbnRuleDataUtilsObj from './kbn_rule_data_utils.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_autocomplete.devdocs.json b/api_docs/kbn_securitysolution_autocomplete.devdocs.json index cd6dc07c09551..91934a5908629 100644 --- a/api_docs/kbn_securitysolution_autocomplete.devdocs.json +++ b/api_docs/kbn_securitysolution_autocomplete.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/field_value_exists/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -44,6 +45,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/field_value_exists/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -62,6 +64,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/field_value_lists/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -75,6 +78,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/field_value_lists/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -93,6 +97,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/field_value_match_any/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -106,6 +111,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/field_value_match_any/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -124,6 +130,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/field_value_match/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -137,6 +144,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/field_value_match/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -155,6 +163,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/field_value_wildcard/index.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -168,7 +177,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -181,7 +191,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -202,6 +213,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/check_empty_value/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -215,6 +227,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/check_empty_value/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -230,6 +243,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/check_empty_value/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -244,6 +258,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/check_empty_value/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -258,6 +273,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/check_empty_value/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -276,6 +292,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/field/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -289,6 +306,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/field/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -311,6 +329,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/filter_field_to_list/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -326,6 +345,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/filter_field_to_list/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -344,6 +364,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/filter_field_to_list/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -371,6 +392,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/get_generic_combo_box_props/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -381,6 +403,7 @@ "description": [], "path": "packages/kbn-securitysolution-autocomplete/src/get_generic_combo_box_props/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -394,6 +417,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/get_generic_combo_box_props/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -407,6 +431,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/get_generic_combo_box_props/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -423,7 +448,8 @@ "T[]" ], "path": "packages/kbn-securitysolution-autocomplete/src/get_generic_combo_box_props/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -436,7 +462,8 @@ "T[]" ], "path": "packages/kbn-securitysolution-autocomplete/src/get_generic_combo_box_props/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -462,6 +489,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/get_operators/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -478,6 +506,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/get_operators/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -496,6 +525,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/operator/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -509,6 +539,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/operator/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -527,6 +558,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/param_contains_space/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -540,6 +572,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/param_contains_space/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -562,6 +595,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/param_is_valid/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -577,6 +611,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/param_is_valid/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -594,6 +629,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/param_is_valid/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -610,6 +646,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/param_is_valid/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -626,6 +663,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/param_is_valid/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -663,6 +701,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/hooks/use_field_value_autocomplete/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -682,6 +721,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/hooks/use_field_value_autocomplete/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -699,6 +739,7 @@ "description": [], "path": "packages/kbn-securitysolution-autocomplete/src/get_generic_combo_box_props/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -712,7 +753,8 @@ "[]" ], "path": "packages/kbn-securitysolution-autocomplete/src/get_generic_combo_box_props/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -725,7 +767,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-autocomplete/src/get_generic_combo_box_props/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -739,7 +782,8 @@ "[]" ], "path": "packages/kbn-securitysolution-autocomplete/src/get_generic_combo_box_props/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -753,6 +797,7 @@ "description": [], "path": "packages/kbn-securitysolution-autocomplete/src/hooks/use_field_value_autocomplete/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -765,7 +810,8 @@ "any" ], "path": "packages/kbn-securitysolution-autocomplete/src/hooks/use_field_value_autocomplete/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -778,7 +824,8 @@ "string | string[] | undefined" ], "path": "packages/kbn-securitysolution-autocomplete/src/hooks/use_field_value_autocomplete/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -792,7 +839,8 @@ " | undefined" ], "path": "packages/kbn-securitysolution-autocomplete/src/hooks/use_field_value_autocomplete/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -805,7 +853,8 @@ "ListOperatorTypeEnum" ], "path": "packages/kbn-securitysolution-autocomplete/src/hooks/use_field_value_autocomplete/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -815,7 +864,8 @@ "label": "query", "description": [], "path": "packages/kbn-securitysolution-autocomplete/src/hooks/use_field_value_autocomplete/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-autocomplete", @@ -829,7 +879,8 @@ " | undefined" ], "path": "packages/kbn-securitysolution-autocomplete/src/hooks/use_field_value_autocomplete/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -849,6 +900,7 @@ ], "path": "packages/kbn-securitysolution-autocomplete/src/hooks/use_field_value_autocomplete/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_securitysolution_autocomplete.mdx b/api_docs/kbn_securitysolution_autocomplete.mdx index 592f0ccb7f053..69baed8fab2fd 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-autocomplete'] --- import kbnSecuritysolutionAutocompleteObj from './kbn_securitysolution_autocomplete.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_es_utils.devdocs.json b/api_docs/kbn_securitysolution_es_utils.devdocs.json index 821e948cf359b..b3149b45f10dc 100644 --- a/api_docs/kbn_securitysolution_es_utils.devdocs.json +++ b/api_docs/kbn_securitysolution_es_utils.devdocs.json @@ -29,6 +29,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/bad_request_error/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false } @@ -48,6 +49,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/create_boostrap_index/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -61,6 +63,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/create_boostrap_index/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -75,6 +78,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/create_boostrap_index/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -93,6 +97,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/decode_version/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -106,6 +111,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/decode_version/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -126,6 +132,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/delete_all_index/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -139,6 +146,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/delete_all_index/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -153,6 +161,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/delete_all_index/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -167,6 +176,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/delete_all_index/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -187,6 +197,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/delete_index_template/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -200,6 +211,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/delete_index_template/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -214,6 +226,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/delete_index_template/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -234,6 +247,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/delete_policy/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -247,6 +261,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/delete_policy/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -261,6 +276,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/delete_policy/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -281,6 +297,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/delete_template/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -294,6 +311,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/delete_template/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -308,6 +326,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/delete_template/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -328,6 +347,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/encode_hit_version/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -341,6 +361,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/encode_hit_version/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -363,6 +384,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/get_bootstrap_index_exists/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -378,6 +400,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/get_bootstrap_index_exists/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -394,6 +417,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/get_bootstrap_index_exists/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -416,6 +440,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/get_index_aliases/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -426,6 +451,7 @@ "description": [], "path": "packages/kbn-securitysolution-es-utils/src/get_index_aliases/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -1622,7 +1648,8 @@ "; }" ], "path": "packages/kbn-securitysolution-es-utils/src/get_index_aliases/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -1632,7 +1659,8 @@ "label": "alias", "description": [], "path": "packages/kbn-securitysolution-es-utils/src/get_index_aliases/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1658,6 +1686,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/get_index_count/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -1668,6 +1697,7 @@ "description": [], "path": "packages/kbn-securitysolution-es-utils/src/get_index_count/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -2864,7 +2894,8 @@ "; }" ], "path": "packages/kbn-securitysolution-es-utils/src/get_index_count/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -2874,7 +2905,8 @@ "label": "index", "description": [], "path": "packages/kbn-securitysolution-es-utils/src/get_index_count/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2898,6 +2930,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/get_index_exists/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -2911,6 +2944,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/get_index_exists/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2925,6 +2959,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/get_index_exists/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2945,6 +2980,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/get_index_template_exists/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -2958,6 +2994,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/get_index_template_exists/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2972,6 +3009,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/get_index_template_exists/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2992,6 +3030,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/get_policy_exists/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -3005,6 +3044,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/get_policy_exists/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3019,6 +3059,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/get_policy_exists/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3039,6 +3080,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/get_template_exists/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -3052,6 +3094,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/get_template_exists/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3066,6 +3109,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/get_template_exists/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3086,6 +3130,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/read_index/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -3099,6 +3144,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/read_index/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3113,6 +3159,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/read_index/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3133,6 +3180,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/read_privileges/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -3146,6 +3194,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/read_privileges/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3160,6 +3209,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/read_privileges/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3180,6 +3230,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/set_index_template/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -3193,6 +3244,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/set_index_template/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3207,6 +3259,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/set_index_template/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3221,6 +3274,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/set_index_template/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3241,6 +3295,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/set_policy/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -3254,6 +3309,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/set_policy/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3268,6 +3324,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/set_policy/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3282,6 +3339,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/set_policy/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3302,6 +3360,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/set_template/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -3315,6 +3374,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/set_template/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3329,6 +3389,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/set_template/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3343,6 +3404,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/set_template/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3370,6 +3432,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/transform_error/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -3385,6 +3448,7 @@ ], "path": "packages/kbn-securitysolution-es-utils/src/transform_error/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3402,6 +3466,7 @@ "description": [], "path": "packages/kbn-securitysolution-es-utils/src/transform_error/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -3411,7 +3476,8 @@ "label": "message", "description": [], "path": "packages/kbn-securitysolution-es-utils/src/transform_error/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-es-utils", @@ -3421,7 +3487,8 @@ "label": "statusCode", "description": [], "path": "packages/kbn-securitysolution-es-utils/src/transform_error/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_securitysolution_es_utils.mdx b/api_docs/kbn_securitysolution_es_utils.mdx index 62256641f9a22..8694ba391c1df 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: 2022-09-05 +date: 2022-09-08 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_hook_utils.devdocs.json b/api_docs/kbn_securitysolution_hook_utils.devdocs.json index 895107bcb707f..67b97be188663 100644 --- a/api_docs/kbn_securitysolution_hook_utils.devdocs.json +++ b/api_docs/kbn_securitysolution_hook_utils.devdocs.json @@ -41,6 +41,7 @@ ], "path": "packages/kbn-securitysolution-hook-utils/src/use_async/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-hook-utils", @@ -56,6 +57,7 @@ ], "path": "packages/kbn-securitysolution-hook-utils/src/use_async/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -78,6 +80,7 @@ ], "path": "packages/kbn-securitysolution-hook-utils/src/use_is_mounted/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "A {@link GetIsMounted } getter function returning whether the component is currently mounted" @@ -108,6 +111,7 @@ ], "path": "packages/kbn-securitysolution-hook-utils/src/use_observable/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-hook-utils", @@ -125,6 +129,7 @@ ], "path": "packages/kbn-securitysolution-hook-utils/src/use_observable/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -155,6 +160,7 @@ ], "path": "packages/kbn-securitysolution-hook-utils/src/with_optional_signal/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-hook-utils", @@ -170,6 +176,7 @@ ], "path": "packages/kbn-securitysolution-hook-utils/src/with_optional_signal/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -201,6 +208,7 @@ ], "path": "packages/kbn-securitysolution-hook-utils/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-hook-utils", @@ -210,7 +218,8 @@ "label": "loading", "description": [], "path": "packages/kbn-securitysolution-hook-utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-hook-utils", @@ -223,7 +232,8 @@ "unknown" ], "path": "packages/kbn-securitysolution-hook-utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-hook-utils", @@ -236,7 +246,8 @@ "Result | undefined" ], "path": "packages/kbn-securitysolution-hook-utils/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-hook-utils", @@ -250,6 +261,7 @@ ], "path": "packages/kbn-securitysolution-hook-utils/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-hook-utils", @@ -263,6 +275,7 @@ ], "path": "packages/kbn-securitysolution-hook-utils/src/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -286,6 +299,7 @@ ], "path": "packages/kbn-securitysolution-hook-utils/src/use_observable/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -300,6 +314,7 @@ ], "path": "packages/kbn-securitysolution-hook-utils/src/with_optional_signal/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_securitysolution_hook_utils.mdx b/api_docs/kbn_securitysolution_hook_utils.mdx index 26f258dc04bd6..679a6d384fd0d 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_securitysolution_io_ts_alerting_types.devdocs.json index 71af5adccadde..e313879791dd2 100644 --- a/api_docs/kbn_securitysolution_io_ts_alerting_types.devdocs.json +++ b/api_docs/kbn_securitysolution_io_ts_alerting_types.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/saved_object_attributes/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-alerting-types", @@ -50,7 +51,8 @@ } ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/saved_object_attributes/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -78,6 +80,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/actions/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -100,6 +103,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/actions/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -122,6 +126,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/actions/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -136,6 +141,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -150,6 +156,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -164,6 +171,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/from/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -178,6 +186,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/from/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -192,6 +201,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -206,6 +216,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -220,6 +231,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/language/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -234,6 +246,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/language/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -248,6 +261,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/machine_learning_job_id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -262,6 +276,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/normalized_ml_job_id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -276,6 +291,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/normalized_ml_job_id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -290,6 +306,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/machine_learning_job_id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -304,6 +321,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/max_signals/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -318,6 +336,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/max_signals/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -332,6 +351,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/risk_score/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -347,6 +367,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/risk_score/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -361,6 +382,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/risk_score_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -375,6 +397,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/risk_score_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -389,6 +412,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/risk_score/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -420,6 +444,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/saved_object_attributes/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -444,6 +469,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/saved_object_attributes/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -458,6 +484,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/severity/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -472,6 +499,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/severity_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -486,6 +514,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/severity_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -500,6 +529,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/severity_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -514,6 +544,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/severity/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -528,6 +559,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -542,6 +574,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -556,6 +589,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -570,6 +604,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -584,6 +619,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -598,6 +634,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -612,6 +649,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -626,6 +664,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -640,6 +679,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -654,6 +694,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -668,6 +709,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -682,6 +724,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -696,6 +739,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -710,6 +754,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -724,6 +769,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -738,6 +784,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -752,6 +799,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -766,6 +814,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -780,6 +829,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_subtechnique/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -794,6 +844,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_technique/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -808,6 +859,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/throttle/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -822,6 +874,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/throttle/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -836,6 +889,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/throttle/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -850,6 +904,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -864,6 +919,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -907,6 +963,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/actions/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -921,6 +978,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/actions/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -939,6 +997,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/actions/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -953,6 +1012,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/actions/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -984,6 +1044,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/actions/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1027,6 +1088,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/actions/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1070,6 +1132,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/actions/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1085,6 +1148,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1104,6 +1168,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1135,6 +1200,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/default_actions_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1152,6 +1218,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/default_export_file_name/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1169,6 +1236,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/default_from_string/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1186,6 +1254,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/default_interval_string/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1203,6 +1272,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/default_language_string/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1220,6 +1290,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/default_max_signals_number/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1237,6 +1308,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/default_page/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1254,6 +1326,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/default_per_page/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1271,6 +1344,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/default_risk_score_mapping_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1288,6 +1362,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/default_severity_mapping_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1305,6 +1380,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/default_threat_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1322,6 +1398,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/default_throttle_null/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1339,6 +1416,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/default_to_string/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1356,6 +1434,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/default_uuid/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1371,6 +1450,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/from/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1390,6 +1470,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/from/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1405,6 +1486,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1424,6 +1506,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1439,6 +1522,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/language/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1458,6 +1542,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/language/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1477,6 +1562,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/machine_learning_job_id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1492,6 +1578,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/normalized_ml_job_id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1511,6 +1598,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/normalized_ml_job_id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1534,6 +1622,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/machine_learning_job_id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1549,6 +1638,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/max_signals/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1568,6 +1658,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/max_signals/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1585,6 +1676,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/references_default_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1600,6 +1692,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/risk_score/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1631,6 +1724,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/risk_score_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1645,6 +1739,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/risk_score_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1674,6 +1769,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/risk_score_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1688,6 +1784,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/risk_score_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1705,6 +1802,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/risk_score/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1740,6 +1838,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/risk_score_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1759,6 +1858,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/risk_score/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1790,6 +1890,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/saved_object_attributes/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1821,6 +1922,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/saved_object_attributes/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1852,6 +1954,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/saved_object_attributes/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1867,6 +1970,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/severity/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1894,6 +1998,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/severity_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1908,6 +2013,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/severity_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1933,6 +2039,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/severity_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1947,6 +2054,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/severity_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1978,6 +2086,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/severity_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1997,6 +2106,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/severity/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2058,6 +2168,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2075,6 +2186,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2089,6 +2201,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2106,6 +2219,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2120,6 +2234,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2139,6 +2254,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2154,6 +2270,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2168,6 +2285,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2189,6 +2307,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_subtechnique/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2203,6 +2322,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_subtechnique/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2217,6 +2337,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_subtechnique/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2231,6 +2352,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_subtechnique/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2254,6 +2376,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_subtechnique/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2275,6 +2398,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_tactic/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2289,6 +2413,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_tactic/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2303,6 +2428,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_tactic/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2317,6 +2443,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_tactic/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2356,6 +2483,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_technique/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2370,6 +2498,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_technique/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2384,6 +2513,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_technique/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2398,6 +2528,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_technique/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2439,6 +2570,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_technique/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2460,6 +2592,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2481,6 +2614,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2500,6 +2634,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2523,6 +2658,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2552,6 +2688,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2575,6 +2712,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2600,6 +2738,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2619,6 +2758,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2638,6 +2778,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat_mapping/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2701,6 +2842,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2768,6 +2910,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/threat/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2782,6 +2925,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/throttle/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2801,6 +2945,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/throttle/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2822,6 +2967,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/throttle/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2837,6 +2983,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2856,6 +3003,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-alerting-types/src/type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/kbn_securitysolution_io_ts_alerting_types.mdx b/api_docs/kbn_securitysolution_io_ts_alerting_types.mdx index 6b90554741883..3e7bae71056d5 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_securitysolution_io_ts_list_types.devdocs.json index e47182c7e171b..027cbb793cc9f 100644 --- a/api_docs/kbn_securitysolution_io_ts_list_types.devdocs.json +++ b/api_docs/kbn_securitysolution_io_ts_list_types.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/update_exception_list_item_validation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -44,6 +45,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/update_exception_list_item_validation/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -62,6 +64,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/update_exception_list_item_validation/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -75,6 +78,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/update_exception_list_item_validation/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -92,6 +96,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -104,7 +109,8 @@ "HttpStart" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -117,7 +123,8 @@ "AbortSignal" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -131,6 +138,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -143,7 +151,8 @@ "HttpStart" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -156,7 +165,8 @@ "{ description: string; entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; } | { field: string; list: { id: string; type: \"boolean\" | \"date\" | \"keyword\" | \"ip\" | \"text\" | \"geo_point\" | \"geo_shape\" | \"date_nanos\" | \"long\" | \"double\" | \"date_range\" | \"ip_range\" | \"shape\" | \"short\" | \"binary\" | \"float\" | \"half_float\" | \"integer\" | \"byte\" | \"long_range\" | \"integer_range\" | \"float_range\" | \"double_range\"; }; operator: \"excluded\" | \"included\"; type: \"list\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"wildcard\"; value: string; } | { entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; } | { field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; })[]; field: string; type: \"nested\"; })[]; list_id: string; name: string; type: \"simple\"; } & { comments?: { comment: string; }[] | undefined; item_id?: string | undefined; meta?: object | undefined; namespace_type?: \"single\" | \"agnostic\" | undefined; os_types?: (\"windows\" | \"linux\" | \"macos\")[] | undefined; tags?: string[] | undefined; }" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -169,7 +179,8 @@ "AbortSignal" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -183,6 +194,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -195,7 +207,8 @@ "HttpStart" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -208,7 +221,8 @@ "{ description: string; name: string; type: \"endpoint\" | \"detection\" | \"rule_default\" | \"endpoint_trusted_apps\" | \"endpoint_events\" | \"endpoint_host_isolation_exceptions\" | \"endpoint_blocklists\"; } & { list_id?: string | undefined; meta?: object | undefined; namespace_type?: \"single\" | \"agnostic\" | undefined; os_types?: (\"windows\" | \"linux\" | \"macos\")[] | undefined; tags?: string[] | undefined; version?: number | undefined; }" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -221,7 +235,8 @@ "AbortSignal" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -235,6 +250,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -247,7 +263,8 @@ "HttpStart" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -257,7 +274,8 @@ "label": "id", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -270,7 +288,8 @@ "\"single\" | \"agnostic\"" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -283,7 +302,8 @@ "AbortSignal" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -297,6 +317,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -309,7 +330,8 @@ "HttpStart" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -322,7 +344,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -335,7 +358,8 @@ "(\"single\" | \"agnostic\")[]" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -355,7 +379,8 @@ "[]" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -368,7 +393,8 @@ "{ page?: number | undefined; perPage?: number | undefined; total?: number | undefined; }" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -381,7 +407,8 @@ "AbortSignal" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -395,6 +422,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -407,7 +435,8 @@ "HttpStart" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -417,7 +446,8 @@ "label": "namespaceTypes", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -430,7 +460,8 @@ "{ page?: number | undefined; perPage?: number | undefined; total?: number | undefined; }" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -440,7 +471,8 @@ "label": "filters", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -453,7 +485,8 @@ "AbortSignal" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -467,6 +500,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -486,7 +520,8 @@ "[]" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -506,7 +541,8 @@ "[]" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -519,7 +555,8 @@ "{ page?: number | undefined; perPage?: number | undefined; total?: number | undefined; }" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -529,7 +566,8 @@ "label": "showDetectionsListsOnly", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -539,7 +577,8 @@ "label": "showEndpointListsOnly", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -553,6 +592,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -566,6 +606,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -591,6 +632,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -610,6 +652,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -627,6 +670,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -636,7 +680,8 @@ "label": "id", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -649,7 +694,8 @@ "\"single\" | \"agnostic\"" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -663,6 +709,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -676,6 +723,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -693,6 +741,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -708,6 +757,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -717,7 +767,8 @@ "label": "id", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -727,7 +778,8 @@ "label": "listId", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -740,7 +792,8 @@ "\"single\" | \"agnostic\"" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -754,6 +807,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -767,6 +821,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -784,6 +839,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -797,6 +853,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -824,6 +881,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -833,7 +891,8 @@ "label": "totalItems", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -847,6 +906,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -859,7 +919,8 @@ "string | null | undefined" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -872,7 +933,8 @@ "string | null | undefined" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -885,7 +947,8 @@ "string | null | undefined" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -898,7 +961,8 @@ "string | null | undefined" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -911,7 +975,8 @@ "string | null | undefined" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -925,6 +990,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -934,7 +1000,8 @@ "label": "id", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -944,7 +1011,8 @@ "label": "listId", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -957,7 +1025,8 @@ "\"single\" | \"agnostic\"" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -970,7 +1039,8 @@ "\"endpoint\" | \"detection\" | \"rule_default\" | \"endpoint_trusted_apps\" | \"endpoint_events\" | \"endpoint_host_isolation_exceptions\" | \"endpoint_blocklists\"" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -984,6 +1054,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -996,7 +1067,8 @@ "HttpStart" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1006,7 +1078,8 @@ "label": "id", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1016,7 +1089,8 @@ "label": "listId", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1029,7 +1103,8 @@ "\"single\" | \"agnostic\"" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1042,7 +1117,8 @@ "AbortSignal" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1056,6 +1132,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1065,7 +1142,8 @@ "label": "filter", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1078,7 +1156,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1092,6 +1171,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1101,7 +1181,8 @@ "label": "page", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1111,7 +1192,8 @@ "label": "perPage", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1124,7 +1206,8 @@ "number | undefined" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1138,6 +1221,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1150,7 +1234,8 @@ "HttpStart" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1164,6 +1249,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1177,6 +1263,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1194,6 +1281,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1206,7 +1294,8 @@ "HttpStart" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1219,7 +1308,8 @@ "{ description: string; entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; } | { field: string; list: { id: string; type: \"boolean\" | \"date\" | \"keyword\" | \"ip\" | \"text\" | \"geo_point\" | \"geo_shape\" | \"date_nanos\" | \"long\" | \"double\" | \"date_range\" | \"ip_range\" | \"shape\" | \"short\" | \"binary\" | \"float\" | \"half_float\" | \"integer\" | \"byte\" | \"long_range\" | \"integer_range\" | \"float_range\" | \"double_range\"; }; operator: \"excluded\" | \"included\"; type: \"list\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"wildcard\"; value: string; } | { entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; } | { field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; })[]; field: string; type: \"nested\"; })[]; name: string; type: \"simple\"; } & { _version?: string | undefined; comments?: ({ comment: string; } & { id?: string | undefined; })[] | undefined; id?: string | undefined; item_id?: string | undefined; meta?: object | undefined; namespace_type?: \"single\" | \"agnostic\" | undefined; os_types?: (\"windows\" | \"linux\" | \"macos\")[] | undefined; tags?: string[] | undefined; }" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1232,7 +1322,8 @@ "AbortSignal" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1246,6 +1337,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1258,7 +1350,8 @@ "HttpStart" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1271,7 +1364,8 @@ "{ description: string; name: string; type: \"endpoint\" | \"detection\" | \"rule_default\" | \"endpoint_trusted_apps\" | \"endpoint_events\" | \"endpoint_host_isolation_exceptions\" | \"endpoint_blocklists\"; } & { _version?: string | undefined; id?: string | undefined; list_id?: string | undefined; meta?: object | undefined; namespace_type?: \"single\" | \"agnostic\" | undefined; os_types?: (\"windows\" | \"linux\" | \"macos\")[] | undefined; tags?: string[] | undefined; version?: number | undefined; }" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1284,7 +1378,8 @@ "AbortSignal" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1298,6 +1393,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1310,7 +1406,8 @@ "{ _version: string | undefined; comments: ({ comment: string; created_at: string; created_by: string; id: string; } & { updated_at?: string | undefined; updated_by?: string | undefined; })[]; created_at: string; created_by: string; description: string; entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; } | { field: string; list: { id: string; type: \"boolean\" | \"date\" | \"keyword\" | \"ip\" | \"text\" | \"geo_point\" | \"geo_shape\" | \"date_nanos\" | \"long\" | \"double\" | \"date_range\" | \"ip_range\" | \"shape\" | \"short\" | \"binary\" | \"float\" | \"half_float\" | \"integer\" | \"byte\" | \"long_range\" | \"integer_range\" | \"float_range\" | \"double_range\"; }; operator: \"excluded\" | \"included\"; type: \"list\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"wildcard\"; value: string; } | { entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; } | { field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; })[]; field: string; type: \"nested\"; })[]; id: string; item_id: string; list_id: string; meta: object | undefined; name: string; namespace_type: \"single\" | \"agnostic\"; os_types: (\"windows\" | \"linux\" | \"macos\")[]; tags: string[]; tie_breaker_id: string; type: \"simple\"; updated_at: string; updated_by: string; }[]" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1329,7 +1426,8 @@ } ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1343,6 +1441,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1355,7 +1454,8 @@ "HttpStart" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1375,7 +1475,8 @@ "[]" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1389,6 +1490,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1402,6 +1504,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1425,7 +1528,8 @@ "[]" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1445,7 +1549,8 @@ " | undefined" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1455,7 +1560,8 @@ "label": "showDetectionsListsOnly", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1465,7 +1571,8 @@ "label": "showEndpointListsOnly", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1475,7 +1582,8 @@ "label": "matchFilters", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1497,6 +1605,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1516,6 +1625,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1533,6 +1643,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1542,7 +1653,8 @@ "label": "errorMessage", "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1562,7 +1674,8 @@ " | undefined" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1575,7 +1688,8 @@ "HttpStart" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1588,7 +1702,8 @@ "(\"single\" | \"agnostic\")[]" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1601,7 +1716,8 @@ "any" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1621,7 +1737,8 @@ " | undefined" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1634,7 +1751,8 @@ "readonly string[] | undefined" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1648,6 +1766,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1660,7 +1779,8 @@ "{ _version: string | undefined; created_at: string; created_by: string; description: string; id: string; immutable: boolean; list_id: string; meta: object | undefined; name: string; namespace_type: \"single\" | \"agnostic\"; os_types: (\"windows\" | \"linux\" | \"macos\")[]; tags: string[]; tie_breaker_id: string; type: \"endpoint\" | \"detection\" | \"rule_default\" | \"endpoint_trusted_apps\" | \"endpoint_events\" | \"endpoint_host_isolation_exceptions\" | \"endpoint_blocklists\"; updated_at: string; updated_by: string; version: number; }[]" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -1679,7 +1799,8 @@ } ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1695,6 +1816,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/exception_list/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1706,6 +1828,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/list_operator/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1717,6 +1840,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/list_operator/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1733,6 +1857,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/underscore_version/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1747,6 +1872,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/acknowledge_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1761,6 +1887,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/typescript_types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1775,6 +1902,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/import_exceptions_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1789,6 +1917,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1803,6 +1932,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1817,6 +1947,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1831,6 +1962,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/create_comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1845,6 +1977,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/create_comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1859,6 +1992,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/create_comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1873,6 +2007,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/create_comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1887,6 +2022,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/create_endpoint_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1901,6 +2037,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/create_endpoint_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1915,6 +2052,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/create_endpoint_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1929,6 +2067,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/create_exception_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1943,6 +2082,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/create_exception_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1957,6 +2097,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/create_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1971,6 +2112,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/create_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1985,6 +2127,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/create_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1999,6 +2142,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/create_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2013,6 +2157,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/create_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2027,6 +2172,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/create_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2041,6 +2187,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/create_rule_exception_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2055,6 +2202,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/create_rule_exception_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2069,6 +2217,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/cursor/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2083,6 +2232,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/cursor/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2097,6 +2247,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/default_namespace_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2111,6 +2262,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/default_namespace_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2125,6 +2277,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/delete_endpoint_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2139,6 +2292,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/delete_endpoint_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2153,6 +2307,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/delete_exception_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2167,6 +2322,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/delete_exception_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2181,6 +2337,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/delete_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2195,6 +2352,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/delete_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2209,6 +2367,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/delete_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2223,6 +2382,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/delete_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2237,6 +2397,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/delete_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2251,6 +2412,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/delete_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2265,6 +2427,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/description/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2279,6 +2442,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/description/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2293,6 +2457,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/deserializer/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2307,6 +2472,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/deserializer/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2321,6 +2487,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/endpoint/entries/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2335,6 +2502,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/endpoint/non_empty_nested_entries_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2349,6 +2517,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/entries/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2363,6 +2532,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/entries/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2377,6 +2547,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/entries/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2391,6 +2562,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/entries_exist/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2405,6 +2577,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/entries_list/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2419,6 +2592,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/entry_match/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2433,6 +2607,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/entry_match_any/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2447,6 +2622,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/entry_match_wildcard/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2461,6 +2637,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/entry_nested/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2475,6 +2652,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/exception_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2489,6 +2667,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/exception_list_item_type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2503,6 +2682,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/exception_list_item_type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2517,6 +2697,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2531,6 +2712,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/exception_list_summary_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2545,6 +2727,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/exception_list/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2559,6 +2742,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/exception_list/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2573,6 +2757,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/exception_export_details/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2587,6 +2772,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/export_exception_list_query_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2601,6 +2787,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/export_list_item_query_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2615,6 +2802,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/export_list_item_query_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2629,6 +2817,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/filter/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2643,6 +2832,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/filter/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2657,6 +2847,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/find_endpoint_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2671,6 +2862,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/find_endpoint_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2685,6 +2877,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/find_exception_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2699,6 +2892,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/find_exception_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2713,6 +2907,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/find_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2727,6 +2922,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/find_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2741,6 +2937,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/find_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2755,6 +2952,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/find_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2769,6 +2967,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/find_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2783,6 +2982,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/find_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2797,6 +2997,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/found_exception_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2811,6 +3012,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/found_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2825,6 +3027,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/found_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2839,6 +3042,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/found_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2853,6 +3057,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2867,6 +3072,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2881,6 +3087,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/immutable/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2895,6 +3102,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/immutable/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2909,6 +3117,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/import_comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2923,6 +3132,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/import_comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2937,6 +3147,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/import_comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2951,6 +3162,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/import_exception_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2965,6 +3177,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/import_exception_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2979,6 +3192,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/import_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2993,6 +3207,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/import_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3007,6 +3222,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/import_exceptions_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3021,6 +3237,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/import_list_item_query_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3035,6 +3252,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/import_list_item_query_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3049,6 +3267,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/import_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3063,6 +3282,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/import_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3077,6 +3297,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/item_id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3091,6 +3312,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/item_id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3105,6 +3327,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/lists/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3119,6 +3342,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/lists/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3133,6 +3357,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/lists/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3147,6 +3372,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3161,6 +3387,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/list_id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3175,6 +3402,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/list_id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3189,6 +3417,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3203,6 +3432,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/list_item_index_exist_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3217,6 +3447,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3231,6 +3462,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/list_operator/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3245,6 +3477,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3259,6 +3492,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/list_type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3273,6 +3507,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/max_size/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3287,6 +3522,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/max_size/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3301,6 +3537,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/meta/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3315,6 +3552,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/meta/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3329,6 +3567,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/name/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3343,6 +3582,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/name/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3357,6 +3597,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/default_namespace/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3371,6 +3612,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/default_namespace_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3385,6 +3627,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/non_empty_nested_entries_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3399,6 +3642,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/endpoint/entries/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3413,6 +3657,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/endpoint/entries/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3427,6 +3672,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/endpoint/non_empty_nested_entries_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3441,6 +3687,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/endpoint/non_empty_nested_entries_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3455,6 +3702,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/non_empty_entries_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3469,6 +3717,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/non_empty_entries_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3483,6 +3732,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/non_empty_nested_entries_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3497,6 +3747,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/non_empty_nested_entries_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3511,6 +3762,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/os_type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3525,6 +3777,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/os_type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3539,6 +3792,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/os_type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3553,6 +3807,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/page/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3567,6 +3822,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/page/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3581,6 +3837,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/patch_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3595,6 +3852,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/patch_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3609,6 +3867,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/patch_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3623,6 +3882,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/patch_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3637,6 +3897,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/per_page/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3651,6 +3912,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/per_page/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3665,6 +3927,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/pit/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3679,6 +3942,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/pit/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3693,6 +3957,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/pit/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3707,6 +3972,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/read_endpoint_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3721,6 +3987,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/read_endpoint_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3735,6 +4002,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/read_exception_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3749,6 +4017,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/read_exception_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3763,6 +4032,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/read_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3777,6 +4047,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/read_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3791,6 +4062,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/read_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3805,6 +4077,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/read_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3819,6 +4092,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/read_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3833,6 +4107,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/search_after/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3847,6 +4122,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/search_after/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3861,6 +4137,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/search_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3875,6 +4152,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/search_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3889,6 +4167,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/serializer/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3903,6 +4182,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/serializer/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3917,6 +4197,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/sort_field/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3931,6 +4212,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/sort_order/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3945,6 +4227,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/summary_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3959,6 +4242,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/summary_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3973,6 +4257,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/tags/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3987,6 +4272,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/tags/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4001,6 +4287,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/total/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4015,6 +4302,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4029,6 +4317,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4043,6 +4332,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/update_comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4057,6 +4347,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/update_comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4071,6 +4362,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/update_comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4085,6 +4377,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/update_endpoint_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4099,6 +4392,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/update_endpoint_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4113,6 +4407,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/update_exception_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4127,6 +4422,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/update_exception_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4141,6 +4437,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/update_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4155,6 +4452,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/update_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4169,6 +4467,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/update_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4183,6 +4482,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/update_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4197,6 +4497,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/update_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4211,6 +4512,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/update_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -4227,6 +4529,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/underscore_version/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4246,6 +4549,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/underscore_version/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4265,6 +4569,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/acknowledge_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4286,6 +4591,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/import_exceptions_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4321,6 +4627,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/import_exceptions_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4356,6 +4663,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4393,6 +4701,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4434,6 +4743,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4453,6 +4763,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/create_comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4474,6 +4785,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/create_comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4499,6 +4811,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/create_comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4513,6 +4826,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/created_at/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4527,6 +4841,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/created_by/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4572,6 +4887,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/create_endpoint_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4637,6 +4953,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/create_endpoint_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4686,6 +5003,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/create_exception_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4731,6 +5049,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/create_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4762,6 +5081,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/create_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4801,6 +5121,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/create_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4850,6 +5171,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/create_rule_exception_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4864,6 +5186,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/cursor/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4883,6 +5206,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/cursor/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4900,6 +5224,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/default_create_comments_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4917,6 +5242,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/default_import_comments_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4934,6 +5260,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/lists_default_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4951,6 +5278,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/default_namespace/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4968,6 +5296,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/default_namespace_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4989,6 +5318,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/delete_endpoint_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5012,6 +5342,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/delete_exception_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5035,6 +5366,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/delete_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5068,6 +5400,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/delete_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5097,6 +5430,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/delete_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5111,6 +5445,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/description/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5130,6 +5465,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/description/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5144,6 +5480,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/deserializer/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5163,6 +5500,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/deserializer/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5226,6 +5564,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/endpoint/entries/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5267,6 +5606,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/endpoint/non_empty_nested_entries_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5358,6 +5698,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/entries/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5453,6 +5794,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/entries/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5476,6 +5818,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/entries_exist/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5507,6 +5850,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/entries_list/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5532,6 +5876,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/entry_match/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5557,6 +5902,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/entry_match_any/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5582,6 +5928,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/entry_match_wildcard/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5605,6 +5952,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/entry_nested/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5684,6 +6032,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/entries/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5843,6 +6192,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/exception_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5858,6 +6208,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/exception_list_item_type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5877,6 +6228,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/exception_list_item_type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5936,6 +6288,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5961,6 +6314,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/exception_list_summary_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5976,6 +6330,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/exception_list/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5995,6 +6350,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/exception_list/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6006,6 +6362,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/exception_export_details/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -6018,7 +6375,8 @@ "NumberC" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/exception_export_details/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -6031,7 +6389,8 @@ "NumberC" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/exception_export_details/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -6044,7 +6403,8 @@ "NumberC" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/exception_export_details/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -6064,7 +6424,8 @@ "; }>>>" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/exception_export_details/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -6084,7 +6445,8 @@ "; }>>>" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/exception_export_details/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-list-types", @@ -6097,7 +6459,8 @@ "NumberC" ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/exception_export_details/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6141,6 +6504,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/exception_export_details/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6164,6 +6528,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/export_exception_list_query_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6183,6 +6548,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/export_list_item_query_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6197,6 +6563,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/filter/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6216,6 +6583,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/filter/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6243,6 +6611,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/find_endpoint_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6280,6 +6649,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/find_exception_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6309,6 +6679,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/find_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6346,6 +6717,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/find_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6375,6 +6747,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/find_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6554,6 +6927,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/found_exception_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6633,6 +7007,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/found_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6706,6 +7081,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/found_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6783,6 +7159,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/found_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6798,6 +7175,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6817,6 +7195,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6831,6 +7210,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/immutable/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6850,6 +7230,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/immutable/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6893,6 +7274,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/import_comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6938,6 +7320,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/import_comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6987,6 +7370,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/import_comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7052,6 +7436,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/import_exception_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7115,6 +7500,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/import_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7168,6 +7554,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/import_exceptions_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7193,6 +7580,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/import_list_item_query_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7212,6 +7600,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/import_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7227,6 +7616,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/item_id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7246,6 +7636,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/item_id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7271,6 +7662,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/lists/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7286,6 +7678,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/list_id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7305,6 +7698,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/list_id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7320,6 +7714,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/list_type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7347,6 +7742,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/lists/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7378,6 +7774,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/lists/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7443,6 +7840,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7504,6 +7902,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7525,6 +7924,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/list_item_index_exist_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7584,6 +7984,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7599,6 +8000,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/list_operator/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7662,6 +8064,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7677,6 +8080,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/max_size/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7696,6 +8100,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/max_size/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7710,6 +8115,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/meta/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7729,6 +8135,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/meta/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7743,6 +8150,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/name/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7762,6 +8170,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/name/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7777,6 +8186,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/default_namespace/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7794,6 +8204,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/default_namespace_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7845,6 +8256,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/non_empty_nested_entries_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7894,6 +8306,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/non_empty_nested_entries_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7911,6 +8324,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/endpoint/entries/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7928,6 +8342,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/endpoint/non_empty_nested_entries_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7945,6 +8360,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/non_empty_entries_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7962,6 +8378,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/non_empty_nested_entries_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7977,6 +8394,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/os_type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7992,6 +8410,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/os_type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8011,6 +8430,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/os_type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8025,6 +8445,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/page/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8044,6 +8465,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/page/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8075,6 +8497,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/patch_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8110,6 +8533,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/patch_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8124,6 +8548,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/per_page/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8143,6 +8568,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/per_page/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8168,6 +8594,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/pit/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8182,6 +8609,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/pit/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8211,6 +8639,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/pit/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8232,6 +8661,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/read_endpoint_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8255,6 +8685,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/read_exception_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8278,6 +8709,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/read_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8301,6 +8733,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/read_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8320,6 +8753,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/read_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8337,6 +8771,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/search_after/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8358,6 +8793,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/search_after/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8427,6 +8863,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/search_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8496,6 +8933,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/response/search_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8510,6 +8948,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/serializer/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8529,6 +8968,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/serializer/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8543,6 +8983,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/sort_field/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8558,6 +8999,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/sort_order/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8577,6 +9019,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/sort_field/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8596,6 +9039,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/sort_order/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8621,6 +9065,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/summary_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8636,6 +9081,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/tags/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8655,6 +9101,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/tags/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8669,6 +9116,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/tie_breaker_id/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8683,6 +9131,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/total/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8702,6 +9151,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/total/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8719,6 +9169,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8738,6 +9189,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/type/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8765,6 +9217,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/update_comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8794,6 +9247,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/update_comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8827,6 +9281,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/update_comment/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8841,6 +9296,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/updated_at/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8855,6 +9311,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/common/updated_by/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8908,6 +9365,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/update_endpoint_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8963,6 +9421,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/update_exception_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9012,6 +9471,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/update_exception_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9043,6 +9503,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/update_list_item_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9078,6 +9539,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-list-types/src/request/update_list_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/kbn_securitysolution_io_ts_list_types.mdx b/api_docs/kbn_securitysolution_io_ts_list_types.mdx index d0b362d717ef1..fb03b23a345c5 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_securitysolution_io_ts_types.devdocs.json index 10257f2a0622a..1ba52a1137ef1 100644 --- a/api_docs/kbn_securitysolution_io_ts_types.devdocs.json +++ b/api_docs/kbn_securitysolution_io_ts_types.devdocs.json @@ -41,6 +41,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/default_array/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-types", @@ -54,6 +55,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/default_array/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -78,6 +80,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/default_csv_array/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-types", @@ -94,6 +97,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/default_csv_array/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -110,6 +114,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/default_csv_array/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -134,6 +139,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/default_value/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-types", @@ -150,6 +156,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/default_value/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -166,6 +173,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/default_value/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -182,6 +190,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/default_value/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -204,6 +213,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/enumeration/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-types", @@ -219,6 +229,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/enumeration/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -235,6 +246,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/enumeration/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -263,6 +275,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/limited_size_array/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-types", @@ -273,6 +286,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-types/src/limited_size_array/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-types", @@ -285,7 +299,8 @@ "C" ], "path": "packages/kbn-securitysolution-io-ts-types/src/limited_size_array/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-types", @@ -298,7 +313,8 @@ "number | undefined" ], "path": "packages/kbn-securitysolution-io-ts-types/src/limited_size_array/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-types", @@ -311,7 +327,8 @@ "number | undefined" ], "path": "packages/kbn-securitysolution-io-ts-types/src/limited_size_array/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-io-ts-types", @@ -324,7 +341,8 @@ "string | undefined" ], "path": "packages/kbn-securitysolution-io-ts-types/src/limited_size_array/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -352,6 +370,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/non_empty_array/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-types", @@ -365,6 +384,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/non_empty_array/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -379,6 +399,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/non_empty_array/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -402,6 +423,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/default_string_boolean_false/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -416,6 +438,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/default_version_number/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -430,6 +453,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/empty_string_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -444,6 +468,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/empty_string_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -458,6 +483,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/import_query_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -472,6 +498,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/import_query_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -487,6 +514,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/iso_date_string/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -501,6 +529,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/non_empty_or_nullable_string_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -515,6 +544,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/non_empty_or_nullable_string_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -529,6 +559,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/non_empty_string_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -543,6 +574,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/non_empty_string_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -558,6 +590,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/non_empty_string/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -572,6 +605,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/operator/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -583,6 +617,7 @@ "description": [], "path": "packages/kbn-securitysolution-io-ts-types/src/operator/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -598,6 +633,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/string_to_positive_number/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -613,6 +649,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/uuid/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -627,6 +664,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/version/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -641,6 +679,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/version/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -660,6 +699,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/default_boolean_false/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -677,6 +717,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/default_boolean_true/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -694,6 +735,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/default_empty_string/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -711,6 +753,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/default_string_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -728,6 +771,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/default_string_boolean_false/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -745,6 +789,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/default_uuid/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -762,6 +807,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/default_version_number/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -779,6 +825,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/empty_string_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -800,6 +847,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/import_query_schema/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -817,6 +865,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/iso_date_string/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -834,6 +883,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/non_empty_or_nullable_string_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -851,6 +901,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/non_empty_string/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -868,6 +919,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/non_empty_string_array/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -885,6 +937,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/only_false_allowed/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -900,6 +953,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/operator/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -915,6 +969,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/operator/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -932,6 +987,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/positive_integer/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -949,6 +1005,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/positive_integer_greater_than_zero/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -966,6 +1023,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/string_to_positive_number/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -983,6 +1041,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/uuid/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1000,6 +1059,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/version/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1019,6 +1079,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-types/src/version/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/kbn_securitysolution_io_ts_types.mdx b/api_docs/kbn_securitysolution_io_ts_types.mdx index 7f2550bdccca0..e15f7b18725a2 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_securitysolution_io_ts_utils.devdocs.json index c7e1e6a5c07b1..8f8e06aef68be 100644 --- a/api_docs/kbn_securitysolution_io_ts_utils.devdocs.json +++ b/api_docs/kbn_securitysolution_io_ts_utils.devdocs.json @@ -41,6 +41,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/exact_check/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-utils", @@ -56,6 +57,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/exact_check/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -75,6 +77,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/exact_check/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -93,6 +96,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/exact_check/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-utils", @@ -106,6 +110,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/exact_check/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -120,6 +125,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/exact_check/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -142,6 +148,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/test_utils/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -158,7 +165,8 @@ "" ], "path": "node_modules/fp-ts/lib/Either.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -177,6 +185,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/format_errors/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-utils", @@ -190,6 +199,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/format_errors/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -212,6 +222,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/test_utils/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-utils", @@ -228,6 +239,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/test_utils/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -246,6 +258,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/parse_schedule_dates/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-utils", @@ -259,6 +272,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/parse_schedule_dates/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -279,6 +293,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/test_utils/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-utils", @@ -292,6 +307,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/test_utils/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -314,6 +330,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/validate/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-utils", @@ -327,6 +344,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/validate/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -341,6 +359,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/validate/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -363,6 +382,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/validate/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-utils", @@ -376,6 +396,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/validate/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -390,6 +411,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/validate/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -412,6 +434,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/validate/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-utils", @@ -425,6 +448,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/validate/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -439,6 +463,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/validate/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -461,6 +486,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/validate/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-io-ts-utils", @@ -474,6 +500,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/validate/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -488,6 +515,7 @@ ], "path": "packages/kbn-securitysolution-io-ts-utils/src/validate/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_securitysolution_io_ts_utils.mdx b/api_docs/kbn_securitysolution_io_ts_utils.mdx index 1ce75c27b58a3..4846fce79df38 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_securitysolution_list_api.devdocs.json index 187cd30854976..5f06475094776 100644 --- a/api_docs/kbn_securitysolution_list_api.devdocs.json +++ b/api_docs/kbn_securitysolution_list_api.devdocs.json @@ -33,6 +33,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -46,6 +47,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -66,6 +68,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -79,6 +82,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -99,6 +103,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -112,6 +117,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -138,6 +144,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/list_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -157,6 +164,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/list_api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -177,6 +185,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -190,6 +199,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -210,6 +220,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -223,6 +234,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -249,6 +261,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/list_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -268,6 +281,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/list_api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -292,6 +306,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -305,6 +320,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -331,6 +347,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/list_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -350,6 +367,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/list_api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -370,6 +388,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -383,6 +402,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -403,6 +423,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -416,6 +437,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -436,6 +458,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -449,6 +472,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -469,6 +493,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -482,6 +507,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -508,6 +534,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/list_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -527,6 +554,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/list_api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -553,6 +581,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/list_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -572,6 +601,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/list_api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -598,6 +628,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/list_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -617,6 +648,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/list_api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -643,6 +675,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/list_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -662,6 +695,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/list_api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -680,6 +714,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/fp_utils/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -693,6 +728,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/fp_utils/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -713,6 +749,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/fp_utils/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -727,6 +764,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/fp_utils/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -747,6 +785,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -760,6 +799,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -780,6 +820,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -793,6 +834,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -810,6 +852,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-api/src/list_api/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -822,7 +865,8 @@ "HttpStart" ], "path": "packages/kbn-securitysolution-list-api/src/list_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-api", @@ -835,7 +879,8 @@ "AbortSignal" ], "path": "packages/kbn-securitysolution-list-api/src/list_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -866,6 +911,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/list_api/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -878,7 +924,8 @@ "boolean | undefined" ], "path": "packages/kbn-securitysolution-list-api/src/list_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-api", @@ -888,7 +935,8 @@ "label": "id", "description": [], "path": "packages/kbn-securitysolution-list-api/src/list_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-api", @@ -901,7 +949,8 @@ "boolean | undefined" ], "path": "packages/kbn-securitysolution-list-api/src/list_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -932,6 +981,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/list_api/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -941,7 +991,8 @@ "label": "listId", "description": [], "path": "packages/kbn-securitysolution-list-api/src/list_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -972,6 +1023,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/list_api/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -984,7 +1036,8 @@ "string | undefined" ], "path": "packages/kbn-securitysolution-list-api/src/list_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-api", @@ -997,7 +1050,8 @@ "number | undefined" ], "path": "packages/kbn-securitysolution-list-api/src/list_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-api", @@ -1010,7 +1064,8 @@ "number | undefined" ], "path": "packages/kbn-securitysolution-list-api/src/list_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-api", @@ -1023,7 +1078,8 @@ "\"asc\" | \"desc\" | undefined" ], "path": "packages/kbn-securitysolution-list-api/src/list_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-api", @@ -1036,7 +1092,8 @@ "string | undefined" ], "path": "packages/kbn-securitysolution-list-api/src/list_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1067,6 +1124,7 @@ ], "path": "packages/kbn-securitysolution-list-api/src/list_api/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-api", @@ -1079,7 +1137,8 @@ "File" ], "path": "packages/kbn-securitysolution-list-api/src/list_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-api", @@ -1092,7 +1151,8 @@ "string | undefined" ], "path": "packages/kbn-securitysolution-list-api/src/list_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-api", @@ -1105,7 +1165,8 @@ "\"boolean\" | \"date\" | \"keyword\" | \"ip\" | \"text\" | \"geo_point\" | \"geo_shape\" | \"date_nanos\" | \"long\" | \"double\" | \"date_range\" | \"ip_range\" | \"shape\" | \"short\" | \"binary\" | \"float\" | \"half_float\" | \"integer\" | \"byte\" | \"long_range\" | \"integer_range\" | \"float_range\" | \"double_range\" | undefined" ], "path": "packages/kbn-securitysolution-list-api/src/list_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_securitysolution_list_api.mdx b/api_docs/kbn_securitysolution_list_api.mdx index eb06f98d8444c..fcec313dc1700 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/securitysolution-list-api'] --- import kbnSecuritysolutionListApiObj from './kbn_securitysolution_list_api.devdocs.json'; diff --git a/api_docs/kbn_securitysolution_list_constants.devdocs.json b/api_docs/kbn_securitysolution_list_constants.devdocs.json index d9554643ebe93..a4ec4fcc115c1 100644 --- a/api_docs/kbn_securitysolution_list_constants.devdocs.json +++ b/api_docs/kbn_securitysolution_list_constants.devdocs.json @@ -34,6 +34,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48,6 +49,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -62,6 +64,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -78,6 +81,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -94,6 +98,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -110,6 +115,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -124,6 +130,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -138,6 +145,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -152,6 +160,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -168,6 +177,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -184,6 +194,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -200,6 +211,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -216,6 +228,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -232,6 +245,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -248,6 +262,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -264,6 +279,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -280,6 +296,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -294,6 +311,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -308,6 +326,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -324,6 +343,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -340,6 +360,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -351,6 +372,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -362,6 +384,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -373,6 +396,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -389,6 +413,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -403,6 +428,7 @@ ], "path": "packages/kbn-securitysolution-list-constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_securitysolution_list_constants.mdx b/api_docs/kbn_securitysolution_list_constants.mdx index 882ec26b4ba46..352154a93c556 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_securitysolution_list_hooks.devdocs.json index 4524abffb5cf3..ed317805a036b 100644 --- a/api_docs/kbn_securitysolution_list_hooks.devdocs.json +++ b/api_docs/kbn_securitysolution_list_hooks.devdocs.json @@ -33,6 +33,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/transforms/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -48,6 +49,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/transforms/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -70,6 +72,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/transforms/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -85,6 +88,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/transforms/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -107,6 +111,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/transforms/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -122,6 +127,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/transforms/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -142,6 +148,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/transforms/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -155,6 +162,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/transforms/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -175,6 +183,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/transforms/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -190,6 +199,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/transforms/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -217,6 +227,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -230,6 +241,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -254,6 +266,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_create_list_index/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -278,6 +291,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_cursor/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -297,6 +311,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_cursor/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -321,6 +336,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_delete_list/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -348,6 +364,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_exception_list_items/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -361,6 +378,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_exception_list_items/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -390,6 +408,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_exception_lists/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -403,6 +422,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_exception_lists/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -427,6 +447,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_export_list/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -449,6 +470,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_find_lists/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -471,6 +493,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_import_list/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -498,6 +521,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_persist_exception_item/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -511,6 +535,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_persist_exception_item/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -540,6 +565,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_persist_exception_list/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -553,6 +579,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_persist_exception_list/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -577,6 +604,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_read_list_index/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -599,6 +627,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_read_list_privileges/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -614,6 +643,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -627,6 +657,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -637,6 +668,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -649,7 +681,8 @@ "{ description: string; entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { field: string; list: { id: string; type: \"boolean\" | \"date\" | \"keyword\" | \"ip\" | \"text\" | \"geo_point\" | \"geo_shape\" | \"date_nanos\" | \"long\" | \"double\" | \"date_range\" | \"ip_range\" | \"shape\" | \"short\" | \"binary\" | \"float\" | \"half_float\" | \"integer\" | \"byte\" | \"long_range\" | \"integer_range\" | \"float_range\" | \"double_range\"; }; operator: \"excluded\" | \"included\"; type: \"list\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; } | { field: string; operator: \"excluded\" | \"included\"; type: \"wildcard\"; value: string; } | { entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; })[]; field: string; type: \"nested\"; })[]; list_id: string; name: string; type: \"simple\"; } & { comments?: { comment: string; }[] | undefined; item_id?: string | undefined; meta?: object | undefined; namespace_type?: \"single\" | \"agnostic\" | undefined; os_types?: (\"windows\" | \"linux\" | \"macos\")[] | undefined; tags?: string[] | undefined; }" ], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -668,6 +701,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -678,6 +712,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -690,7 +725,8 @@ "{ description: string; entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { field: string; list: { id: string; type: \"boolean\" | \"date\" | \"keyword\" | \"ip\" | \"text\" | \"geo_point\" | \"geo_shape\" | \"date_nanos\" | \"long\" | \"double\" | \"date_range\" | \"ip_range\" | \"shape\" | \"short\" | \"binary\" | \"float\" | \"half_float\" | \"integer\" | \"byte\" | \"long_range\" | \"integer_range\" | \"float_range\" | \"double_range\"; }; operator: \"excluded\" | \"included\"; type: \"list\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; } | { field: string; operator: \"excluded\" | \"included\"; type: \"wildcard\"; value: string; } | { entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; })[]; field: string; type: \"nested\"; })[]; name: string; type: \"simple\"; } & { _version?: string | undefined; comments?: ({ comment: string; } & { id?: string | undefined; })[] | undefined; id?: string | undefined; item_id?: string | undefined; meta?: object | undefined; namespace_type?: \"single\" | \"agnostic\" | undefined; os_types?: (\"windows\" | \"linux\" | \"macos\")[] | undefined; tags?: string[] | undefined; }" ], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -711,6 +747,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -724,6 +761,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -743,6 +781,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -756,6 +795,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -775,6 +815,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -789,6 +830,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -808,6 +850,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -822,6 +865,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -841,6 +885,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -854,6 +899,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -873,6 +919,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -886,6 +933,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -903,6 +951,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-hooks/src/use_cursor/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -912,7 +961,8 @@ "label": "pageIndex", "description": [], "path": "packages/kbn-securitysolution-list-hooks/src/use_cursor/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-hooks", @@ -922,7 +972,8 @@ "label": "pageSize", "description": [], "path": "packages/kbn-securitysolution-list-hooks/src/use_cursor/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -942,6 +993,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_exception_lists/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -960,6 +1012,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_exception_list_items/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -986,6 +1039,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_exception_lists/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1000,6 +1054,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_persist_exception_item/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1016,6 +1071,7 @@ ], "path": "packages/kbn-securitysolution-list-hooks/src/use_persist_exception_list/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_securitysolution_list_hooks.mdx b/api_docs/kbn_securitysolution_list_hooks.mdx index 57311b271af40..8792a1d797618 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_securitysolution_list_utils.devdocs.json index 6cfc58f2ee84d..fd0a5457d52bc 100644 --- a/api_docs/kbn_securitysolution_list_utils.devdocs.json +++ b/api_docs/kbn_securitysolution_list_utils.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -44,6 +45,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -64,6 +66,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -74,6 +77,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -86,7 +90,8 @@ "({ _version: string | undefined; comments: ({ comment: string; created_at: string; created_by: string; id: string; } & { updated_at?: string | undefined; updated_by?: string | undefined; })[]; created_at: string; created_by: string; description: string; entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; } | { field: string; list: { id: string; type: \"boolean\" | \"date\" | \"keyword\" | \"ip\" | \"text\" | \"geo_point\" | \"geo_shape\" | \"date_nanos\" | \"long\" | \"double\" | \"date_range\" | \"ip_range\" | \"shape\" | \"short\" | \"binary\" | \"float\" | \"half_float\" | \"integer\" | \"byte\" | \"long_range\" | \"integer_range\" | \"float_range\" | \"double_range\"; }; operator: \"excluded\" | \"included\"; type: \"list\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; })[]; field: string; type: \"nested\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"wildcard\"; value: string; })[]; id: string; item_id: string; list_id: string; meta: object | undefined; name: string; namespace_type: \"single\" | \"agnostic\"; os_types: (\"windows\" | \"linux\" | \"macos\")[]; tags: string[]; tie_breaker_id: string; type: \"simple\"; updated_at: string; updated_by: string; } | ({ description: string; entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { field: string; list: { id: string; type: \"boolean\" | \"date\" | \"keyword\" | \"ip\" | \"text\" | \"geo_point\" | \"geo_shape\" | \"date_nanos\" | \"long\" | \"double\" | \"date_range\" | \"ip_range\" | \"shape\" | \"short\" | \"binary\" | \"float\" | \"half_float\" | \"integer\" | \"byte\" | \"long_range\" | \"integer_range\" | \"float_range\" | \"double_range\"; }; operator: \"excluded\" | \"included\"; type: \"list\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; } | { field: string; operator: \"excluded\" | \"included\"; type: \"wildcard\"; value: string; } | { entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; })[]; field: string; type: \"nested\"; })[]; list_id: string; name: string; type: \"simple\"; } & { comments?: { comment: string; }[] | undefined; item_id?: string | undefined; meta?: object | undefined; namespace_type?: \"single\" | \"agnostic\" | undefined; os_types?: (\"windows\" | \"linux\" | \"macos\")[] | undefined; tags?: string[] | undefined; }))[]" ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -96,7 +101,8 @@ "label": "excludeExceptions", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -106,7 +112,8 @@ "label": "chunkSize", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -119,7 +126,8 @@ "string | null" ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -163,6 +171,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -182,6 +191,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -210,6 +220,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -225,6 +236,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -241,6 +253,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -274,6 +287,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -293,6 +307,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -318,6 +333,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -331,6 +347,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -356,6 +373,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -369,6 +387,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -394,6 +413,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -407,6 +427,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -432,6 +453,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -445,6 +467,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -470,6 +493,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -483,6 +507,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -517,6 +542,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -537,6 +563,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -551,6 +578,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -577,6 +605,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -597,6 +626,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -630,6 +660,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -643,6 +674,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -657,6 +689,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -699,6 +732,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -719,6 +753,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -745,6 +780,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -765,6 +801,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -790,6 +827,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -803,6 +841,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -828,6 +867,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -841,6 +881,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -855,6 +896,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -879,6 +921,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -889,6 +932,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -902,7 +946,8 @@ "[]" ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -915,7 +960,8 @@ "string | undefined" ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -942,6 +988,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -965,6 +1012,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -999,6 +1047,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -1018,6 +1067,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1038,6 +1088,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1076,6 +1127,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -1097,6 +1149,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1113,6 +1166,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1149,6 +1203,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -1170,6 +1225,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1186,6 +1242,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1222,6 +1279,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -1243,6 +1301,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1259,6 +1318,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1295,6 +1355,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -1316,6 +1377,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1332,6 +1394,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1376,6 +1439,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -1397,6 +1461,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1419,6 +1484,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1455,6 +1521,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -1476,6 +1543,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1492,6 +1560,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1520,6 +1589,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -1541,6 +1611,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1559,6 +1630,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/get_exception_list_type/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -1569,6 +1641,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/get_exception_list_type/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -1578,7 +1651,8 @@ "label": "savedObjectType", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/get_exception_list_type/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1615,6 +1689,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -1636,6 +1711,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1671,6 +1747,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -1686,6 +1763,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1708,6 +1786,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1722,6 +1801,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1740,6 +1820,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1754,6 +1835,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1780,6 +1862,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/get_filters/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -1799,6 +1882,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/get_filters/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1837,6 +1921,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -1850,6 +1935,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1873,6 +1959,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1889,6 +1976,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1905,6 +1993,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1942,6 +2031,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -1955,6 +2045,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1977,6 +2068,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1993,6 +2085,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2009,6 +2102,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2025,6 +2119,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2053,6 +2148,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/get_general_filters/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2066,6 +2162,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/get_general_filters/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2087,6 +2184,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/get_general_filters/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2107,6 +2205,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/get_ids_and_namespaces/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2117,6 +2216,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/get_ids_and_namespaces/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2130,7 +2230,8 @@ "[]" ], "path": "packages/kbn-securitysolution-list-utils/src/get_ids_and_namespaces/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2140,7 +2241,8 @@ "label": "showDetection", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/get_ids_and_namespaces/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2150,7 +2252,8 @@ "label": "showEndpoint", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/get_ids_and_namespaces/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2177,6 +2280,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2187,6 +2291,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2196,7 +2301,8 @@ "label": "listId", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2209,7 +2315,8 @@ "\"single\" | \"agnostic\"" ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2219,7 +2326,8 @@ "label": "ruleName", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2257,6 +2365,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2276,6 +2385,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2290,6 +2400,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2304,6 +2415,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2320,6 +2432,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2349,6 +2462,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2370,6 +2484,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2395,6 +2510,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/get_saved_object_type/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2405,6 +2521,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/get_saved_object_type/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2417,7 +2534,8 @@ "\"single\" | \"agnostic\"" ], "path": "packages/kbn-securitysolution-list-utils/src/get_saved_object_type/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2445,6 +2563,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/get_saved_object_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2455,6 +2574,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/get_saved_object_types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2467,7 +2587,8 @@ "(\"single\" | \"agnostic\")[]" ], "path": "packages/kbn-securitysolution-list-utils/src/get_saved_object_types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2504,6 +2625,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2523,6 +2645,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2539,6 +2662,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2553,6 +2677,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2571,6 +2696,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/has_large_value_list/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2584,6 +2710,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/has_large_value_list/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2610,6 +2737,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2629,6 +2757,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2649,6 +2778,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2664,6 +2794,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2680,6 +2811,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2697,6 +2829,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2709,7 +2842,8 @@ "QueryDslBoolQuery" ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2723,6 +2857,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2732,7 +2867,8 @@ "label": "id", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2745,7 +2881,8 @@ "string | undefined" ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2758,7 +2895,8 @@ "ListOperatorEnum" ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2776,7 +2914,8 @@ ".WILDCARD" ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2789,7 +2928,8 @@ "string | string[] | undefined" ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2803,6 +2943,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2812,7 +2953,8 @@ "label": "id", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2825,7 +2967,8 @@ "string | undefined" ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2838,7 +2981,8 @@ "ListOperatorEnum" ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2852,7 +2996,8 @@ ".LIST" ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2865,7 +3010,8 @@ "{ id: string | undefined; type: string | undefined; }" ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2879,6 +3025,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2888,7 +3035,8 @@ "label": "id", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2901,7 +3049,8 @@ "string | undefined" ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2915,7 +3064,8 @@ ".NESTED" ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2928,7 +3078,8 @@ "(({ field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } & { id?: string | undefined; }) | ({ field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; } & { id?: string | undefined; }) | ({ field: string; operator: \"excluded\" | \"included\"; type: \"wildcard\"; value: string; } & { id?: string | undefined; }) | ({ field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } & { id?: string | undefined; }))[]" ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2942,6 +3093,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2951,7 +3103,8 @@ "label": "id", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2965,7 +3118,8 @@ " | undefined" ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2984,7 +3138,8 @@ } ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -2997,7 +3152,8 @@ "string | string[] | undefined" ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3010,7 +3166,8 @@ "\"parent\" | \"child\" | undefined" ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3020,7 +3177,8 @@ "label": "entryIndex", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3041,7 +3199,8 @@ "; parentIndex: number; } | undefined" ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3055,7 +3214,8 @@ " | undefined" ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3069,6 +3229,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/get_filters/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3081,7 +3242,8 @@ "ExceptionListFilter" ], "path": "packages/kbn-securitysolution-list-utils/src/get_filters/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3094,7 +3256,8 @@ "(\"single\" | \"agnostic\")[]" ], "path": "packages/kbn-securitysolution-list-utils/src/get_filters/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3107,7 +3270,8 @@ "readonly string[]" ], "path": "packages/kbn-securitysolution-list-utils/src/get_filters/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3121,6 +3285,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3133,7 +3298,8 @@ "QueryDslNestedQuery" ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3147,6 +3313,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3156,7 +3323,8 @@ "label": "message", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3166,7 +3334,8 @@ "label": "value", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3179,7 +3348,8 @@ "ListOperatorEnum" ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3192,7 +3362,8 @@ "ListOperatorTypeEnum" ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3219,6 +3390,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3264,6 +3436,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3278,6 +3451,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3300,6 +3474,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3321,6 +3496,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3342,6 +3518,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3363,6 +3540,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3384,6 +3562,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3398,6 +3577,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/build_exception_filter/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3412,6 +3592,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3434,6 +3615,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3448,6 +3630,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3476,6 +3659,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3490,6 +3674,7 @@ ], "path": "packages/kbn-securitysolution-list-utils/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3503,6 +3688,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3512,7 +3698,8 @@ "label": "message", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3526,7 +3713,8 @@ ".EXCLUDED" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3540,7 +3728,8 @@ ".EXISTS" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3550,7 +3739,8 @@ "label": "value", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3564,6 +3754,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3573,7 +3764,8 @@ "label": "message", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3587,7 +3779,8 @@ ".EXCLUDED" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3601,7 +3794,8 @@ ".WILDCARD" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3611,7 +3805,8 @@ "label": "value", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3625,6 +3820,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3634,7 +3830,8 @@ "label": "message", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3648,7 +3845,8 @@ ".INCLUDED" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3662,7 +3860,8 @@ ".EXISTS" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3672,7 +3871,8 @@ "label": "value", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3686,6 +3886,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3695,7 +3896,8 @@ "label": "message", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3709,7 +3911,8 @@ ".INCLUDED" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3723,7 +3926,8 @@ ".LIST" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3733,7 +3937,8 @@ "label": "value", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3747,6 +3952,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3756,7 +3962,8 @@ "label": "message", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3770,7 +3977,8 @@ ".EXCLUDED" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3784,7 +3992,8 @@ ".LIST" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3794,7 +4003,8 @@ "label": "value", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3808,6 +4018,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3817,7 +4028,8 @@ "label": "message", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3831,7 +4043,8 @@ ".EXCLUDED" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3845,7 +4058,8 @@ ".MATCH_ANY" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3855,7 +4069,8 @@ "label": "value", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3869,6 +4084,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3878,7 +4094,8 @@ "label": "message", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3892,7 +4109,8 @@ ".EXCLUDED" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3906,7 +4124,8 @@ ".MATCH" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3916,7 +4135,8 @@ "label": "value", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3930,6 +4150,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3939,7 +4160,8 @@ "label": "message", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3953,7 +4175,8 @@ ".INCLUDED" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3967,7 +4190,8 @@ ".MATCH_ANY" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -3977,7 +4201,8 @@ "label": "value", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3991,6 +4216,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -4000,7 +4226,8 @@ "label": "message", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -4014,7 +4241,8 @@ ".INCLUDED" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -4028,7 +4256,8 @@ ".MATCH" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -4038,7 +4267,8 @@ "label": "value", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4052,6 +4282,7 @@ "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -4061,7 +4292,8 @@ "label": "message", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -4075,7 +4307,8 @@ ".INCLUDED" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -4089,7 +4322,8 @@ ".WILDCARD" ], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-list-utils", @@ -4099,7 +4333,8 @@ "label": "value", "description": [], "path": "packages/kbn-securitysolution-list-utils/src/autocomplete_operators/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_securitysolution_list_utils.mdx b/api_docs/kbn_securitysolution_list_utils.mdx index bcc92919fc42f..9a8afda4b7b7d 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_securitysolution_rules.devdocs.json index 1617a860e2a7b..d0e85be6d439e 100644 --- a/api_docs/kbn_securitysolution_rules.devdocs.json +++ b/api_docs/kbn_securitysolution_rules.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/kbn-securitysolution-rules/src/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-rules", @@ -44,6 +45,7 @@ ], "path": "packages/kbn-securitysolution-rules/src/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -58,6 +60,7 @@ ], "path": "packages/kbn-securitysolution-rules/src/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -76,6 +79,7 @@ ], "path": "packages/kbn-securitysolution-rules/src/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-rules", @@ -89,6 +93,7 @@ ], "path": "packages/kbn-securitysolution-rules/src/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -114,6 +119,7 @@ ], "path": "packages/kbn-securitysolution-rules/src/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-rules", @@ -127,6 +133,7 @@ ], "path": "packages/kbn-securitysolution-rules/src/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -149,6 +156,7 @@ ], "path": "packages/kbn-securitysolution-rules/src/rule_type_constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -163,6 +171,7 @@ ], "path": "packages/kbn-securitysolution-rules/src/rule_type_constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -179,6 +188,7 @@ ], "path": "packages/kbn-securitysolution-rules/src/configuration_constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -193,6 +203,7 @@ ], "path": "packages/kbn-securitysolution-rules/src/rule_type_constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -207,6 +218,7 @@ ], "path": "packages/kbn-securitysolution-rules/src/rule_type_constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -221,6 +233,7 @@ ], "path": "packages/kbn-securitysolution-rules/src/rule_type_constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -235,6 +248,7 @@ ], "path": "packages/kbn-securitysolution-rules/src/rule_type_mappings.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -249,6 +263,7 @@ ], "path": "packages/kbn-securitysolution-rules/src/rule_type_mappings.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -263,6 +278,7 @@ ], "path": "packages/kbn-securitysolution-rules/src/rule_type_constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -279,6 +295,7 @@ ], "path": "packages/kbn-securitysolution-rules/src/rule_type_constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -293,6 +310,7 @@ ], "path": "packages/kbn-securitysolution-rules/src/rule_type_constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -308,6 +326,7 @@ ], "path": "packages/kbn-securitysolution-rules/src/rule_type_mappings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-rules", @@ -320,7 +339,8 @@ "\"siem.eqlRule\"" ], "path": "packages/kbn-securitysolution-rules/src/rule_type_mappings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-rules", @@ -333,7 +353,8 @@ "\"siem.mlRule\"" ], "path": "packages/kbn-securitysolution-rules/src/rule_type_mappings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-rules", @@ -346,7 +367,8 @@ "\"siem.queryRule\"" ], "path": "packages/kbn-securitysolution-rules/src/rule_type_mappings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-rules", @@ -359,7 +381,8 @@ "\"siem.savedQueryRule\"" ], "path": "packages/kbn-securitysolution-rules/src/rule_type_mappings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-rules", @@ -372,7 +395,8 @@ "\"siem.indicatorRule\"" ], "path": "packages/kbn-securitysolution-rules/src/rule_type_mappings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-rules", @@ -385,7 +409,8 @@ "\"siem.thresholdRule\"" ], "path": "packages/kbn-securitysolution-rules/src/rule_type_mappings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-rules", @@ -398,7 +423,8 @@ "\"siem.newTermsRule\"" ], "path": "packages/kbn-securitysolution-rules/src/rule_type_mappings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_securitysolution_rules.mdx b/api_docs/kbn_securitysolution_rules.mdx index 628693c12e1bc..bb843ea8ac0bc 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_securitysolution_t_grid.devdocs.json index f7aca912ab1e7..7de8c1e43c42b 100644 --- a/api_docs/kbn_securitysolution_t_grid.devdocs.json +++ b/api_docs/kbn_securitysolution_t_grid.devdocs.json @@ -33,6 +33,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -46,6 +47,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -66,6 +68,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -79,6 +82,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -99,6 +103,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -112,6 +117,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -132,6 +138,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -146,6 +153,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -166,6 +174,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -180,6 +189,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -198,6 +208,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -211,6 +222,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -229,6 +241,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -242,6 +255,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -260,6 +274,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -273,6 +288,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -293,6 +309,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -306,6 +323,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -324,6 +342,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -334,6 +353,7 @@ "description": [], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -343,7 +363,8 @@ "label": "contextId", "description": [], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -353,7 +374,8 @@ "label": "fieldId", "description": [], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -373,6 +395,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -386,6 +409,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -404,6 +428,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -417,6 +442,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -437,6 +463,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -450,6 +477,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -470,6 +498,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -483,6 +512,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -501,6 +531,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -511,6 +542,7 @@ "description": [], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -520,7 +552,8 @@ "label": "dataProviderId", "description": [], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -530,7 +563,8 @@ "label": "groupIndex", "description": [], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -540,7 +574,8 @@ "label": "timelineId", "description": [], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -560,6 +595,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -570,6 +606,7 @@ "description": [], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -579,7 +616,8 @@ "label": "groupIndex", "description": [], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -589,7 +627,8 @@ "label": "timelineId", "description": [], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -616,6 +655,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -629,6 +669,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -654,6 +695,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -667,6 +709,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -685,6 +728,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -698,6 +742,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -723,6 +768,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -736,6 +782,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/api/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -756,6 +803,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -769,6 +817,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -789,6 +838,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -802,6 +852,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -822,6 +873,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -835,6 +887,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -855,6 +908,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -868,6 +922,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -886,6 +941,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -899,6 +955,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -919,6 +976,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -932,6 +990,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -959,6 +1018,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -971,7 +1031,8 @@ "{ message: string; }" ], "path": "packages/kbn-securitysolution-t-grid/src/utils/api/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1002,6 +1063,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1014,7 +1076,8 @@ "{ message: string; statusCode: number; }" ], "path": "packages/kbn-securitysolution-t-grid/src/utils/api/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1045,6 +1108,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1057,7 +1121,8 @@ "{ message: string; status_code: number; }" ], "path": "packages/kbn-securitysolution-t-grid/src/utils/api/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1079,6 +1144,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1093,6 +1159,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1104,6 +1171,7 @@ "description": [], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1115,6 +1183,7 @@ "description": [], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1129,6 +1198,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1140,6 +1210,7 @@ "description": [], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1151,6 +1222,7 @@ "description": [], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1162,6 +1234,7 @@ "description": [], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1176,6 +1249,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1187,6 +1261,7 @@ "description": [], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1198,6 +1273,7 @@ "description": [], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1209,6 +1285,7 @@ "description": [], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1223,6 +1300,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1237,6 +1315,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1251,6 +1330,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1265,6 +1345,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1281,6 +1362,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1297,6 +1379,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/utils/drag_and_drop/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1313,6 +1396,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1327,6 +1411,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1341,6 +1426,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1355,6 +1441,7 @@ ], "path": "packages/kbn-securitysolution-t-grid/src/constants/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1368,6 +1455,7 @@ "description": [], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1377,7 +1465,8 @@ "label": "_index", "description": [], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1387,7 +1476,8 @@ "label": "_id", "description": [], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1397,7 +1487,8 @@ "label": "_score", "description": [], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1407,7 +1498,8 @@ "label": "_type", "description": [], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1418,6 +1510,7 @@ "description": [], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1430,7 +1523,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1443,7 +1537,8 @@ "number[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1456,7 +1551,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1469,7 +1565,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1482,7 +1579,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1495,7 +1593,8 @@ "number[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1508,7 +1607,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1521,7 +1621,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1534,7 +1635,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1547,7 +1649,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1560,7 +1663,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1573,7 +1677,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1586,7 +1691,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1599,7 +1705,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1612,7 +1719,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1625,7 +1733,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1638,7 +1747,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1651,7 +1761,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1664,7 +1775,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1677,7 +1789,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1690,7 +1803,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1703,7 +1817,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1716,7 +1831,8 @@ "{ coordinates: number[]; type: string; }[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1729,7 +1845,8 @@ "({ 'matched.field': string[]; 'indicator.first_seen': string[]; 'indicator.provider': string[]; 'indicator.type': string[]; 'matched.atomic': string[]; lazer: { 'great.field': string[]; }[]; } | { 'matched.field': string[]; 'indicator.first_seen': string[]; 'indicator.provider': string[]; 'indicator.type': string[]; 'matched.atomic': string[]; lazer: { 'great.field': { wowoe: { fooooo: string[]; }[]; astring: string; aNumber: number; neat: boolean; }[]; }[]; } | { 'matched.field': string[]; 'matched.index': string[]; 'matched.type': string[]; 'matched.id': string[]; 'matched.atomic': string[]; })[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1742,6 +1859,7 @@ "description": [], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -1755,7 +1873,8 @@ "string[]" ], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-t-grid", @@ -1766,6 +1885,7 @@ "description": [], "path": "packages/kbn-securitysolution-t-grid/src/mock/mock_event_details.ts", "deprecated": false, + "trackAdoption": false, "children": [] } ], diff --git a/api_docs/kbn_securitysolution_t_grid.mdx b/api_docs/kbn_securitysolution_t_grid.mdx index f7e73ae7cd871..1decc3b5849ea 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_securitysolution_utils.devdocs.json index ed36e48ca0c1c..9c1fb4cd9da93 100644 --- a/api_docs/kbn_securitysolution_utils.devdocs.json +++ b/api_docs/kbn_securitysolution_utils.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/kbn-securitysolution-utils/src/add_remove_id_to_item/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-utils", @@ -44,6 +45,7 @@ ], "path": "packages/kbn-securitysolution-utils/src/add_remove_id_to_item/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -78,6 +80,7 @@ ], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-utils", @@ -88,6 +91,7 @@ "description": [], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-utils", @@ -106,7 +110,8 @@ } ], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-utils", @@ -119,7 +124,8 @@ "\"match\" | \"wildcard\" | \"match_any\"" ], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-utils", @@ -129,7 +135,8 @@ "label": "value", "description": [], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -173,6 +180,7 @@ ], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-utils", @@ -183,6 +191,7 @@ "description": [], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-utils", @@ -201,7 +210,8 @@ } ], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-utils", @@ -229,7 +239,8 @@ " | \"file.path.text\"" ], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-utils", @@ -242,7 +253,8 @@ "\"match\" | \"wildcard\" | \"match_any\"" ], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-utils", @@ -252,7 +264,8 @@ "label": "value", "description": [], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -274,6 +287,7 @@ ], "path": "packages/kbn-securitysolution-utils/src/add_remove_id_to_item/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-utils", @@ -289,6 +303,7 @@ ], "path": "packages/kbn-securitysolution-utils/src/add_remove_id_to_item/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -307,6 +322,7 @@ ], "path": "packages/kbn-securitysolution-utils/src/transform_data_to_ndjson/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-utils", @@ -320,6 +336,7 @@ ], "path": "packages/kbn-securitysolution-utils/src/transform_data_to_ndjson/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -346,6 +363,7 @@ ], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-utils", @@ -356,6 +374,7 @@ "description": [], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/securitysolution-utils", @@ -374,7 +393,8 @@ } ], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/securitysolution-utils", @@ -387,7 +407,8 @@ "string | undefined" ], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -407,6 +428,7 @@ "description": [], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -418,6 +440,7 @@ "description": [], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -429,6 +452,7 @@ "description": [], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -460,6 +484,7 @@ ], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -474,6 +499,7 @@ ], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -488,6 +514,7 @@ ], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -499,6 +526,7 @@ "description": [], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -510,6 +538,7 @@ "description": [], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -524,6 +553,7 @@ ], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -538,6 +568,7 @@ ], "path": "packages/kbn-securitysolution-utils/src/path_validations/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_securitysolution_utils.mdx b/api_docs/kbn_securitysolution_utils.mdx index 8a8455f409a81..8b6696e13af38 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_server_http_tools.devdocs.json index b3cc50d874c37..ac1861e2e8fe1 100644 --- a/api_docs/kbn_server_http_tools.devdocs.json +++ b/api_docs/kbn_server_http_tools.devdocs.json @@ -19,6 +19,7 @@ "description": [], "path": "packages/kbn-server-http-tools/src/ssl/ssl_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/server-http-tools", @@ -28,7 +29,8 @@ "label": "enabled", "description": [], "path": "packages/kbn-server-http-tools/src/ssl/ssl_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -41,7 +43,8 @@ "number | undefined" ], "path": "packages/kbn-server-http-tools/src/ssl/ssl_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -54,7 +57,8 @@ "string | undefined" ], "path": "packages/kbn-server-http-tools/src/ssl/ssl_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -67,7 +71,8 @@ "string | undefined" ], "path": "packages/kbn-server-http-tools/src/ssl/ssl_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -80,7 +85,8 @@ "string[] | undefined" ], "path": "packages/kbn-server-http-tools/src/ssl/ssl_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -93,7 +99,8 @@ "string | undefined" ], "path": "packages/kbn-server-http-tools/src/ssl/ssl_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -103,7 +110,8 @@ "label": "requestCert", "description": [], "path": "packages/kbn-server-http-tools/src/ssl/ssl_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -113,7 +121,8 @@ "label": "rejectUnauthorized", "description": [], "path": "packages/kbn-server-http-tools/src/ssl/ssl_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -126,7 +135,8 @@ "string[]" ], "path": "packages/kbn-server-http-tools/src/ssl/ssl_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -139,7 +149,8 @@ "string[]" ], "path": "packages/kbn-server-http-tools/src/ssl/ssl_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -155,6 +166,7 @@ ], "path": "packages/kbn-server-http-tools/src/ssl/ssl_config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -180,6 +192,7 @@ ], "path": "packages/kbn-server-http-tools/src/create_server.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/server-http-tools", @@ -193,6 +206,7 @@ ], "path": "packages/kbn-server-http-tools/src/create_server.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -207,6 +221,7 @@ ], "path": "packages/kbn-server-http-tools/src/create_server.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -233,6 +248,7 @@ ], "path": "packages/kbn-server-http-tools/src/default_validation_error_handler.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/server-http-tools", @@ -246,6 +262,7 @@ ], "path": "packages/kbn-server-http-tools/src/default_validation_error_handler.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -260,6 +277,7 @@ ], "path": "packages/kbn-server-http-tools/src/default_validation_error_handler.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -274,6 +292,7 @@ ], "path": "packages/kbn-server-http-tools/src/default_validation_error_handler.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -301,6 +320,7 @@ ], "path": "packages/kbn-server-http-tools/src/get_listener_options.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/server-http-tools", @@ -320,6 +340,7 @@ ], "path": "packages/kbn-server-http-tools/src/get_listener_options.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -340,6 +361,7 @@ ], "path": "packages/kbn-server-http-tools/src/get_request_id.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/server-http-tools", @@ -353,6 +375,7 @@ ], "path": "packages/kbn-server-http-tools/src/get_request_id.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -364,6 +387,7 @@ "description": [], "path": "packages/kbn-server-http-tools/src/get_request_id.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/server-http-tools", @@ -373,7 +397,8 @@ "label": "allowFromAnyIp", "description": [], "path": "packages/kbn-server-http-tools/src/get_request_id.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -386,7 +411,8 @@ "string[]" ], "path": "packages/kbn-server-http-tools/src/get_request_id.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -417,6 +443,7 @@ ], "path": "packages/kbn-server-http-tools/src/get_server_options.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/server-http-tools", @@ -436,6 +463,7 @@ ], "path": "packages/kbn-server-http-tools/src/get_server_options.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -450,6 +478,7 @@ ], "path": "packages/kbn-server-http-tools/src/get_server_options.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -467,6 +496,7 @@ "description": [], "path": "packages/kbn-server-http-tools/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/server-http-tools", @@ -476,7 +506,8 @@ "label": "enabled", "description": [], "path": "packages/kbn-server-http-tools/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -486,7 +517,8 @@ "label": "allowCredentials", "description": [], "path": "packages/kbn-server-http-tools/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -499,7 +531,8 @@ "string[]" ], "path": "packages/kbn-server-http-tools/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -513,6 +546,7 @@ "description": [], "path": "packages/kbn-server-http-tools/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/server-http-tools", @@ -522,7 +556,8 @@ "label": "host", "description": [], "path": "packages/kbn-server-http-tools/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -532,7 +567,8 @@ "label": "port", "description": [], "path": "packages/kbn-server-http-tools/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -545,7 +581,8 @@ "ByteSizeValue" ], "path": "packages/kbn-server-http-tools/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -555,7 +592,8 @@ "label": "keepaliveTimeout", "description": [], "path": "packages/kbn-server-http-tools/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -565,7 +603,8 @@ "label": "socketTimeout", "description": [], "path": "packages/kbn-server-http-tools/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -584,7 +623,8 @@ } ], "path": "packages/kbn-server-http-tools/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -603,7 +643,8 @@ } ], "path": "packages/kbn-server-http-tools/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -616,7 +657,8 @@ "moment.Duration" ], "path": "packages/kbn-server-http-tools/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -630,6 +672,7 @@ "description": [], "path": "packages/kbn-server-http-tools/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/server-http-tools", @@ -639,7 +682,8 @@ "label": "enabled", "description": [], "path": "packages/kbn-server-http-tools/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -652,7 +696,8 @@ "string | undefined" ], "path": "packages/kbn-server-http-tools/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -665,7 +710,8 @@ "string | undefined" ], "path": "packages/kbn-server-http-tools/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -678,7 +724,8 @@ "string[] | undefined" ], "path": "packages/kbn-server-http-tools/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -691,7 +738,8 @@ "string[] | undefined" ], "path": "packages/kbn-server-http-tools/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -704,7 +752,8 @@ "string | undefined" ], "path": "packages/kbn-server-http-tools/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -717,7 +766,8 @@ "boolean | undefined" ], "path": "packages/kbn-server-http-tools/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -730,7 +780,8 @@ "boolean | undefined" ], "path": "packages/kbn-server-http-tools/src/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-http-tools", @@ -744,6 +795,7 @@ ], "path": "packages/kbn-server-http-tools/src/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -797,6 +849,7 @@ ], "path": "packages/kbn-server-http-tools/src/ssl/ssl_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/kbn_server_http_tools.mdx b/api_docs/kbn_server_http_tools.mdx index 595386c6c73ac..7f521d04d76d9 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_server_route_repository.devdocs.json index ffea04ecd4368..9599b078d7468 100644 --- a/api_docs/kbn_server_route_repository.devdocs.json +++ b/api_docs/kbn_server_route_repository.devdocs.json @@ -55,6 +55,7 @@ ], "path": "packages/kbn-server-route-repository/src/create_server_route_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -73,6 +74,7 @@ ], "path": "packages/kbn-server-route-repository/src/decode_request_params.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/server-route-repository", @@ -86,6 +88,7 @@ ], "path": "packages/kbn-server-route-repository/src/decode_request_params.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -100,6 +103,7 @@ ], "path": "packages/kbn-server-route-repository/src/decode_request_params.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -118,6 +122,7 @@ ], "path": "packages/kbn-server-route-repository/src/format_request.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/server-route-repository", @@ -131,6 +136,7 @@ ], "path": "packages/kbn-server-route-repository/src/format_request.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -145,6 +151,7 @@ ], "path": "packages/kbn-server-route-repository/src/format_request.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -163,6 +170,7 @@ ], "path": "packages/kbn-server-route-repository/src/parse_endpoint.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/server-route-repository", @@ -176,6 +184,7 @@ ], "path": "packages/kbn-server-route-repository/src/parse_endpoint.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -193,6 +202,7 @@ "description": [], "path": "packages/kbn-server-route-repository/src/typings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/server-route-repository", @@ -205,7 +215,8 @@ "[endpoint: string]: any" ], "path": "packages/kbn-server-route-repository/src/typings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -243,6 +254,7 @@ ], "path": "packages/kbn-server-route-repository/src/typings.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -275,6 +287,7 @@ ], "path": "packages/kbn-server-route-repository/src/typings.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -289,6 +302,7 @@ ], "path": "packages/kbn-server-route-repository/src/typings.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -313,6 +327,7 @@ ], "path": "packages/kbn-server-route-repository/src/typings.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -333,6 +348,7 @@ ], "path": "packages/kbn-server-route-repository/src/typings.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -363,6 +379,7 @@ ], "path": "packages/kbn-server-route-repository/src/typings.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -376,7 +393,8 @@ "TEndpoint" ], "path": "packages/kbn-server-route-repository/src/typings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-route-repository", @@ -414,7 +432,8 @@ " & TAdditionalClientOptions]" ], "path": "packages/kbn-server-route-repository/src/typings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -439,6 +458,7 @@ ], "path": "packages/kbn-server-route-repository/src/typings.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -469,6 +489,7 @@ ], "path": "packages/kbn-server-route-repository/src/typings.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -482,6 +503,7 @@ "description": [], "path": "packages/kbn-server-route-repository/src/route_validation_object.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/server-route-repository", @@ -497,7 +519,8 @@ " | null>" ], "path": "packages/kbn-server-route-repository/src/route_validation_object.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-route-repository", @@ -511,7 +534,8 @@ "<{}>" ], "path": "packages/kbn-server-route-repository/src/route_validation_object.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/server-route-repository", @@ -525,7 +549,8 @@ "<{}>" ], "path": "packages/kbn-server-route-repository/src/route_validation_object.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_server_route_repository.mdx b/api_docs/kbn_server_route_repository.mdx index 67aed36b05747..8ee1166df80be 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/server-route-repository'] --- import kbnServerRouteRepositoryObj from './kbn_server_route_repository.devdocs.json'; diff --git a/api_docs/kbn_shared_svg.devdocs.json b/api_docs/kbn_shared_svg.devdocs.json index 264d5fb254209..39ec35c1a30a4 100644 --- a/api_docs/kbn_shared_svg.devdocs.json +++ b/api_docs/kbn_shared_svg.devdocs.json @@ -31,6 +31,7 @@ "description": [], "path": "node_modules/@kbn/ambient-ui-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -42,6 +43,7 @@ "description": [], "path": "node_modules/@kbn/ambient-ui-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_shared_svg.mdx b/api_docs/kbn_shared_svg.mdx index 83c8971c8ce53..04dbdc8391d26 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-svg'] --- import kbnSharedSvgObj from './kbn_shared_svg.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.devdocs.json b/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.devdocs.json index 7595ab6a2bc3f..6ecc8d46df1b2 100644 --- a/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.devdocs.json +++ b/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.devdocs.json @@ -45,6 +45,7 @@ ], "path": "packages/shared-ux/button/exit_full_screen/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-button-exit-full-screen-mocks", @@ -55,6 +56,7 @@ "description": [], "path": "packages/shared-ux/button/exit_full_screen/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-button-exit-full-screen-mocks", @@ -65,6 +67,7 @@ "description": [], "path": "packages/shared-ux/button/exit_full_screen/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-button-exit-full-screen-mocks", @@ -74,7 +77,8 @@ "label": "control", "description": [], "path": "packages/shared-ux/button/exit_full_screen/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-button-exit-full-screen-mocks", @@ -84,7 +88,8 @@ "label": "defaultValue", "description": [], "path": "packages/shared-ux/button/exit_full_screen/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -99,6 +104,7 @@ "description": [], "path": "packages/shared-ux/button/exit_full_screen/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -112,7 +118,8 @@ "never[]" ], "path": "packages/shared-ux/button/exit_full_screen/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-button-exit-full-screen-mocks", @@ -135,6 +142,7 @@ ], "path": "packages/shared-ux/button/exit_full_screen/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-button-exit-full-screen-mocks", @@ -155,6 +163,7 @@ ], "path": "packages/shared-ux/button/exit_full_screen/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -173,6 +182,7 @@ ], "path": "packages/shared-ux/button/exit_full_screen/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -196,6 +206,7 @@ ], "path": "packages/shared-ux/button/exit_full_screen/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -215,6 +226,7 @@ ], "path": "packages/shared-ux/button/exit_full_screen/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -237,6 +249,7 @@ ], "path": "packages/shared-ux/button/exit_full_screen/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.mdx b/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.mdx index bdc1537cc16ad..b5c2b30967bb4 100644 --- a/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.mdx +++ b/api_docs/kbn_shared_ux_button_exit_full_screen_mocks.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-shared-ux-button-exit-full-screen-mocks title: "@kbn/shared-ux-button-exit-full-screen-mocks" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/shared-ux-button-exit-full-screen-mocks plugin -date: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-button-exit-full-screen-mocks'] --- import kbnSharedUxButtonExitFullScreenMocksObj from './kbn_shared_ux_button_exit_full_screen_mocks.devdocs.json'; diff --git a/api_docs/kbn_shared_ux_button_toolbar.devdocs.json b/api_docs/kbn_shared_ux_button_toolbar.devdocs.json index 09636cfd58905..215946356e15a 100644 --- a/api_docs/kbn_shared_ux_button_toolbar.devdocs.json +++ b/api_docs/kbn_shared_ux_button_toolbar.devdocs.json @@ -41,6 +41,7 @@ ], "path": "packages/shared-ux/button_toolbar/src/buttons/add_from_library/add_from_library.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-button-toolbar", @@ -60,6 +61,7 @@ ], "path": "packages/shared-ux/button_toolbar/src/buttons/add_from_library/add_from_library.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -88,6 +90,7 @@ ], "path": "packages/shared-ux/button_toolbar/src/buttons/icon_button_group/icon_button_group.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-button-toolbar", @@ -107,6 +110,7 @@ ], "path": "packages/shared-ux/button_toolbar/src/buttons/icon_button_group/icon_button_group.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -135,6 +139,7 @@ ], "path": "packages/shared-ux/button_toolbar/src/buttons/primary/primary.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-button-toolbar", @@ -154,6 +159,7 @@ ], "path": "packages/shared-ux/button_toolbar/src/buttons/primary/primary.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -182,6 +188,7 @@ ], "path": "packages/shared-ux/button_toolbar/src/toolbar/toolbar.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-button-toolbar", @@ -201,6 +208,7 @@ ], "path": "packages/shared-ux/button_toolbar/src/toolbar/toolbar.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -231,6 +239,7 @@ ], "path": "packages/shared-ux/button_toolbar/src/popover/popover.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-button-toolbar", @@ -250,6 +259,7 @@ ], "path": "packages/shared-ux/button_toolbar/src/popover/popover.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -269,6 +279,7 @@ ], "path": "packages/shared-ux/button_toolbar/src/buttons/icon_button_group/icon_button_group.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-button-toolbar", @@ -280,7 +291,8 @@ "The accessible button label." ], "path": "packages/shared-ux/button_toolbar/src/buttons/icon_button_group/icon_button_group.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-button-toolbar", @@ -295,7 +307,8 @@ "string | React.ComponentType<{}>" ], "path": "packages/shared-ux/button_toolbar/src/buttons/icon_button_group/icon_button_group.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-button-toolbar", @@ -311,6 +324,7 @@ ], "path": "packages/shared-ux/button_toolbar/src/buttons/icon_button_group/icon_button_group.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -327,7 +341,8 @@ "string | undefined" ], "path": "packages/shared-ux/button_toolbar/src/buttons/icon_button_group/icon_button_group.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -343,6 +358,7 @@ ], "path": "packages/shared-ux/button_toolbar/src/buttons/icon_button_group/icon_button_group.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-button-toolbar", @@ -354,7 +370,8 @@ "Required accessible legend for the whole group" ], "path": "packages/shared-ux/button_toolbar/src/buttons/icon_button_group/icon_button_group.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-button-toolbar", @@ -376,7 +393,8 @@ "[]" ], "path": "packages/shared-ux/button_toolbar/src/buttons/icon_button_group/icon_button_group.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -404,6 +422,7 @@ ], "path": "packages/shared-ux/button_toolbar/src/buttons/primary/primary.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-button-toolbar", @@ -413,7 +432,8 @@ "label": "label", "description": [], "path": "packages/shared-ux/button_toolbar/src/buttons/primary/primary.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -429,6 +449,7 @@ ], "path": "packages/shared-ux/button_toolbar/src/toolbar/toolbar.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-button-toolbar", @@ -441,7 +462,8 @@ "NamedSlots" ], "path": "packages/shared-ux/button_toolbar/src/toolbar/toolbar.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -463,6 +485,7 @@ ], "path": "packages/shared-ux/button_toolbar/src/buttons/add_from_library/add_from_library.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -479,6 +502,7 @@ ], "path": "packages/shared-ux/button_toolbar/src/popover/popover.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -511,6 +535,7 @@ ], "path": "packages/shared-ux/button_toolbar/src/toolbar/toolbar.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false diff --git a/api_docs/kbn_shared_ux_button_toolbar.mdx b/api_docs/kbn_shared_ux_button_toolbar.mdx index 67fd3dcaf41bd..ac94fb4896451 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_shared_ux_card_no_data.devdocs.json index b78caaab8032a..ce63cea38e22e 100644 --- a/api_docs/kbn_shared_ux_card_no_data.devdocs.json +++ b/api_docs/kbn_shared_ux_card_no_data.devdocs.json @@ -33,6 +33,7 @@ ], "path": "packages/shared-ux/card/no_data/impl/src/no_data_card.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-card-no-data", @@ -46,6 +47,7 @@ ], "path": "packages/shared-ux/card/no_data/impl/src/no_data_card.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -68,6 +70,7 @@ ], "path": "packages/shared-ux/card/no_data/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-card-no-data", @@ -83,6 +86,7 @@ ], "path": "packages/shared-ux/card/no_data/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -105,6 +109,7 @@ ], "path": "packages/shared-ux/card/no_data/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-card-no-data", @@ -120,6 +125,7 @@ ], "path": "packages/shared-ux/card/no_data/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -146,6 +152,7 @@ ], "path": "node_modules/@kbn/shared-ux-card-no-data-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -164,6 +171,7 @@ ], "path": "node_modules/@kbn/shared-ux-card-no-data-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -334,6 +342,7 @@ ], "path": "node_modules/@kbn/shared-ux-card-no-data-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -352,6 +361,7 @@ ], "path": "node_modules/@kbn/shared-ux-card-no-data-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_shared_ux_card_no_data.mdx b/api_docs/kbn_shared_ux_card_no_data.mdx index e22142c4797dd..110a972ba8eb2 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_shared_ux_card_no_data_mocks.devdocs.json index 9be1d1c11795d..bbd3d2f518bff 100644 --- a/api_docs/kbn_shared_ux_card_no_data_mocks.devdocs.json +++ b/api_docs/kbn_shared_ux_card_no_data_mocks.devdocs.json @@ -45,6 +45,7 @@ ], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-card-no-data-mocks", @@ -55,6 +56,7 @@ "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-card-no-data-mocks", @@ -65,6 +67,7 @@ "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-card-no-data-mocks", @@ -75,6 +78,7 @@ "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-card-no-data-mocks", @@ -84,7 +88,8 @@ "label": "type", "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -96,7 +101,8 @@ "label": "defaultValue", "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -109,6 +115,7 @@ "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-card-no-data-mocks", @@ -119,6 +126,7 @@ "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-card-no-data-mocks", @@ -128,7 +136,8 @@ "label": "type", "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -140,7 +149,8 @@ "label": "defaultValue", "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -153,6 +163,7 @@ "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-card-no-data-mocks", @@ -163,6 +174,7 @@ "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-card-no-data-mocks", @@ -172,7 +184,8 @@ "label": "type", "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -184,7 +197,8 @@ "label": "defaultValue", "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -197,6 +211,7 @@ "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-card-no-data-mocks", @@ -207,6 +222,7 @@ "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-card-no-data-mocks", @@ -216,7 +232,8 @@ "label": "type", "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -228,7 +245,8 @@ "label": "defaultValue", "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -243,6 +261,7 @@ "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-card-no-data-mocks", @@ -253,6 +272,7 @@ "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-card-no-data-mocks", @@ -262,7 +282,8 @@ "label": "control", "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-card-no-data-mocks", @@ -272,7 +293,8 @@ "label": "defaultValue", "description": [], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -290,7 +312,8 @@ "[]" ], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-card-no-data-mocks", @@ -313,6 +336,7 @@ ], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-card-no-data-mocks", @@ -333,6 +357,7 @@ ], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -359,6 +384,7 @@ ], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-card-no-data-mocks", @@ -378,6 +404,7 @@ ], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -405,6 +432,7 @@ ], "path": "packages/shared-ux/card/no_data/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-card-no-data-mocks", @@ -420,6 +448,7 @@ ], "path": "packages/shared-ux/card/no_data/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -443,6 +472,7 @@ ], "path": "packages/shared-ux/card/no_data/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-card-no-data-mocks", @@ -458,6 +488,7 @@ ], "path": "packages/shared-ux/card/no_data/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -482,6 +513,7 @@ ], "path": "packages/shared-ux/card/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], 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 7573591c49224..308f00a75d82e 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: 2022-09-05 +date: 2022-09-08 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_link_redirect_app_mocks.devdocs.json b/api_docs/kbn_shared_ux_link_redirect_app_mocks.devdocs.json index 64dc76155d112..1d6ac7215b19c 100644 --- a/api_docs/kbn_shared_ux_link_redirect_app_mocks.devdocs.json +++ b/api_docs/kbn_shared_ux_link_redirect_app_mocks.devdocs.json @@ -41,6 +41,7 @@ ], "path": "packages/shared-ux/link/redirect_app/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-link-redirect-app-mocks", @@ -51,6 +52,7 @@ "description": [], "path": "packages/shared-ux/link/redirect_app/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -62,6 +64,7 @@ "description": [], "path": "packages/shared-ux/link/redirect_app/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -75,7 +78,8 @@ "never[]" ], "path": "packages/shared-ux/link/redirect_app/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-link-redirect-app-mocks", @@ -91,6 +95,7 @@ ], "path": "packages/shared-ux/link/redirect_app/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -108,6 +113,7 @@ ], "path": "packages/shared-ux/link/redirect_app/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -129,6 +135,7 @@ ], "path": "packages/shared-ux/link/redirect_app/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-link-redirect-app-mocks", @@ -142,6 +149,7 @@ ], "path": "packages/shared-ux/link/redirect_app/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -163,6 +171,7 @@ ], "path": "packages/shared-ux/link/redirect_app/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-link-redirect-app-mocks", @@ -176,6 +185,7 @@ ], "path": "packages/shared-ux/link/redirect_app/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], 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 c6e48451635c8..7456f34241042 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: 2022-09-05 +date: 2022-09-08 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_page_analytics_no_data.devdocs.json b/api_docs/kbn_shared_ux_page_analytics_no_data.devdocs.json index 3f1e5a7afa895..b53cb7d2758d5 100644 --- a/api_docs/kbn_shared_ux_page_analytics_no_data.devdocs.json +++ b/api_docs/kbn_shared_ux_page_analytics_no_data.devdocs.json @@ -35,6 +35,7 @@ ], "path": "packages/shared-ux/page/analytics_no_data/impl/src/analytics_no_data_page.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-analytics-no-data", @@ -48,6 +49,7 @@ ], "path": "packages/shared-ux/page/analytics_no_data/impl/src/analytics_no_data_page.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -70,6 +72,7 @@ ], "path": "packages/shared-ux/page/analytics_no_data/impl/src/analytics_no_data_page.component.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-analytics-no-data", @@ -83,6 +86,7 @@ ], "path": "packages/shared-ux/page/analytics_no_data/impl/src/analytics_no_data_page.component.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -105,6 +109,7 @@ ], "path": "packages/shared-ux/page/analytics_no_data/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-analytics-no-data", @@ -120,6 +125,7 @@ ], "path": "packages/shared-ux/page/analytics_no_data/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -142,6 +148,7 @@ ], "path": "packages/shared-ux/page/analytics_no_data/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-analytics-no-data", @@ -157,6 +164,7 @@ ], "path": "packages/shared-ux/page/analytics_no_data/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -176,6 +184,7 @@ ], "path": "node_modules/@kbn/shared-ux-page-analytics-no-data-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-analytics-no-data", @@ -191,6 +200,7 @@ ], "path": "node_modules/@kbn/shared-ux-page-analytics-no-data-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-analytics-no-data", @@ -204,6 +214,7 @@ ], "path": "node_modules/@kbn/shared-ux-page-analytics-no-data-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -237,6 +248,7 @@ ], "path": "node_modules/@kbn/shared-ux-page-analytics-no-data-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -261,6 +273,7 @@ ], "path": "node_modules/@kbn/shared-ux-page-analytics-no-data-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], 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 9180867f3820d..b7ae5b0fce0f9 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_shared_ux_page_analytics_no_data_mocks.devdocs.json index 0ba419e7b51a0..c8af9498f67a4 100644 --- a/api_docs/kbn_shared_ux_page_analytics_no_data_mocks.devdocs.json +++ b/api_docs/kbn_shared_ux_page_analytics_no_data_mocks.devdocs.json @@ -43,6 +43,7 @@ ], "path": "packages/shared-ux/page/analytics_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-analytics-no-data-mocks", @@ -53,6 +54,7 @@ "description": [], "path": "packages/shared-ux/page/analytics_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -64,6 +66,7 @@ "description": [], "path": "packages/shared-ux/page/analytics_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-analytics-no-data-mocks", @@ -74,6 +77,7 @@ "description": [], "path": "packages/shared-ux/page/analytics_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-analytics-no-data-mocks", @@ -83,7 +87,8 @@ "label": "control", "description": [], "path": "packages/shared-ux/page/analytics_no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-analytics-no-data-mocks", @@ -93,7 +98,8 @@ "label": "defaultValue", "description": [], "path": "packages/shared-ux/page/analytics_no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -111,7 +117,8 @@ "[]" ], "path": "packages/shared-ux/page/analytics_no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-analytics-no-data-mocks", @@ -134,6 +141,7 @@ ], "path": "packages/shared-ux/page/analytics_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-analytics-no-data-mocks", @@ -153,6 +161,7 @@ ], "path": "packages/shared-ux/page/analytics_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -172,6 +181,7 @@ ], "path": "packages/shared-ux/page/analytics_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -193,6 +203,7 @@ ], "path": "packages/shared-ux/page/analytics_no_data/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -223,6 +234,7 @@ ], "path": "packages/shared-ux/page/analytics_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], 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 575e935118416..326b017b7d118 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_shared_ux_page_kibana_no_data.devdocs.json index cd68f336f2217..a6210ec3c8c1a 100644 --- a/api_docs/kbn_shared_ux_page_kibana_no_data.devdocs.json +++ b/api_docs/kbn_shared_ux_page_kibana_no_data.devdocs.json @@ -35,6 +35,7 @@ ], "path": "packages/shared-ux/page/kibana_no_data/impl/src/kibana_no_data_page.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-no-data", @@ -48,6 +49,7 @@ ], "path": "packages/shared-ux/page/kibana_no_data/impl/src/kibana_no_data_page.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -70,6 +72,7 @@ ], "path": "packages/shared-ux/page/kibana_no_data/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-no-data", @@ -85,6 +88,7 @@ ], "path": "packages/shared-ux/page/kibana_no_data/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -107,6 +111,7 @@ ], "path": "packages/shared-ux/page/kibana_no_data/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-no-data", @@ -122,6 +127,7 @@ ], "path": "packages/shared-ux/page/kibana_no_data/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -152,6 +158,7 @@ ], "path": "node_modules/@kbn/shared-ux-page-kibana-no-data-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -174,6 +181,7 @@ ], "path": "node_modules/@kbn/shared-ux-page-kibana-no-data-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], 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 9656ef1e132a1..9b1be63162af5 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_shared_ux_page_kibana_no_data_mocks.devdocs.json index e833987bc5068..fa5d1c414395f 100644 --- a/api_docs/kbn_shared_ux_page_kibana_no_data_mocks.devdocs.json +++ b/api_docs/kbn_shared_ux_page_kibana_no_data_mocks.devdocs.json @@ -43,6 +43,7 @@ ], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-no-data-mocks", @@ -53,6 +54,7 @@ "description": [], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-no-data-mocks", @@ -63,6 +65,7 @@ "description": [], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-no-data-mocks", @@ -72,7 +75,8 @@ "label": "control", "description": [], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-kibana-no-data-mocks", @@ -82,7 +86,8 @@ "label": "defaultValue", "description": [], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -95,6 +100,7 @@ "description": [], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-no-data-mocks", @@ -105,6 +111,7 @@ "description": [], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-no-data-mocks", @@ -114,7 +121,8 @@ "label": "type", "description": [], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -129,7 +137,8 @@ "(string | undefined)[]" ], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-kibana-no-data-mocks", @@ -142,7 +151,8 @@ "undefined" ], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -157,6 +167,7 @@ "description": [], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-no-data-mocks", @@ -167,6 +178,7 @@ "description": [], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-no-data-mocks", @@ -176,7 +188,8 @@ "label": "control", "description": [], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-kibana-no-data-mocks", @@ -186,7 +199,8 @@ "label": "defaultValue", "description": [], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -199,6 +213,7 @@ "description": [], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-no-data-mocks", @@ -208,7 +223,8 @@ "label": "control", "description": [], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-kibana-no-data-mocks", @@ -218,7 +234,8 @@ "label": "defaultValue", "description": [], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -239,7 +256,8 @@ ")[]" ], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-kibana-no-data-mocks", @@ -263,6 +281,7 @@ ], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-no-data-mocks", @@ -282,6 +301,7 @@ ], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -308,6 +328,7 @@ ], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-no-data-mocks", @@ -327,6 +348,7 @@ ], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -352,6 +374,7 @@ ], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-no-data-mocks", @@ -365,6 +388,7 @@ ], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -391,6 +415,7 @@ ], "path": "packages/shared-ux/page/kibana_no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], 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 4aa81c27affd1..fa6513e6cb2ca 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_shared_ux_page_kibana_template.devdocs.json index f8cdca8122258..cd08253e10ed9 100644 --- a/api_docs/kbn_shared_ux_page_kibana_template.devdocs.json +++ b/api_docs/kbn_shared_ux_page_kibana_template.devdocs.json @@ -17,33 +17,58 @@ "type": "Function", "tags": [], "label": "KibanaPageTemplate", - "description": [], + "description": [ + "\nKibana-specific wrapper of EuiPageTemplate and it's namespaced components" + ], "signature": [ - "({ template, className, children, solutionNav, noDataConfig, ...rest }: React.PropsWithChildren<", + "React.FC<", "KibanaPageTemplateProps", - ">) => JSX.Element" + "> & { Sidebar: React.FunctionComponent<", + "EuiPageSidebarProps", + ">; Header: React.FunctionComponent<", + "EuiPageHeaderProps", + ">; Section: React.FunctionComponent<", + "EuiPageSectionProps", + ">; BottomBar: React.FunctionComponent<", + "_EuiPageBottomBarProps", + ">; EmptyPrompt: React.FunctionComponent<", + "_EuiPageEmptyPromptProps", + ">; }" ], "path": "packages/shared-ux/page/kibana_template/impl/src/page_template.tsx", "deprecated": false, + "trackAdoption": false, + "returnComment": [], "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-template", "id": "def-server.KibanaPageTemplate.$1", "type": "CompoundType", "tags": [], - "label": "{\n template,\n className,\n children,\n solutionNav,\n noDataConfig,\n ...rest\n}", + "label": "props", "description": [], "signature": [ - "React.PropsWithChildren<", - "KibanaPageTemplateProps", - ">" + "P & { children?: React.ReactNode; }" ], - "path": "packages/shared-ux/page/kibana_template/impl/src/page_template.tsx", + "path": "node_modules/@types/react/index.d.ts", "deprecated": false, - "isRequired": true + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/shared-ux-page-kibana-template", + "id": "def-server.KibanaPageTemplate.$2", + "type": "Any", + "tags": [], + "label": "context", + "description": [], + "signature": [ + "any" + ], + "path": "node_modules/@types/react/index.d.ts", + "deprecated": false, + "trackAdoption": false } ], - "returnComment": [], "initialIsOpen": false }, { @@ -62,6 +87,7 @@ ], "path": "packages/shared-ux/page/kibana_template/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-template", @@ -77,6 +103,7 @@ ], "path": "packages/shared-ux/page/kibana_template/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -99,6 +126,7 @@ ], "path": "packages/shared-ux/page/kibana_template/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-template", @@ -114,6 +142,7 @@ ], "path": "packages/shared-ux/page/kibana_template/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -138,6 +167,7 @@ ], "path": "node_modules/@kbn/shared-ux-page-kibana-template-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -148,30 +178,30 @@ "label": "KibanaPageTemplateProps", "description": [], "signature": [ - "Omit<", - "EuiPageProps", - ", \"paddingSize\"> & { template?: \"default\" | \"empty\" | \"centeredBody\" | \"centeredContent\" | undefined; paddingSize?: \"none\" | \"m\" | \"s\" | \"l\" | undefined; pageSideBar?: React.ReactNode; pageSideBarProps?: ", - "EuiPageSideBarProps", - " | undefined; pageHeader?: ", - "EuiPageHeaderProps", - " | undefined; pageBodyProps?: ", - "EuiPageBodyProps", - "<\"main\"> | undefined; pageContentProps?: ", - "EuiPageContentProps", - " | undefined; pageContentBodyProps?: ", - "EuiPageContentBodyProps", - " | undefined; bottomBar?: React.ReactNode; bottomBarProps?: ", - "EuiBottomBarProps", - " | undefined; fullHeight?: boolean | \"noscroll\" | undefined; minHeight?: ", + "_EuiPageOuterProps", + " & Omit<", + "_EuiPageInnerProps", + "<\"main\">, \"border\"> & ", + "_EuiPageRestrictWidth", + " & ", + "_EuiPageBottomBorder", + " & { contentBorder?: boolean | undefined; minHeight?: ", "Property", - ".MinHeight | undefined; } & { isEmptyState?: boolean | undefined; solutionNav?: ", + ".MinHeight | undefined; offset?: number | undefined; mainProps?: (", + "CommonProps", + " & React.HTMLAttributes) | undefined; } & { isEmptyState?: boolean | undefined; solutionNav?: ", "SolutionNavProps", " | undefined; noDataConfig?: ", "NoDataPageProps", + " | undefined; pageHeader?: ", + "EuiPageHeaderProps", + " | undefined; pageSideBar?: React.ReactNode; pageSideBarProps?: ", + "EuiPageSidebarProps", " | undefined; }" ], "path": "node_modules/@kbn/shared-ux-page-kibana-template-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -188,6 +218,7 @@ ], "path": "node_modules/@kbn/shared-ux-page-kibana-template-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -202,6 +233,7 @@ ], "path": "node_modules/@kbn/shared-ux-page-no-data-config-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_shared_ux_page_kibana_template.mdx b/api_docs/kbn_shared_ux_page_kibana_template.mdx index 5243ea27703be..b285bd11d9a23 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-page-kibana-template'] --- import kbnSharedUxPageKibanaTemplateObj from './kbn_shared_ux_page_kibana_template.devdocs.json'; @@ -21,7 +21,7 @@ Contact [Owner missing] for questions regarding this plugin. | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 10 | 0 | 4 | 0 | +| 11 | 0 | 2 | 0 | ## Server diff --git a/api_docs/kbn_shared_ux_page_kibana_template_mocks.devdocs.json b/api_docs/kbn_shared_ux_page_kibana_template_mocks.devdocs.json index 5e888519540f0..ff42bbf98fb39 100644 --- a/api_docs/kbn_shared_ux_page_kibana_template_mocks.devdocs.json +++ b/api_docs/kbn_shared_ux_page_kibana_template_mocks.devdocs.json @@ -43,6 +43,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/all.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -53,6 +54,7 @@ "description": [], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/all.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -65,7 +67,8 @@ "any" ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/all.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -78,7 +81,8 @@ "any" ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/all.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -91,6 +95,7 @@ "description": [], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/all.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -105,7 +110,8 @@ "[]" ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/all.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -128,6 +134,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/all.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -148,6 +155,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/all.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -174,6 +182,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/all.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -193,6 +202,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/all.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -228,6 +238,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/no_data_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -238,6 +249,7 @@ "description": [], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/no_data_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -250,7 +262,8 @@ "any" ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/no_data_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -263,6 +276,7 @@ "description": [], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/no_data_config.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -277,7 +291,8 @@ "[]" ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/no_data_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -300,6 +315,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/no_data_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -320,6 +336,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/no_data_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -346,6 +363,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/no_data_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -365,6 +383,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/no_data_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -400,6 +419,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/solution_nav.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -410,6 +430,7 @@ "description": [], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/solution_nav.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -422,7 +443,8 @@ "any" ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/solution_nav.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -435,6 +457,7 @@ "description": [], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/solution_nav.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -449,7 +472,8 @@ "[]" ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/solution_nav.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -472,6 +496,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/solution_nav.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -492,6 +517,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/solution_nav.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -518,6 +544,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/solution_nav.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -537,6 +564,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/solution_nav.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -570,6 +598,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/inner.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -580,6 +609,7 @@ "description": [], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/inner.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -592,7 +622,8 @@ "any" ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/inner.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -605,6 +636,7 @@ "description": [], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/inner.tsx", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -618,7 +650,8 @@ "never[]" ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/inner.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -641,6 +674,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/inner.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -661,6 +695,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/inner.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -687,6 +722,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/inner.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-kibana-template-mocks", @@ -706,6 +742,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/inner.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -729,6 +766,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -746,6 +784,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -776,6 +815,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/all.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -802,6 +842,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/no_data_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -828,6 +869,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/solution_nav.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -852,6 +894,7 @@ ], "path": "packages/shared-ux/page/kibana_template/mocks/src/storybook/inner.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], 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 8102f035e450e..6e3c33994da95 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_shared_ux_page_no_data.devdocs.json index b67afdf6a138c..da8d66fbcfe79 100644 --- a/api_docs/kbn_shared_ux_page_no_data.devdocs.json +++ b/api_docs/kbn_shared_ux_page_no_data.devdocs.json @@ -33,6 +33,7 @@ ], "path": "packages/shared-ux/page/no_data/impl/src/no_data_page.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data", @@ -46,6 +47,7 @@ ], "path": "packages/shared-ux/page/no_data/impl/src/no_data_page.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -68,6 +70,7 @@ ], "path": "packages/shared-ux/page/no_data/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data", @@ -83,6 +86,7 @@ ], "path": "packages/shared-ux/page/no_data/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -105,6 +109,7 @@ ], "path": "packages/shared-ux/page/no_data/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data", @@ -120,6 +125,7 @@ ], "path": "packages/shared-ux/page/no_data/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -144,6 +150,7 @@ ], "path": "node_modules/@kbn/shared-ux-page-no-data-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data", @@ -155,7 +162,8 @@ "\nSingle name for the current solution, used to auto-generate the title, logo, description, and button label" ], "path": "node_modules/@kbn/shared-ux-page-no-data-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-no-data", @@ -167,7 +175,8 @@ "\nRequired to set the docs link for the whole solution" ], "path": "node_modules/@kbn/shared-ux-page-no-data-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-no-data", @@ -182,7 +191,8 @@ "string | undefined" ], "path": "node_modules/@kbn/shared-ux-page-no-data-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-no-data", @@ -197,7 +207,8 @@ "string | undefined" ], "path": "node_modules/@kbn/shared-ux-page-no-data-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -221,6 +232,7 @@ ], "path": "node_modules/@kbn/shared-ux-page-no-data-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -239,6 +251,7 @@ ], "path": "node_modules/@kbn/shared-ux-page-no-data-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_shared_ux_page_no_data.mdx b/api_docs/kbn_shared_ux_page_no_data.mdx index 4747677f63999..9e88289417fd5 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_shared_ux_page_no_data_config.devdocs.json index 33b90569d9d4e..8ff5c6db7bd38 100644 --- a/api_docs/kbn_shared_ux_page_no_data_config.devdocs.json +++ b/api_docs/kbn_shared_ux_page_no_data_config.devdocs.json @@ -33,6 +33,7 @@ ], "path": "packages/shared-ux/page/no_data_config/impl/src/no_data_config_page.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-config", @@ -46,6 +47,7 @@ ], "path": "packages/shared-ux/page/no_data_config/impl/src/no_data_config_page.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -68,6 +70,7 @@ ], "path": "packages/shared-ux/page/no_data_config/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-config", @@ -83,6 +86,7 @@ ], "path": "packages/shared-ux/page/no_data_config/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -105,6 +109,7 @@ ], "path": "packages/shared-ux/page/no_data_config/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-config", @@ -120,6 +125,7 @@ ], "path": "packages/shared-ux/page/no_data_config/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -136,28 +142,27 @@ "signature": [ "{ (props: ", "Props", - " & { template?: \"default\" | \"empty\" | \"centeredBody\" | \"centeredContent\" | undefined; paddingSize?: \"none\" | \"m\" | \"s\" | \"l\" | undefined; pageSideBar?: React.ReactNode; pageSideBarProps?: ", - "EuiPageSideBarProps", - " | undefined; pageHeader?: ", - "EuiPageHeaderProps", - " | undefined; pageBodyProps?: ", - "EuiPageBodyProps", - "<\"main\"> | undefined; pageContentProps?: ", - "EuiPageContentProps", - " | undefined; pageContentBodyProps?: ", - "EuiPageContentBodyProps", - " | undefined; bottomBar?: React.ReactNode; bottomBarProps?: ", - "EuiBottomBarProps", - " | undefined; fullHeight?: boolean | \"noscroll\" | undefined; minHeight?: ", + "<", + "_EuiPageOuterProps", + " & Omit<", + "_EuiPageInnerProps", + "<\"main\">, \"border\"> & ", + "_EuiPageRestrictWidth", + " & ", + "_EuiPageBottomBorder", + " & { contentBorder?: boolean | undefined; minHeight?: ", "Property", - ".MinHeight | undefined; } & { noDataConfig?: ", + ".MinHeight | undefined; offset?: number | undefined; mainProps?: (", + "CommonProps", + " & React.HTMLAttributes) | undefined; } & { noDataConfig?: ", "NoDataPageProps", + " | undefined; pageSideBar?: React.ReactNode; pageSideBarProps?: ", + "EuiPageSidebarProps", " | undefined; }>): JSX.Element; displayName: string; }" ], "path": "packages/shared-ux/page/no_data_config/impl/src/no_data_config_page.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -170,12 +175,13 @@ "signature": [ "P & ", "TemplateProps", - " & { isEmptyState?: boolean | undefined; } & { solutionNav: ", + " & { solutionNav: ", "SolutionNavProps", "; }" ], "path": "node_modules/@types/kbn__shared-ux-page-solution-nav/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -198,6 +204,7 @@ ], "path": "node_modules/@kbn/shared-ux-page-no-data-config-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -208,28 +215,26 @@ "label": "NoDataConfigPageProps", "description": [], "signature": [ - "Omit<", - "EuiPageProps", - ", \"paddingSize\"> & { template?: \"default\" | \"empty\" | \"centeredBody\" | \"centeredContent\" | undefined; paddingSize?: \"none\" | \"m\" | \"s\" | \"l\" | undefined; pageSideBar?: React.ReactNode; pageSideBarProps?: ", - "EuiPageSideBarProps", - " | undefined; pageHeader?: ", - "EuiPageHeaderProps", - " | undefined; pageBodyProps?: ", - "EuiPageBodyProps", - "<\"main\"> | undefined; pageContentProps?: ", - "EuiPageContentProps", - " | undefined; pageContentBodyProps?: ", - "EuiPageContentBodyProps", - " | undefined; bottomBar?: React.ReactNode; bottomBarProps?: ", - "EuiBottomBarProps", - " | undefined; fullHeight?: boolean | \"noscroll\" | undefined; minHeight?: ", + "_EuiPageOuterProps", + " & Omit<", + "_EuiPageInnerProps", + "<\"main\">, \"border\"> & ", + "_EuiPageRestrictWidth", + " & ", + "_EuiPageBottomBorder", + " & { contentBorder?: boolean | undefined; minHeight?: ", "Property", - ".MinHeight | undefined; } & { noDataConfig?: ", + ".MinHeight | undefined; offset?: number | undefined; mainProps?: (", + "CommonProps", + " & React.HTMLAttributes) | undefined; } & { noDataConfig?: ", "NoDataPageProps", + " | undefined; pageSideBar?: React.ReactNode; pageSideBarProps?: ", + "EuiPageSidebarProps", " | undefined; }" ], "path": "node_modules/@kbn/shared-ux-page-no-data-config-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -246,6 +251,7 @@ ], "path": "node_modules/@kbn/shared-ux-page-no-data-config-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], 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 90e5a801476fe..5f3e0e337b804 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_shared_ux_page_no_data_config_mocks.devdocs.json index 9cff904b1bb17..beaad7773c82b 100644 --- a/api_docs/kbn_shared_ux_page_no_data_config_mocks.devdocs.json +++ b/api_docs/kbn_shared_ux_page_no_data_config_mocks.devdocs.json @@ -43,6 +43,7 @@ ], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-config-mocks", @@ -53,6 +54,7 @@ "description": [], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-config-mocks", @@ -63,6 +65,7 @@ "description": [], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-config-mocks", @@ -72,7 +75,8 @@ "label": "control", "description": [], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-no-data-config-mocks", @@ -82,7 +86,8 @@ "label": "defaultValue", "description": [], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -95,6 +100,7 @@ "description": [], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-config-mocks", @@ -105,6 +111,7 @@ "description": [], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-config-mocks", @@ -114,7 +121,8 @@ "label": "type", "description": [], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -129,7 +137,8 @@ "(string | undefined)[]" ], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-no-data-config-mocks", @@ -142,7 +151,8 @@ "undefined" ], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -155,6 +165,7 @@ "description": [], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-config-mocks", @@ -164,7 +175,8 @@ "label": "control", "description": [], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-no-data-config-mocks", @@ -174,7 +186,8 @@ "label": "defaultValue", "description": [], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -187,6 +200,7 @@ "description": [], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-config-mocks", @@ -196,7 +210,8 @@ "label": "control", "description": [], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-no-data-config-mocks", @@ -206,7 +221,8 @@ "label": "defaultValue", "description": [], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -221,6 +237,7 @@ "description": [], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -235,7 +252,8 @@ "[]" ], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-no-data-config-mocks", @@ -258,6 +276,7 @@ ], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-config-mocks", @@ -278,6 +297,7 @@ ], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -304,6 +324,7 @@ ], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-config-mocks", @@ -323,6 +344,7 @@ ], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -346,6 +368,7 @@ ], "path": "packages/shared-ux/page/no_data_config/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -372,6 +395,7 @@ ], "path": "packages/shared-ux/page/no_data_config/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], 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 148e0a16da6ce..eb80ec1a24586 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_shared_ux_page_no_data_mocks.devdocs.json index 76c026ad3a55d..09a4c4fcda6af 100644 --- a/api_docs/kbn_shared_ux_page_no_data_mocks.devdocs.json +++ b/api_docs/kbn_shared_ux_page_no_data_mocks.devdocs.json @@ -43,6 +43,7 @@ ], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-mocks", @@ -53,6 +54,7 @@ "description": [], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-mocks", @@ -63,6 +65,7 @@ "description": [], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-mocks", @@ -72,7 +75,8 @@ "label": "control", "description": [], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-no-data-mocks", @@ -82,7 +86,8 @@ "label": "defaultValue", "description": [], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -95,6 +100,7 @@ "description": [], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-mocks", @@ -105,6 +111,7 @@ "description": [], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-mocks", @@ -114,7 +121,8 @@ "label": "type", "description": [], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -129,7 +137,8 @@ "(string | undefined)[]" ], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-no-data-mocks", @@ -142,7 +151,8 @@ "undefined" ], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -155,6 +165,7 @@ "description": [], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-mocks", @@ -164,7 +175,8 @@ "label": "control", "description": [], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-no-data-mocks", @@ -174,7 +186,8 @@ "label": "defaultValue", "description": [], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -187,6 +200,7 @@ "description": [], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-mocks", @@ -196,7 +210,8 @@ "label": "control", "description": [], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-no-data-mocks", @@ -206,7 +221,8 @@ "label": "defaultValue", "description": [], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -221,6 +237,7 @@ "description": [], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -235,7 +252,8 @@ "[]" ], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-page-no-data-mocks", @@ -258,6 +276,7 @@ ], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-mocks", @@ -278,6 +297,7 @@ ], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -304,6 +324,7 @@ ], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-mocks", @@ -323,6 +344,7 @@ ], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -350,6 +372,7 @@ ], "path": "packages/shared-ux/page/no_data/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-mocks", @@ -365,6 +388,7 @@ ], "path": "packages/shared-ux/page/no_data/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -386,6 +410,7 @@ ], "path": "packages/shared-ux/page/no_data/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-no-data-mocks", @@ -401,6 +426,7 @@ ], "path": "packages/shared-ux/page/no_data/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -425,6 +451,7 @@ ], "path": "packages/shared-ux/page/no_data/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], 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 69f30ffcb9d4f..642f5553769a6 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_shared_ux_page_solution_nav.devdocs.json index 7331e1f6ac1e0..4d792171e0bbc 100644 --- a/api_docs/kbn_shared_ux_page_solution_nav.devdocs.json +++ b/api_docs/kbn_shared_ux_page_solution_nav.devdocs.json @@ -41,6 +41,7 @@ ], "path": "packages/shared-ux/page/solution_nav/src/solution_nav.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-solution-nav", @@ -62,6 +63,7 @@ ], "path": "packages/shared-ux/page/solution_nav/src/solution_nav.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -76,10 +78,11 @@ "label": "withSolutionNav", "description": [], "signature": [ - "

(WrappedComponent: React.ComponentType

) => { (props: Props

): JSX.Element; displayName: string; }" + "

(WrappedComponent: React.ComponentType

) => { (props: Props

): JSX.Element; displayName: string; }" ], "path": "packages/shared-ux/page/solution_nav/src/with_solution_nav.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-page-solution-nav", @@ -93,6 +96,7 @@ ], "path": "packages/shared-ux/page/solution_nav/src/with_solution_nav.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -123,6 +127,7 @@ ], "path": "packages/shared-ux/page/solution_nav/src/solution_nav.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_shared_ux_page_solution_nav.mdx b/api_docs/kbn_shared_ux_page_solution_nav.mdx index 9e52f0dcc4aae..b9374f8d8a976 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_shared_ux_prompt_no_data_views.devdocs.json index 6b323a41bb51d..78f03a3e5bfd8 100644 --- a/api_docs/kbn_shared_ux_prompt_no_data_views.devdocs.json +++ b/api_docs/kbn_shared_ux_prompt_no_data_views.devdocs.json @@ -35,6 +35,7 @@ ], "path": "packages/shared-ux/prompt/no_data_views/impl/src/no_data_views.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views", @@ -48,6 +49,7 @@ ], "path": "packages/shared-ux/prompt/no_data_views/impl/src/no_data_views.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -70,6 +72,7 @@ ], "path": "packages/shared-ux/prompt/no_data_views/impl/src/no_data_views.component.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views", @@ -83,6 +86,7 @@ ], "path": "packages/shared-ux/prompt/no_data_views/impl/src/no_data_views.component.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -105,6 +109,7 @@ ], "path": "packages/shared-ux/prompt/no_data_views/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views", @@ -120,6 +125,7 @@ ], "path": "packages/shared-ux/prompt/no_data_views/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -142,6 +148,7 @@ ], "path": "packages/shared-ux/prompt/no_data_views/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views", @@ -157,6 +164,7 @@ ], "path": "packages/shared-ux/prompt/no_data_views/impl/src/services.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -174,6 +182,7 @@ "description": [], "path": "node_modules/@kbn/shared-ux-prompt-no-data-views-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views", @@ -185,7 +194,8 @@ "True if the user has permission to create a data view, false otherwise." ], "path": "node_modules/@kbn/shared-ux-prompt-no-data-views-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views", @@ -201,6 +211,7 @@ ], "path": "node_modules/@kbn/shared-ux-prompt-no-data-views-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -217,7 +228,8 @@ "string | undefined" ], "path": "node_modules/@kbn/shared-ux-prompt-no-data-views-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views", @@ -232,7 +244,8 @@ "\"warning\" | \"subdued\" | \"primary\" | \"accent\" | \"success\" | \"danger\" | \"transparent\" | \"plain\" | undefined" ], "path": "node_modules/@kbn/shared-ux-prompt-no-data-views-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -248,6 +261,7 @@ ], "path": "node_modules/@kbn/shared-ux-prompt-no-data-views-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views", @@ -260,7 +274,8 @@ "{ docLinks: { links: { indexPatterns: { introduction: string; }; }; }; }" ], "path": "node_modules/@kbn/shared-ux-prompt-no-data-views-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views", @@ -275,7 +290,8 @@ ") => () => void; }" ], "path": "node_modules/@kbn/shared-ux-prompt-no-data-views-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -289,6 +305,7 @@ "description": [], "path": "node_modules/@kbn/shared-ux-prompt-no-data-views-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views", @@ -304,6 +321,7 @@ ], "path": "node_modules/@kbn/shared-ux-prompt-no-data-views-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views", @@ -317,6 +335,7 @@ ], "path": "node_modules/@kbn/shared-ux-prompt-no-data-views-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -336,6 +355,7 @@ ], "path": "node_modules/@kbn/shared-ux-prompt-no-data-views-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views", @@ -347,7 +367,8 @@ "True if the user has permission to create a new Data View, false otherwise." ], "path": "node_modules/@kbn/shared-ux-prompt-no-data-views-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views", @@ -365,6 +386,7 @@ ], "path": "node_modules/@kbn/shared-ux-prompt-no-data-views-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views", @@ -378,6 +400,7 @@ ], "path": "node_modules/@kbn/shared-ux-prompt-no-data-views-types/index.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -393,7 +416,8 @@ "A link to information about Data Views in Kibana" ], "path": "node_modules/@kbn/shared-ux-prompt-no-data-views-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false 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 a28d5265c4c53..59f4055671f04 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_shared_ux_prompt_no_data_views_mocks.devdocs.json index 6ce6b2d959557..6e741eeb458f3 100644 --- a/api_docs/kbn_shared_ux_prompt_no_data_views_mocks.devdocs.json +++ b/api_docs/kbn_shared_ux_prompt_no_data_views_mocks.devdocs.json @@ -43,6 +43,7 @@ ], "path": "packages/shared-ux/prompt/no_data_views/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views-mocks", @@ -53,6 +54,7 @@ "description": [], "path": "packages/shared-ux/prompt/no_data_views/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -64,6 +66,7 @@ "description": [], "path": "packages/shared-ux/prompt/no_data_views/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views-mocks", @@ -74,6 +77,7 @@ "description": [], "path": "packages/shared-ux/prompt/no_data_views/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views-mocks", @@ -83,7 +87,8 @@ "label": "control", "description": [], "path": "packages/shared-ux/prompt/no_data_views/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views-mocks", @@ -93,7 +98,8 @@ "label": "defaultValue", "description": [], "path": "packages/shared-ux/prompt/no_data_views/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -106,6 +112,7 @@ "description": [], "path": "packages/shared-ux/prompt/no_data_views/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views-mocks", @@ -118,7 +125,8 @@ "(string | undefined)[]" ], "path": "packages/shared-ux/prompt/no_data_views/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views-mocks", @@ -129,6 +137,7 @@ "description": [], "path": "packages/shared-ux/prompt/no_data_views/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views-mocks", @@ -138,7 +147,8 @@ "label": "type", "description": [], "path": "packages/shared-ux/prompt/no_data_views/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -157,7 +167,8 @@ "never[]" ], "path": "packages/shared-ux/prompt/no_data_views/mocks/src/storybook.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views-mocks", @@ -173,6 +184,7 @@ ], "path": "packages/shared-ux/prompt/no_data_views/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -197,6 +209,7 @@ ], "path": "packages/shared-ux/prompt/no_data_views/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views-mocks", @@ -216,6 +229,7 @@ ], "path": "packages/shared-ux/prompt/no_data_views/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -243,6 +257,7 @@ ], "path": "packages/shared-ux/prompt/no_data_views/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-prompt-no-data-views-mocks", @@ -258,6 +273,7 @@ ], "path": "packages/shared-ux/prompt/no_data_views/mocks/src/jest.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -280,6 +296,7 @@ ], "path": "packages/shared-ux/prompt/no_data_views/mocks/src/storybook.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], 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 08b1b725b4fc4..37e90a8eb138c 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: 2022-09-05 +date: 2022-09-08 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_storybook_config.devdocs.json b/api_docs/kbn_shared_ux_storybook_config.devdocs.json index 433ed6802971e..181e3865aa529 100644 --- a/api_docs/kbn_shared_ux_storybook_config.devdocs.json +++ b/api_docs/kbn_shared_ux_storybook_config.devdocs.json @@ -36,6 +36,7 @@ ], "path": "packages/shared-ux/storybook/config/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -52,6 +53,7 @@ ], "path": "packages/shared-ux/storybook/config/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_shared_ux_storybook_config.mdx b/api_docs/kbn_shared_ux_storybook_config.mdx index abb12d940cba3..61e123a44519c 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_shared_ux_storybook_mock.devdocs.json index 2db55d58a00a6..10d6ff9a9a534 100644 --- a/api_docs/kbn_shared_ux_storybook_mock.devdocs.json +++ b/api_docs/kbn_shared_ux_storybook_mock.devdocs.json @@ -39,6 +39,7 @@ ], "path": "packages/shared-ux/storybook/mock/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-storybook-mock", @@ -55,7 +56,8 @@ "; }" ], "path": "packages/shared-ux/storybook/mock/src/mocks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-storybook-mock", @@ -72,7 +74,8 @@ "; }" ], "path": "packages/shared-ux/storybook/mock/src/mocks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-storybook-mock", @@ -96,7 +99,8 @@ ", Partial, {}, {}>[]" ], "path": "packages/shared-ux/storybook/mock/src/mocks.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/shared-ux-storybook-mock", @@ -114,6 +118,7 @@ ], "path": "packages/shared-ux/storybook/mock/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -137,6 +142,7 @@ ], "path": "packages/shared-ux/storybook/mock/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -162,6 +168,7 @@ ], "path": "packages/shared-ux/storybook/mock/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -181,6 +188,7 @@ ], "path": "packages/shared-ux/storybook/mock/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-storybook-mock", @@ -194,6 +202,7 @@ ], "path": "packages/shared-ux/storybook/mock/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -209,6 +218,7 @@ ], "path": "packages/shared-ux/storybook/mock/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -230,6 +240,7 @@ ], "path": "packages/shared-ux/storybook/mock/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-storybook-mock", @@ -244,6 +255,7 @@ ], "path": "packages/shared-ux/storybook/mock/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -265,6 +277,7 @@ ], "path": "packages/shared-ux/storybook/mock/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-storybook-mock", @@ -279,6 +292,7 @@ ], "path": "packages/shared-ux/storybook/mock/src/mocks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], diff --git a/api_docs/kbn_shared_ux_storybook_mock.mdx b/api_docs/kbn_shared_ux_storybook_mock.mdx index 0673efbd47724..bf41c879e0c88 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_shared_ux_utility.devdocs.json index 09a0ce6dedea5..9cc8c9e5f23d5 100644 --- a/api_docs/kbn_shared_ux_utility.devdocs.json +++ b/api_docs/kbn_shared_ux_utility.devdocs.json @@ -33,6 +33,7 @@ ], "path": "packages/kbn-shared-ux-utility/src/fallback.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -51,6 +52,7 @@ ], "path": "packages/kbn-shared-ux-utility/src/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-utility", @@ -64,6 +66,7 @@ ], "path": "packages/kbn-shared-ux-utility/src/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -78,6 +81,7 @@ ], "path": "packages/kbn-shared-ux-utility/src/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -98,6 +102,7 @@ ], "path": "packages/kbn-shared-ux-utility/src/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-utility", @@ -111,6 +116,7 @@ ], "path": "packages/kbn-shared-ux-utility/src/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -131,6 +137,7 @@ ], "path": "packages/kbn-shared-ux-utility/src/with_suspense.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/shared-ux-utility", @@ -146,6 +153,7 @@ ], "path": "packages/kbn-shared-ux-utility/src/with_suspense.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -162,6 +170,7 @@ ], "path": "packages/kbn-shared-ux-utility/src/with_suspense.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], diff --git a/api_docs/kbn_shared_ux_utility.mdx b/api_docs/kbn_shared_ux_utility.mdx index fad51bdf83a34..a7d109aeaa027 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/shared-ux-utility'] --- import kbnSharedUxUtilityObj from './kbn_shared_ux_utility.devdocs.json'; diff --git a/api_docs/kbn_some_dev_log.devdocs.json b/api_docs/kbn_some_dev_log.devdocs.json index 7bfd2a8a85bf8..6c0972ecabb5b 100644 --- a/api_docs/kbn_some_dev_log.devdocs.json +++ b/api_docs/kbn_some_dev_log.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/some-dev-log", @@ -38,6 +39,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/some-dev-log", @@ -51,6 +53,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -65,6 +68,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -84,6 +88,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/some-dev-log", @@ -97,6 +102,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -111,6 +117,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -130,6 +137,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/some-dev-log", @@ -143,6 +151,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -157,6 +166,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -176,6 +186,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/some-dev-log", @@ -189,6 +200,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -203,6 +215,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -222,6 +235,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/some-dev-log", @@ -235,6 +249,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -249,6 +264,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -268,6 +284,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/some-dev-log", @@ -281,6 +298,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -295,6 +313,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -320,6 +339,7 @@ ], "path": "packages/kbn-some-dev-log/src/some_dev_log.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_some_dev_log.mdx b/api_docs/kbn_some_dev_log.mdx index ef9b5db71faab..bcafbf060e852 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: 2022-09-05 +date: 2022-09-08 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_package_json.devdocs.json b/api_docs/kbn_sort_package_json.devdocs.json index 190d98caa9378..13d828ab69ae0 100644 --- a/api_docs/kbn_sort_package_json.devdocs.json +++ b/api_docs/kbn_sort_package_json.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/kbn-sort-package-json/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/sort-package-json", @@ -36,6 +37,7 @@ ], "path": "packages/kbn-sort-package-json/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_sort_package_json.mdx b/api_docs/kbn_sort_package_json.mdx index 2aa601aa28789..711d3242b36c2 100644 --- a/api_docs/kbn_sort_package_json.mdx +++ b/api_docs/kbn_sort_package_json.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-sort-package-json title: "@kbn/sort-package-json" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/sort-package-json plugin -date: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/sort-package-json'] --- import kbnSortPackageJsonObj from './kbn_sort_package_json.devdocs.json'; diff --git a/api_docs/kbn_std.devdocs.json b/api_docs/kbn_std.devdocs.json index 95993490eec8d..c8636b80ef3b5 100644 --- a/api_docs/kbn_std.devdocs.json +++ b/api_docs/kbn_std.devdocs.json @@ -9,7 +9,88 @@ "objects": [] }, "server": { - "classes": [], + "classes": [ + { + "parentPluginId": "@kbn/std", + "id": "def-server.Semaphore", + "type": "Class", + "tags": [], + "label": "Semaphore", + "description": [], + "path": "packages/kbn-std/src/semaphore.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/std", + "id": "def-server.Semaphore.Unnamed", + "type": "Function", + "tags": [], + "label": "Constructor", + "description": [], + "signature": [ + "any" + ], + "path": "packages/kbn-std/src/semaphore.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "@kbn/std", + "id": "def-server.Semaphore.Unnamed.$1", + "type": "number", + "tags": [], + "label": "capacity", + "description": [], + "signature": [ + "number" + ], + "path": "packages/kbn-std/src/semaphore.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [] + }, + { + "parentPluginId": "@kbn/std", + "id": "def-server.Semaphore.acquire", + "type": "Function", + "tags": [], + "label": "acquire", + "description": [], + "signature": [ + "() => ", + "OperatorFunction", + "" + ], + "path": "packages/kbn-std/src/semaphore.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [] + }, + { + "parentPluginId": "@kbn/std", + "id": "def-server.Semaphore.release", + "type": "Function", + "tags": [], + "label": "release", + "description": [], + "signature": [ + "() => void" + ], + "path": "packages/kbn-std/src/semaphore.ts", + "deprecated": false, + "trackAdoption": false, + "children": [], + "returnComment": [] + } + ], + "initialIsOpen": false + } + ], "functions": [ { "parentPluginId": "@kbn/std", @@ -25,6 +106,7 @@ ], "path": "packages/kbn-std/src/assert_never.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -38,6 +120,7 @@ ], "path": "packages/kbn-std/src/assert_never.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -62,6 +145,7 @@ ], "path": "packages/kbn-std/src/iteration/for_each.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -78,6 +162,7 @@ ], "path": "packages/kbn-std/src/iteration/for_each.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -95,6 +180,7 @@ ], "path": "packages/kbn-std/src/iteration/for_each.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -119,6 +205,7 @@ ], "path": "packages/kbn-std/src/iteration/for_each.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -135,6 +222,7 @@ ], "path": "packages/kbn-std/src/iteration/for_each.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -151,6 +239,7 @@ ], "path": "packages/kbn-std/src/iteration/for_each.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -168,6 +257,7 @@ ], "path": "packages/kbn-std/src/iteration/for_each.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -192,6 +282,7 @@ ], "path": "packages/kbn-std/src/iteration/map.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -208,6 +299,7 @@ ], "path": "packages/kbn-std/src/iteration/map.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -225,6 +317,7 @@ ], "path": "packages/kbn-std/src/iteration/map.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -249,6 +342,7 @@ ], "path": "packages/kbn-std/src/iteration/map.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -265,6 +359,7 @@ ], "path": "packages/kbn-std/src/iteration/map.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -281,6 +376,7 @@ ], "path": "packages/kbn-std/src/iteration/map.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -298,6 +394,7 @@ ], "path": "packages/kbn-std/src/iteration/map.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -320,6 +417,7 @@ ], "path": "packages/kbn-std/src/deep_freeze.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -333,6 +431,7 @@ ], "path": "packages/kbn-std/src/deep_freeze.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -351,6 +450,7 @@ ], "path": "packages/kbn-std/src/ensure_no_unsafe_properties.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -364,6 +464,7 @@ ], "path": "packages/kbn-std/src/ensure_no_unsafe_properties.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -384,6 +485,7 @@ ], "path": "packages/kbn-std/src/get.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -397,6 +499,7 @@ ], "path": "packages/kbn-std/src/get.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -411,6 +514,7 @@ ], "path": "packages/kbn-std/src/get.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -429,6 +533,7 @@ ], "path": "packages/kbn-std/src/get.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -442,6 +547,7 @@ ], "path": "packages/kbn-std/src/get.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -456,6 +562,7 @@ ], "path": "packages/kbn-std/src/get.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -474,6 +581,7 @@ ], "path": "packages/kbn-std/src/get.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -487,6 +595,7 @@ ], "path": "packages/kbn-std/src/get.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -501,6 +610,7 @@ ], "path": "packages/kbn-std/src/get.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -519,6 +629,7 @@ ], "path": "packages/kbn-std/src/get.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -532,6 +643,7 @@ ], "path": "packages/kbn-std/src/get.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -546,6 +658,7 @@ ], "path": "packages/kbn-std/src/get.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -564,6 +677,7 @@ ], "path": "packages/kbn-std/src/get.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -577,6 +691,7 @@ ], "path": "packages/kbn-std/src/get.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -591,6 +706,7 @@ ], "path": "packages/kbn-std/src/get.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -609,6 +725,7 @@ ], "path": "packages/kbn-std/src/get.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -622,6 +739,7 @@ ], "path": "packages/kbn-std/src/get.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -636,6 +754,7 @@ ], "path": "packages/kbn-std/src/get.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -656,6 +775,7 @@ ], "path": "packages/kbn-std/src/get_flattened_object.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -669,6 +789,7 @@ ], "path": "packages/kbn-std/src/get_flattened_object.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -689,6 +810,7 @@ ], "path": "packages/kbn-std/src/url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -702,6 +824,7 @@ ], "path": "packages/kbn-std/src/url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -720,6 +843,7 @@ ], "path": "packages/kbn-std/src/promise.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -733,6 +857,7 @@ ], "path": "packages/kbn-std/src/promise.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -753,6 +878,7 @@ ], "path": "packages/kbn-std/src/url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -766,6 +892,7 @@ ], "path": "packages/kbn-std/src/url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -792,6 +919,7 @@ ], "path": "packages/kbn-std/src/iteration/observable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -808,6 +936,7 @@ ], "path": "packages/kbn-std/src/iteration/observable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -825,6 +954,7 @@ ], "path": "packages/kbn-std/src/iteration/observable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -843,6 +973,7 @@ ], "path": "packages/kbn-std/src/map_to_object.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -856,6 +987,7 @@ ], "path": "packages/kbn-std/src/map_to_object.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -882,6 +1014,7 @@ ], "path": "packages/kbn-std/src/iteration/observable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -898,6 +1031,7 @@ ], "path": "packages/kbn-std/src/iteration/observable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -914,6 +1048,7 @@ ], "path": "packages/kbn-std/src/iteration/observable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -931,6 +1066,7 @@ ], "path": "packages/kbn-std/src/iteration/observable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -951,6 +1087,7 @@ ], "path": "packages/kbn-std/src/merge.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -964,6 +1101,7 @@ ], "path": "packages/kbn-std/src/merge.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -978,6 +1116,7 @@ ], "path": "packages/kbn-std/src/merge.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -996,6 +1135,7 @@ ], "path": "packages/kbn-std/src/merge.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -1009,6 +1149,7 @@ ], "path": "packages/kbn-std/src/merge.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1023,6 +1164,7 @@ ], "path": "packages/kbn-std/src/merge.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1037,6 +1179,7 @@ ], "path": "packages/kbn-std/src/merge.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1055,6 +1198,7 @@ ], "path": "packages/kbn-std/src/merge.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -1068,6 +1212,7 @@ ], "path": "packages/kbn-std/src/merge.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1082,6 +1227,7 @@ ], "path": "packages/kbn-std/src/merge.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1096,6 +1242,7 @@ ], "path": "packages/kbn-std/src/merge.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1114,6 +1261,7 @@ ], "path": "packages/kbn-std/src/merge.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -1127,6 +1275,7 @@ ], "path": "packages/kbn-std/src/merge.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1141,6 +1290,7 @@ ], "path": "packages/kbn-std/src/merge.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1177,6 +1327,7 @@ ], "path": "packages/kbn-std/src/url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -1192,6 +1343,7 @@ ], "path": "packages/kbn-std/src/url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1224,6 +1376,7 @@ ], "path": "packages/kbn-std/src/url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1244,6 +1397,7 @@ ], "path": "packages/kbn-std/src/pick.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -1257,6 +1411,7 @@ ], "path": "packages/kbn-std/src/pick.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1271,6 +1426,7 @@ ], "path": "packages/kbn-std/src/pick.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1291,6 +1447,7 @@ ], "path": "packages/kbn-std/src/unset.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -1304,6 +1461,7 @@ ], "path": "packages/kbn-std/src/unset.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1318,6 +1476,7 @@ ], "path": "packages/kbn-std/src/unset.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1336,6 +1495,7 @@ ], "path": "packages/kbn-std/src/promise.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -1346,6 +1506,7 @@ "description": [], "path": "packages/kbn-std/src/promise.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -1358,7 +1519,8 @@ "Promise" ], "path": "packages/kbn-std/src/promise.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/std", @@ -1368,7 +1530,8 @@ "label": "timeoutMs", "description": [], "path": "packages/kbn-std/src/promise.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1389,6 +1552,7 @@ ], "path": "packages/kbn-std/src/url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/std", @@ -1401,7 +1565,8 @@ "string | null | undefined" ], "path": "packages/kbn-std/src/url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/std", @@ -1414,7 +1579,8 @@ "string | null | undefined" ], "path": "packages/kbn-std/src/url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/std", @@ -1427,7 +1593,8 @@ "string | null | undefined" ], "path": "packages/kbn-std/src/url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/std", @@ -1440,7 +1607,8 @@ "string | null | undefined" ], "path": "packages/kbn-std/src/url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/std", @@ -1453,7 +1621,8 @@ "string | null | undefined" ], "path": "packages/kbn-std/src/url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/std", @@ -1466,7 +1635,8 @@ "boolean | null | undefined" ], "path": "packages/kbn-std/src/url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/std", @@ -1479,7 +1649,8 @@ "string | null | undefined" ], "path": "packages/kbn-std/src/url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/std", @@ -1493,7 +1664,8 @@ "" ], "path": "packages/kbn-std/src/url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1513,6 +1685,7 @@ ], "path": "packages/kbn-std/src/deep_freeze.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_std.mdx b/api_docs/kbn_std.mdx index fa9c18da6ba81..f235b690509b6 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/std'] --- import kbnStdObj from './kbn_std.devdocs.json'; @@ -21,13 +21,16 @@ Contact Kibana Core for questions regarding this plugin. | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 92 | 1 | 59 | 1 | +| 97 | 1 | 64 | 1 | ## Server ### Functions +### Classes + + ### Interfaces diff --git a/api_docs/kbn_stdio_dev_helpers.devdocs.json b/api_docs/kbn_stdio_dev_helpers.devdocs.json index 478b3ea7c54e8..05e554e4d9138 100644 --- a/api_docs/kbn_stdio_dev_helpers.devdocs.json +++ b/api_docs/kbn_stdio_dev_helpers.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/kbn-stdio-dev-helpers/src/observe_lines.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/stdio-dev-helpers", @@ -44,6 +45,7 @@ ], "path": "packages/kbn-stdio-dev-helpers/src/observe_lines.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -68,6 +70,7 @@ ], "path": "packages/kbn-stdio-dev-helpers/src/observe_readable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/stdio-dev-helpers", @@ -81,6 +84,7 @@ ], "path": "packages/kbn-stdio-dev-helpers/src/observe_readable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_stdio_dev_helpers.mdx b/api_docs/kbn_stdio_dev_helpers.mdx index 4e56019253eaa..5342e38297ac1 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_storybook.devdocs.json index ddfb4665d511a..9ae2b541e9eca 100644 --- a/api_docs/kbn_storybook.devdocs.json +++ b/api_docs/kbn_storybook.devdocs.json @@ -29,6 +29,7 @@ ], "path": "packages/kbn-storybook/src/lib/default_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/storybook", @@ -42,6 +43,7 @@ ], "path": "packages/kbn-storybook/src/lib/default_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -60,6 +62,7 @@ ], "path": "packages/kbn-storybook/src/lib/run_storybook_cli.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/storybook", @@ -70,6 +73,7 @@ "description": [], "path": "packages/kbn-storybook/src/lib/run_storybook_cli.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/storybook", @@ -79,7 +83,8 @@ "label": "configDir", "description": [], "path": "packages/kbn-storybook/src/lib/run_storybook_cli.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/storybook", @@ -89,7 +94,8 @@ "label": "name", "description": [], "path": "packages/kbn-storybook/src/lib/run_storybook_cli.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -113,6 +119,7 @@ ], "path": "node_modules/@storybook/core-common/dist/ts3.9/types.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/storybook", @@ -128,7 +135,8 @@ "[] | undefined" ], "path": "node_modules/@storybook/core-common/dist/ts3.9/types.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/storybook", @@ -142,7 +150,8 @@ " | undefined" ], "path": "node_modules/@storybook/core-common/dist/ts3.9/types.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/storybook", @@ -157,7 +166,8 @@ "(string | DirectoryMapping)[] | undefined" ], "path": "node_modules/@storybook/core-common/dist/ts3.9/types.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/storybook", @@ -170,7 +180,8 @@ "string | undefined" ], "path": "node_modules/@storybook/core-common/dist/ts3.9/types.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/storybook", @@ -183,7 +194,8 @@ "{ postcss?: boolean | undefined; emotionAlias?: boolean | undefined; buildStoriesJson?: boolean | undefined; previewCsfV3?: boolean | undefined; modernInlineRender?: boolean | undefined; storyStoreV7?: boolean | undefined; breakingChangesV7?: boolean | undefined; interactionsDebugger?: boolean | undefined; babelModeV7?: boolean | undefined; argTypeTargetsV7?: boolean | undefined; warnOnLegacyHierarchySeparator?: boolean | undefined; } | undefined" ], "path": "node_modules/@storybook/core-common/dist/ts3.9/types.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/storybook", @@ -199,7 +211,8 @@ "[]" ], "path": "node_modules/@storybook/core-common/dist/ts3.9/types.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/storybook", @@ -215,7 +228,8 @@ " | undefined" ], "path": "node_modules/@storybook/core-common/dist/ts3.9/types.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/storybook", @@ -232,7 +246,8 @@ "> | undefined" ], "path": "node_modules/@storybook/core-common/dist/ts3.9/types.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/storybook", @@ -251,7 +266,8 @@ ") => StorybookRefs) | undefined" ], "path": "node_modules/@storybook/core-common/dist/ts3.9/types.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/storybook", @@ -275,6 +291,7 @@ ], "path": "node_modules/@storybook/core-common/dist/ts3.9/types.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/storybook", @@ -288,6 +305,7 @@ ], "path": "node_modules/@storybook/core-common/dist/ts3.9/types.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -302,6 +320,7 @@ ], "path": "node_modules/@storybook/core-common/dist/ts3.9/types.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -323,6 +342,7 @@ ], "path": "node_modules/@storybook/core-common/dist/ts3.9/types.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/storybook", @@ -336,6 +356,7 @@ ], "path": "node_modules/@storybook/core-common/dist/ts3.9/types.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -350,6 +371,7 @@ ], "path": "node_modules/@storybook/core-common/dist/ts3.9/types.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -371,6 +393,7 @@ "description": [], "path": "packages/kbn-storybook/src/lib/default_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/storybook", @@ -383,7 +406,8 @@ "string[]" ], "path": "packages/kbn-storybook/src/lib/default_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/storybook", @@ -396,7 +420,8 @@ "string[]" ], "path": "packages/kbn-storybook/src/lib/default_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/storybook", @@ -407,6 +432,7 @@ "description": [], "path": "packages/kbn-storybook/src/lib/default_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/storybook", @@ -419,7 +445,8 @@ "false" ], "path": "packages/kbn-storybook/src/lib/default_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -432,6 +459,7 @@ "description": [], "path": "packages/kbn-storybook/src/lib/default_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/storybook", @@ -444,7 +472,8 @@ "false" ], "path": "packages/kbn-storybook/src/lib/default_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -462,6 +491,7 @@ ], "path": "packages/kbn-storybook/src/lib/default_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/storybook", @@ -475,6 +505,7 @@ ], "path": "packages/kbn-storybook/src/lib/default_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -528,6 +559,7 @@ ], "path": "packages/kbn-storybook/src/lib/default_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/storybook", @@ -541,6 +573,7 @@ ], "path": "packages/kbn-storybook/src/lib/default_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -555,6 +588,7 @@ ], "path": "packages/kbn-storybook/src/lib/default_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -572,6 +606,7 @@ "description": [], "path": "packages/kbn-storybook/src/lib/default_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/storybook", @@ -584,7 +619,8 @@ "any" ], "path": "packages/kbn-storybook/src/lib/default_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/storybook", @@ -601,6 +637,7 @@ ], "path": "packages/kbn-storybook/src/lib/default_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/storybook", @@ -614,6 +651,7 @@ ], "path": "packages/kbn-storybook/src/lib/default_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kbn_storybook.mdx b/api_docs/kbn_storybook.mdx index 70b0801d02a34..cc0aa729278dc 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/storybook'] --- import kbnStorybookObj from './kbn_storybook.devdocs.json'; diff --git a/api_docs/kbn_telemetry_tools.devdocs.json b/api_docs/kbn_telemetry_tools.devdocs.json index 81acf2ca23245..dd23d1e8f443b 100644 --- a/api_docs/kbn_telemetry_tools.devdocs.json +++ b/api_docs/kbn_telemetry_tools.devdocs.json @@ -23,6 +23,7 @@ ], "path": "packages/kbn-telemetry-tools/src/cli/run_telemetry_check.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -39,6 +40,7 @@ ], "path": "packages/kbn-telemetry-tools/src/cli/run_telemetry_extract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false diff --git a/api_docs/kbn_telemetry_tools.mdx b/api_docs/kbn_telemetry_tools.mdx index ae1b9679d9963..3ac584012e863 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/telemetry-tools'] --- import kbnTelemetryToolsObj from './kbn_telemetry_tools.devdocs.json'; diff --git a/api_docs/kbn_test.devdocs.json b/api_docs/kbn_test.devdocs.json index 2fdec23b80a59..3a4cf723d0775 100644 --- a/api_docs/kbn_test.devdocs.json +++ b/api_docs/kbn_test.devdocs.json @@ -19,6 +19,7 @@ "description": [], "path": "packages/kbn-test/src/functional_test_runner/lib/config/config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -28,7 +29,8 @@ "label": "path", "description": [], "path": "packages/kbn-test/src/functional_test_runner/lib/config/config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -42,6 +44,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/config/config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -55,6 +58,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/config/config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -72,6 +76,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/config/config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -85,6 +90,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/config/config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -102,6 +108,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/config/config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -115,6 +122,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/config/config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -129,6 +137,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/config/config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -146,6 +155,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/config/config.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -161,6 +171,7 @@ "description": [], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/docker_servers_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -174,6 +185,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/docker_servers_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -184,6 +196,7 @@ "description": [], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/docker_servers_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -203,7 +216,8 @@ } ], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/docker_servers_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -219,6 +233,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/docker_servers_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -239,6 +254,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/docker_servers_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -256,6 +272,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/docker_servers_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -269,6 +286,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/docker_servers_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -286,6 +304,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/docker_servers_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -299,6 +318,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/docker_servers_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -312,7 +332,7 @@ "label": "get", "description": [], "signature": [ - "(name: string) => { name: string; url: string; enabled: boolean; portInContainer: number; port: number; image: string; waitForLogLine?: string | RegExp | undefined; waitFor?: ((server: ", + "(name: string) => { name: string; url: string; enabled: boolean; portInContainer: number; port: number; image: string; waitForLogLine?: string | RegExp | undefined; waitForLogLineTimeoutMs?: number | undefined; waitFor?: ((server: ", { "pluginId": "@kbn/test", "scope": "server", @@ -328,6 +348,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/docker_servers_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -341,6 +362,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/docker_servers_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -358,6 +380,7 @@ "description": [], "path": "packages/kbn-test/src/functional_test_runner/lib/es_version.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -378,6 +401,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/es_version.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -392,7 +416,8 @@ "node_modules/@types/semver/classes/semver" ], "path": "packages/kbn-test/src/functional_test_runner/lib/es_version.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -406,6 +431,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/es_version.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -419,6 +445,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/es_version.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -436,6 +463,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/es_version.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -453,6 +481,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/es_version.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -466,6 +495,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/es_version.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -485,6 +515,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/es_version.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -498,6 +529,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/es_version.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -515,6 +547,7 @@ "description": [], "path": "packages/kbn-test/src/functional_test_runner/functional_test_runner.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -528,6 +561,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/functional_test_runner.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -541,6 +575,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/functional_test_runner.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -555,6 +590,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/functional_test_runner.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -569,6 +605,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/functional_test_runner.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -591,6 +628,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/functional_test_runner.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -608,6 +646,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/functional_test_runner.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -621,6 +660,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/functional_test_runner.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -638,6 +678,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/functional_test_runner.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -661,6 +702,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/functional_test_runner.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -676,6 +718,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/functional_test_runner.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -689,6 +732,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/functional_test_runner.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -716,6 +760,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -729,6 +774,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -742,6 +788,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -759,6 +806,7 @@ "description": [], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -771,7 +819,8 @@ "KbnClientStatus" ], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -784,7 +833,8 @@ "KbnClientPlugins" ], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -797,7 +847,8 @@ "KbnClientVersion" ], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -810,7 +861,8 @@ "KbnClientSavedObjects" ], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -823,7 +875,8 @@ "KbnClientSpaces" ], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -836,7 +889,8 @@ "KbnClientUiSettings" ], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -849,7 +903,8 @@ "KbnClientImportExport" ], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -865,6 +920,7 @@ ], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -884,6 +940,7 @@ ], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -907,6 +964,7 @@ ], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -920,6 +978,7 @@ ], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -937,6 +996,7 @@ ], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -950,6 +1010,7 @@ ], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -977,6 +1038,7 @@ ], "path": "packages/kbn-test/src/kbn_client/kbn_client_requester_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -990,7 +1052,8 @@ " | undefined" ], "path": "packages/kbn-test/src/kbn_client/kbn_client_requester_error.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -1004,6 +1067,7 @@ ], "path": "packages/kbn-test/src/kbn_client/kbn_client_requester_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -1017,6 +1081,7 @@ ], "path": "packages/kbn-test/src/kbn_client/kbn_client_requester_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1031,6 +1096,7 @@ ], "path": "packages/kbn-test/src/kbn_client/kbn_client_requester_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1048,6 +1114,7 @@ "description": [], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -1077,7 +1144,8 @@ "]>" ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -1107,7 +1175,8 @@ "]>" ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -1137,7 +1206,8 @@ "]>" ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -1167,7 +1237,8 @@ "]>" ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -1197,7 +1268,8 @@ "]>" ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -1227,7 +1299,8 @@ "]>" ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -1257,7 +1330,8 @@ "]>" ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -1279,7 +1353,8 @@ "<[]>" ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -1293,6 +1368,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -1306,6 +1382,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1333,6 +1410,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle_phase.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -1342,7 +1420,8 @@ "label": "triggered", "description": [], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle_phase.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -1356,7 +1435,8 @@ "" ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle_phase.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -1370,7 +1450,8 @@ "" ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle_phase.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -1384,6 +1465,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle_phase.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -1397,6 +1479,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle_phase.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1408,6 +1491,7 @@ "description": [], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle_phase.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -1420,7 +1504,8 @@ "boolean | undefined" ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle_phase.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1439,6 +1524,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle_phase.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -1452,6 +1538,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle_phase.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1471,6 +1558,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle_phase.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -1484,6 +1572,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle_phase.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1501,6 +1590,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle_phase.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -1514,6 +1604,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/lifecycle_phase.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1536,6 +1627,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/providers/async_instance.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -1549,6 +1641,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/providers/async_instance.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1563,6 +1656,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/providers/async_instance.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1577,6 +1671,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/providers/async_instance.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1612,6 +1707,7 @@ ], "path": "packages/kbn-test/src/es/es_client_for_testing.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -1631,6 +1727,7 @@ ], "path": "packages/kbn-test/src/es/es_client_for_testing.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1653,6 +1750,7 @@ ], "path": "packages/kbn-test/src/es/es_client_for_testing.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1680,6 +1778,7 @@ ], "path": "packages/kbn-test/src/es/es_client_for_testing.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -1699,6 +1798,7 @@ ], "path": "packages/kbn-test/src/es/es_client_for_testing.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1734,6 +1834,7 @@ ], "path": "packages/kbn-test/src/es/es_client_for_testing.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -1753,6 +1854,7 @@ ], "path": "packages/kbn-test/src/es/es_client_for_testing.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1775,6 +1877,7 @@ ], "path": "packages/kbn-test/src/es/es_client_for_testing.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1801,6 +1904,7 @@ ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -1814,6 +1918,7 @@ ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1850,6 +1955,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -1871,6 +1977,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1889,6 +1996,7 @@ ], "path": "packages/kbn-test/src/mocha/xml.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -1902,6 +2010,7 @@ ], "path": "packages/kbn-test/src/mocha/xml.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1926,6 +2035,7 @@ ], "path": "packages/kbn-test/src/functional_tests/lib/kibana_cli_args.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -1939,6 +2049,7 @@ ], "path": "packages/kbn-test/src/functional_tests/lib/kibana_cli_args.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1953,6 +2064,7 @@ ], "path": "packages/kbn-test/src/functional_tests/lib/kibana_cli_args.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1973,6 +2085,7 @@ ], "path": "packages/kbn-test/src/functional_tests/lib/kibana_cli_args.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -1986,6 +2099,7 @@ ], "path": "packages/kbn-test/src/functional_tests/lib/kibana_cli_args.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2008,6 +2122,7 @@ ], "path": "packages/kbn-test/src/jest/get_url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -2023,6 +2138,7 @@ ], "path": "packages/kbn-test/src/jest/get_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2039,6 +2155,7 @@ ], "path": "packages/kbn-test/src/jest/get_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2075,6 +2192,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/config/read_config_file.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -2088,6 +2206,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/config/read_config_file.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2108,6 +2227,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/config/read_config_file.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2122,6 +2242,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/config/read_config_file.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2136,6 +2257,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/config/read_config_file.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2154,6 +2276,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/config/run_check_ftr_configs_cli.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -2170,6 +2293,7 @@ ], "path": "packages/kbn-test/src/jest/run_check_jest_configs_cli.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -2186,6 +2310,7 @@ ], "path": "packages/kbn-test/src/failed_tests_reporter/run_failed_tests_reporter_cli.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -2202,6 +2327,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/cli.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -2218,6 +2344,7 @@ ], "path": "packages/kbn-test/src/jest/run.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -2231,6 +2358,7 @@ ], "path": "packages/kbn-test/src/jest/run.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2249,6 +2377,7 @@ ], "path": "packages/kbn-test/src/kbn_archiver_cli.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -2265,6 +2394,7 @@ ], "path": "packages/kbn-test/src/functional_tests/tasks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -2278,6 +2408,7 @@ ], "path": "packages/kbn-test/src/functional_tests/tasks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2296,6 +2427,7 @@ ], "path": "packages/kbn-test/src/functional_tests/tasks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -2309,6 +2441,7 @@ ], "path": "packages/kbn-test/src/functional_tests/tasks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2327,6 +2460,7 @@ ], "path": "packages/kbn-test/src/kbn_client/kbn_client_requester.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -2340,6 +2474,7 @@ ], "path": "packages/kbn-test/src/kbn_client/kbn_client_requester.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2354,6 +2489,7 @@ ], "path": "packages/kbn-test/src/kbn_client/kbn_client_requester.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2381,6 +2517,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -2396,6 +2533,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2411,6 +2549,7 @@ "description": [], "path": "packages/kbn-test/src/es/test_es_cluster.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -2423,7 +2562,8 @@ "string | undefined" ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2436,7 +2576,8 @@ "string | undefined" ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2451,7 +2592,8 @@ "string | undefined" ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2466,7 +2608,8 @@ "string[] | undefined" ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2479,7 +2622,8 @@ "string | undefined" ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2492,7 +2636,8 @@ "string | undefined" ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2507,7 +2652,8 @@ "\"basic\" | \"gold\" | \"trial\" | undefined" ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2520,7 +2666,8 @@ "ToolingLog" ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2535,7 +2682,8 @@ "TestEsClusterNodesOptions[] | undefined" ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2550,7 +2698,8 @@ "string | undefined" ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2565,7 +2714,8 @@ "number | undefined" ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2580,7 +2730,8 @@ "boolean | undefined" ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2595,7 +2746,8 @@ "string | number | undefined" ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2611,6 +2763,7 @@ ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -2624,6 +2777,7 @@ ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2658,6 +2812,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -2667,7 +2822,8 @@ "label": "name", "description": [], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2677,7 +2833,8 @@ "label": "url", "description": [], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2691,6 +2848,7 @@ "description": [], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -2700,7 +2858,8 @@ "label": "enabled", "description": [], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2710,7 +2869,8 @@ "label": "portInContainer", "description": [], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2720,7 +2880,8 @@ "label": "port", "description": [], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2730,7 +2891,8 @@ "label": "image", "description": [], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2743,7 +2905,22 @@ "string | RegExp | undefined" ], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "@kbn/test", + "id": "def-server.DockerServerSpec.waitForLogLineTimeoutMs", + "type": "number", + "tags": [], + "label": "waitForLogLineTimeoutMs", + "description": [], + "signature": [ + "number | undefined" + ], + "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2771,6 +2948,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -2790,6 +2968,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2805,6 +2984,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2821,7 +3001,8 @@ "string[] | undefined" ], "path": "packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2849,6 +3030,7 @@ ], "path": "packages/kbn-test/src/es/es_client_for_testing.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -2860,7 +3042,8 @@ "url of es instance" ], "path": "packages/kbn-test/src/es/es_client_for_testing.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2875,7 +3058,8 @@ "{ username: string; password: string; } | undefined" ], "path": "packages/kbn-test/src/es/es_client_for_testing.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2890,7 +3074,8 @@ "boolean | undefined" ], "path": "packages/kbn-test/src/es/es_client_for_testing.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2904,6 +3089,7 @@ "description": [], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -2916,7 +3102,8 @@ "ToolingLog" ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2935,7 +3122,8 @@ } ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -2957,6 +3145,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -2970,6 +3159,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2997,6 +3187,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -3012,6 +3203,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -3025,6 +3217,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3042,6 +3235,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -3055,6 +3249,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3072,6 +3267,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -3085,6 +3281,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3140,6 +3337,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -3153,6 +3351,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3206,6 +3405,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -3219,6 +3419,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3272,6 +3473,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -3285,6 +3487,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3338,6 +3541,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -3351,6 +3555,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3404,6 +3609,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -3417,6 +3623,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3470,6 +3677,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -3483,6 +3691,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3536,6 +3745,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -3549,6 +3759,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3568,6 +3779,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -3581,6 +3793,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3600,6 +3813,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -3613,6 +3827,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3632,6 +3847,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -3645,6 +3861,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3662,6 +3879,7 @@ "description": [], "path": "packages/kbn-test/src/es/test_es_cluster.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -3674,7 +3892,8 @@ "number[]" ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -3687,7 +3906,8 @@ "Node[]" ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -3701,6 +3921,7 @@ ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3716,6 +3937,7 @@ ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3731,6 +3953,7 @@ ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3746,6 +3969,7 @@ ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3762,6 +3986,7 @@ ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3777,6 +4002,7 @@ ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -3792,6 +4018,7 @@ "description": [], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -3801,7 +4028,8 @@ "label": "url", "description": [], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -3814,7 +4042,8 @@ "Buffer[] | undefined" ], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -3827,7 +4056,8 @@ "ToolingLog" ], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -3841,7 +4071,8 @@ " | undefined" ], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -3854,7 +4085,8 @@ "string | undefined" ], "path": "packages/kbn-test/src/kbn_client/kbn_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3868,6 +4100,7 @@ "description": [], "path": "packages/kbn-test/src/functional_test_runner/fake_mocha_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -3887,7 +4120,8 @@ "[]" ], "path": "packages/kbn-test/src/functional_test_runner/fake_mocha_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -3907,7 +4141,8 @@ "[]" ], "path": "packages/kbn-test/src/functional_test_runner/fake_mocha_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -3917,7 +4152,8 @@ "label": "title", "description": [], "path": "packages/kbn-test/src/functional_test_runner/fake_mocha_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -3927,7 +4163,8 @@ "label": "file", "description": [], "path": "packages/kbn-test/src/functional_test_runner/fake_mocha_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -3947,7 +4184,8 @@ " | undefined" ], "path": "packages/kbn-test/src/functional_test_runner/fake_mocha_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -3969,6 +4207,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/fake_mocha_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -3990,6 +4229,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/fake_mocha_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4003,7 +4243,8 @@ "label": "root", "description": [], "path": "packages/kbn-test/src/functional_test_runner/fake_mocha_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -4013,7 +4254,8 @@ "label": "suiteTag", "description": [], "path": "packages/kbn-test/src/functional_test_runner/fake_mocha_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4027,6 +4269,7 @@ "description": [], "path": "packages/kbn-test/src/functional_test_runner/fake_mocha_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -4040,6 +4283,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/fake_mocha_types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4051,7 +4295,8 @@ "label": "title", "description": [], "path": "packages/kbn-test/src/functional_test_runner/fake_mocha_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -4064,7 +4309,8 @@ "string | undefined" ], "path": "packages/kbn-test/src/functional_test_runner/fake_mocha_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -4084,7 +4330,8 @@ " | undefined" ], "path": "packages/kbn-test/src/functional_test_runner/fake_mocha_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -4098,6 +4345,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/fake_mocha_types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4112,7 +4360,8 @@ "boolean | undefined" ], "path": "packages/kbn-test/src/functional_test_runner/fake_mocha_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4131,6 +4380,7 @@ ], "path": "packages/kbn-test/src/ci_parallel_process_prefix.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4161,6 +4411,7 @@ ], "path": "packages/kbn-test/src/es/test_es_cluster.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4185,6 +4436,7 @@ ], "path": "packages/kbn-test/src/functional_test_runner/public_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -4198,6 +4450,7 @@ "description": [], "path": "packages/kbn-test/src/kbn/users.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -4207,7 +4460,8 @@ "label": "username", "description": [], "path": "packages/kbn-test/src/kbn/users.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -4217,7 +4471,8 @@ "label": "password", "description": [], "path": "packages/kbn-test/src/kbn/users.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4234,6 +4489,7 @@ ], "path": "packages/kbn-test/src/es/es_test_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4248,6 +4504,7 @@ ], "path": "packages/kbn-test/src/kbn/kbn_test_config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4259,6 +4516,7 @@ "description": [], "path": "packages/kbn-test/src/kbn/users.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -4268,7 +4526,8 @@ "label": "username", "description": [], "path": "packages/kbn-test/src/kbn/users.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -4278,7 +4537,8 @@ "label": "password", "description": [], "path": "packages/kbn-test/src/kbn/users.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4292,6 +4552,7 @@ "description": [], "path": "packages/kbn-test/src/kbn/users.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -4301,7 +4562,8 @@ "label": "username", "description": [], "path": "packages/kbn-test/src/kbn/users.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -4311,7 +4573,8 @@ "label": "password", "description": [], "path": "packages/kbn-test/src/kbn/users.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4327,6 +4590,7 @@ ], "path": "packages/kbn-test/src/kbn/users.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test", @@ -4339,7 +4603,8 @@ "any" ], "path": "packages/kbn-test/src/kbn/users.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test", @@ -4349,7 +4614,8 @@ "label": "password", "description": [], "path": "packages/kbn-test/src/kbn/users.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_test.mdx b/api_docs/kbn_test.mdx index e5ec44f07c73c..0c35076ee177d 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/test'] --- import kbnTestObj from './kbn_test.devdocs.json'; @@ -21,7 +21,7 @@ Contact Operations for questions regarding this plugin. | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 252 | 5 | 211 | 11 | +| 253 | 5 | 212 | 11 | ## Server diff --git a/api_docs/kbn_test_jest_helpers.devdocs.json b/api_docs/kbn_test_jest_helpers.devdocs.json index 20336927499cb..736336420aeec 100644 --- a/api_docs/kbn_test_jest_helpers.devdocs.json +++ b/api_docs/kbn_test_jest_helpers.devdocs.json @@ -29,6 +29,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/stub_browser_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -38,7 +39,8 @@ "label": "length", "description": [], "path": "packages/kbn-test-jest-helpers/src/stub_browser_storage.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test-jest-helpers", @@ -52,6 +54,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/stub_browser_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -65,6 +68,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/stub_browser_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -82,6 +86,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/stub_browser_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -95,6 +100,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/stub_browser_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -112,6 +118,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/stub_browser_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -125,6 +132,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/stub_browser_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -139,6 +147,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/stub_browser_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -156,6 +165,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/stub_browser_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -169,6 +179,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/stub_browser_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -186,6 +197,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/stub_browser_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -201,6 +213,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/stub_browser_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -214,6 +227,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/stub_browser_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -231,6 +245,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/stub_browser_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -246,6 +261,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/stub_browser_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -268,6 +284,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/stub_broadcast_channel.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -284,6 +301,7 @@ ], "path": "packages/kbn-test-jest-helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -297,6 +315,7 @@ ], "path": "packages/kbn-test-jest-helpers/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -319,6 +338,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/axe_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -332,6 +352,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/axe_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -358,6 +379,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/find_test_subject.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -374,6 +396,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/find_test_subject.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -390,6 +413,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/find_test_subject.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -406,6 +430,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/find_test_subject.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -430,6 +455,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/axe_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -443,6 +469,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/axe_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -463,6 +490,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/stub_broadcast_channel.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "BroadcastChannel[]" @@ -481,6 +509,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/random.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -491,6 +520,7 @@ "description": [], "path": "packages/kbn-test-jest-helpers/src/random.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -500,7 +530,8 @@ "label": "min", "description": [], "path": "packages/kbn-test-jest-helpers/src/random.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test-jest-helpers", @@ -510,7 +541,8 @@ "label": "max", "description": [], "path": "packages/kbn-test-jest-helpers/src/random.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -530,6 +562,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/random.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -543,6 +576,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/random.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -565,6 +599,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -580,6 +615,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -596,6 +632,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -610,6 +647,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -634,6 +672,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -647,6 +686,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -673,6 +713,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -688,6 +729,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -699,6 +741,7 @@ "description": [], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -711,7 +754,8 @@ "HTMLElement | undefined" ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test-jest-helpers", @@ -724,7 +768,8 @@ "any" ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test-jest-helpers", @@ -738,7 +783,8 @@ " | undefined" ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -760,6 +806,7 @@ ], "path": "packages/kbn-test-jest-helpers/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -778,6 +825,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -791,6 +839,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -829,6 +878,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/testbed.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -845,6 +895,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/testbed.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -867,6 +918,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/testbed.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -903,6 +955,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/testbed.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -917,6 +970,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/testbed.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -938,6 +992,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/testbed.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -982,6 +1037,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/testbed.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -996,6 +1052,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/testbed.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1025,6 +1082,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/testbed.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1049,6 +1107,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -1064,6 +1123,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1075,6 +1135,7 @@ "description": [], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -1087,7 +1148,8 @@ "any" ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test-jest-helpers", @@ -1101,7 +1163,8 @@ " | undefined" ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1123,6 +1186,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/jsdom_svg_mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -1136,6 +1200,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/jsdom_svg_mocks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1150,6 +1215,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/jsdom_svg_mocks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1168,6 +1234,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/jsdom_svg_mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -1181,6 +1248,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/jsdom_svg_mocks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1195,6 +1263,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/jsdom_svg_mocks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1213,6 +1282,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/jsdom_svg_mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -1226,6 +1296,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/jsdom_svg_mocks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1240,6 +1311,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/jsdom_svg_mocks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1254,6 +1326,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/jsdom_svg_mocks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1268,6 +1341,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/jsdom_svg_mocks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1286,6 +1360,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/jsdom_svg_mocks.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -1299,6 +1374,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/jsdom_svg_mocks.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1319,6 +1395,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -1332,6 +1409,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1358,6 +1436,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -1373,6 +1452,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1384,6 +1464,7 @@ "description": [], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -1396,7 +1477,8 @@ "any" ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test-jest-helpers", @@ -1410,7 +1492,8 @@ " | undefined" ], "path": "packages/kbn-test-jest-helpers/src/enzyme_helpers.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1434,6 +1517,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/stub_broadcast_channel.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -1450,6 +1534,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/stub_web_worker.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -1468,6 +1553,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -1482,6 +1568,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1496,6 +1583,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1518,6 +1606,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -1534,6 +1623,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1548,6 +1638,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1566,6 +1657,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/redux_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -1579,6 +1671,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/redux_helpers.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1607,6 +1700,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -1619,7 +1713,8 @@ "true" ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1633,6 +1728,7 @@ "description": [], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -1651,7 +1747,8 @@ "; value: string; }[]; }[]" ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test-jest-helpers", @@ -1666,7 +1763,8 @@ "string[][]" ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1690,6 +1788,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -1705,7 +1804,8 @@ ">" ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test-jest-helpers", @@ -1721,6 +1821,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -1736,6 +1837,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1752,6 +1854,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1774,6 +1877,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -1789,6 +1893,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1804,6 +1909,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1823,6 +1929,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -1838,6 +1945,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1860,7 +1968,8 @@ " | undefined) => string[]; }" ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test-jest-helpers", @@ -1881,7 +1990,8 @@ "; }" ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test-jest-helpers", @@ -1894,7 +2004,8 @@ "{ navigateTo: (url: string) => void; }" ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1919,6 +2030,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -1931,7 +2043,8 @@ "false | undefined" ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1959,6 +2072,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1972,7 +2086,8 @@ "any" ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2005,6 +2120,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2018,7 +2134,8 @@ "any" ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2043,6 +2160,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2056,7 +2174,8 @@ "any" ], "path": "packages/kbn-test-jest-helpers/src/testbed/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2072,6 +2191,7 @@ "description": [], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -2082,6 +2202,7 @@ "description": [], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -2095,6 +2216,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2112,6 +2234,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -2126,6 +2249,7 @@ ], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2140,6 +2264,7 @@ "description": [], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -2149,7 +2274,8 @@ "label": "pathname", "description": [], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test-jest-helpers", @@ -2159,7 +2285,8 @@ "label": "search", "description": [], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test-jest-helpers", @@ -2169,7 +2296,8 @@ "label": "state", "description": [], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test-jest-helpers", @@ -2179,7 +2307,8 @@ "label": "hash", "description": [], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2194,6 +2323,7 @@ "description": [], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -2204,6 +2334,7 @@ "description": [], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/test-jest-helpers", @@ -2213,7 +2344,8 @@ "label": "pathname", "description": [], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test-jest-helpers", @@ -2223,7 +2355,8 @@ "label": "search", "description": [], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test-jest-helpers", @@ -2233,7 +2366,8 @@ "label": "state", "description": [], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/test-jest-helpers", @@ -2243,7 +2377,8 @@ "label": "hash", "description": [], "path": "packages/kbn-test-jest-helpers/src/router_helpers.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kbn_test_jest_helpers.mdx b/api_docs/kbn_test_jest_helpers.mdx index 6730704439384..f69d950a6020d 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/test-jest-helpers'] --- import kbnTestJestHelpersObj from './kbn_test_jest_helpers.devdocs.json'; diff --git a/api_docs/kbn_tooling_log.devdocs.json b/api_docs/kbn_tooling_log.devdocs.json index 063dd3e389106..6323eacf6604a 100644 --- a/api_docs/kbn_tooling_log.devdocs.json +++ b/api_docs/kbn_tooling_log.devdocs.json @@ -30,6 +30,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -43,6 +44,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -63,6 +65,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -84,6 +87,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -103,6 +107,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -118,6 +123,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -131,6 +137,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -145,6 +152,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -162,6 +170,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -175,6 +184,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -192,6 +202,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -205,6 +216,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -222,6 +234,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -235,6 +248,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -252,6 +266,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -265,6 +280,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -282,6 +298,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -295,6 +312,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -312,6 +330,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -325,6 +344,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -342,6 +362,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -355,6 +376,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -380,6 +402,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -403,6 +426,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -423,6 +447,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -450,6 +475,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -474,6 +500,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -489,6 +516,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -523,6 +551,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log_collecting_writer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -535,7 +564,8 @@ "string[]" ], "path": "packages/kbn-tooling-log/src/tooling_log_collecting_writer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/tooling-log", @@ -549,6 +579,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log_collecting_writer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -562,6 +593,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log_collecting_writer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -589,6 +621,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log_collecting_writer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -608,6 +641,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log_collecting_writer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -642,6 +676,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log_text_writer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -654,7 +689,8 @@ "{ name: \"error\" | \"warning\" | \"success\" | \"info\" | \"debug\" | \"silent\" | \"verbose\"; flags: { error: boolean; warning: boolean; success: boolean; info: boolean; debug: boolean; silent: boolean; verbose: boolean; }; }" ], "path": "packages/kbn-tooling-log/src/tooling_log_text_writer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/tooling-log", @@ -667,7 +703,8 @@ "{ write(msg: string): void; }" ], "path": "packages/kbn-tooling-log/src/tooling_log_text_writer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/tooling-log", @@ -681,6 +718,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log_text_writer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -700,6 +738,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log_text_writer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -725,6 +764,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log_text_writer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -744,6 +784,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log_text_writer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -769,6 +810,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log_text_writer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -782,6 +824,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log_text_writer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -796,6 +839,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log_text_writer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -816,6 +860,7 @@ ], "path": "packages/kbn-tooling-log/src/tooling_log_text_writer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -838,6 +883,7 @@ ], "path": "packages/kbn-tooling-log/src/log_levels.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -851,6 +897,7 @@ ], "path": "packages/kbn-tooling-log/src/log_levels.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -869,6 +916,7 @@ ], "path": "packages/kbn-tooling-log/src/log_levels.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -882,6 +930,7 @@ ], "path": "packages/kbn-tooling-log/src/log_levels.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -900,6 +949,7 @@ ], "path": "packages/kbn-tooling-log/src/log_levels.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -913,6 +963,7 @@ ], "path": "packages/kbn-tooling-log/src/log_levels.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -924,6 +975,7 @@ "description": [], "path": "packages/kbn-tooling-log/src/log_levels.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -936,7 +988,8 @@ "\"error\" | \"warning\" | \"success\" | \"info\" | \"debug\" | \"silent\" | \"verbose\" | undefined" ], "path": "packages/kbn-tooling-log/src/log_levels.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -957,6 +1010,7 @@ ], "path": "packages/kbn-tooling-log/src/message.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -971,7 +1025,8 @@ "\"error\" | \"warning\" | \"success\" | \"write\" | \"info\" | \"debug\" | \"verbose\"" ], "path": "packages/kbn-tooling-log/src/message.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/tooling-log", @@ -983,7 +1038,8 @@ "indentation intended when message written to a text log" ], "path": "packages/kbn-tooling-log/src/message.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/tooling-log", @@ -998,7 +1054,8 @@ "string | undefined" ], "path": "packages/kbn-tooling-log/src/message.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/tooling-log", @@ -1013,7 +1070,8 @@ "any[]" ], "path": "packages/kbn-tooling-log/src/message.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1027,6 +1085,7 @@ "description": [], "path": "packages/kbn-tooling-log/src/tooling_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -1041,7 +1100,8 @@ "string | undefined" ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/tooling-log", @@ -1063,7 +1123,8 @@ " | undefined" ], "path": "packages/kbn-tooling-log/src/tooling_log.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1077,6 +1138,7 @@ "description": [], "path": "packages/kbn-tooling-log/src/tooling_log_text_writer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -1091,7 +1153,8 @@ "\"error\" | \"warning\" | \"success\" | \"info\" | \"debug\" | \"silent\" | \"verbose\"" ], "path": "packages/kbn-tooling-log/src/tooling_log_text_writer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/tooling-log", @@ -1106,7 +1169,8 @@ "string[] | undefined" ], "path": "packages/kbn-tooling-log/src/tooling_log_text_writer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/tooling-log", @@ -1121,7 +1185,8 @@ "{ write(s: string): void; }" ], "path": "packages/kbn-tooling-log/src/tooling_log_text_writer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1137,6 +1202,7 @@ ], "path": "packages/kbn-tooling-log/src/writer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -1160,6 +1226,7 @@ ], "path": "packages/kbn-tooling-log/src/writer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/tooling-log", @@ -1181,6 +1248,7 @@ ], "path": "packages/kbn-tooling-log/src/writer.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1204,6 +1272,7 @@ ], "path": "packages/kbn-tooling-log/src/log_levels.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1218,6 +1287,7 @@ ], "path": "packages/kbn-tooling-log/src/log_levels.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1232,6 +1302,7 @@ ], "path": "packages/kbn-tooling-log/src/log_levels.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1246,6 +1317,7 @@ ], "path": "packages/kbn-tooling-log/src/log_levels.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_tooling_log.mdx b/api_docs/kbn_tooling_log.mdx index 9bdd26028c73e..34eb25abce626 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/tooling-log'] --- import kbnToolingLogObj from './kbn_tooling_log.devdocs.json'; diff --git a/api_docs/kbn_type_summarizer.devdocs.json b/api_docs/kbn_type_summarizer.devdocs.json index 73abf92ebd70e..40ba2fe956d4d 100644 --- a/api_docs/kbn_type_summarizer.devdocs.json +++ b/api_docs/kbn_type_summarizer.devdocs.json @@ -37,6 +37,7 @@ ], "path": "packages/kbn-type-summarizer/src/summarize_package.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer", @@ -50,6 +51,7 @@ ], "path": "packages/kbn-type-summarizer/src/summarize_package.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -70,6 +72,7 @@ ], "path": "packages/kbn-type-summarizer/src/summarize_package.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -89,6 +92,7 @@ ], "path": "packages/kbn-type-summarizer/src/summarize_package.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer", @@ -100,7 +104,8 @@ "\nAbsolute path to the directory containing the .d.ts files produced by `tsc`. Maps to the\n`declarationDir` compiler option." ], "path": "packages/kbn-type-summarizer/src/summarize_package.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/type-summarizer", @@ -112,7 +117,8 @@ "\nAbsolute path to the tsconfig.json file for the project we are summarizing" ], "path": "packages/kbn-type-summarizer/src/summarize_package.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/type-summarizer", @@ -124,7 +130,8 @@ "\nArray of absolute paths to the .d.ts files which will be summarized. Each file in this\narray will cause an output .d.ts summary file to be created containing all the AST nodes\nwhich are exported or referenced by those exports." ], "path": "packages/kbn-type-summarizer/src/summarize_package.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/type-summarizer", @@ -136,7 +143,8 @@ "\nRepo-relative path to the package source, for example `packages/kbn-type-summarizer-core` for\nthis package. This is used to provide the correct `sourceRoot` path in the resulting source\nmap files." ], "path": "packages/kbn-type-summarizer/src/summarize_package.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_type_summarizer.mdx b/api_docs/kbn_type_summarizer.mdx index e9438cc5e26fe..36d4e190e9df9 100644 --- a/api_docs/kbn_type_summarizer.mdx +++ b/api_docs/kbn_type_summarizer.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-type-summarizer title: "@kbn/type-summarizer" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/type-summarizer plugin -date: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/type-summarizer'] --- import kbnTypeSummarizerObj from './kbn_type_summarizer.devdocs.json'; diff --git a/api_docs/kbn_type_summarizer_core.devdocs.json b/api_docs/kbn_type_summarizer_core.devdocs.json index fefe4368c5d9c..26dee36a72a01 100644 --- a/api_docs/kbn_type_summarizer_core.devdocs.json +++ b/api_docs/kbn_type_summarizer_core.devdocs.json @@ -31,6 +31,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/cli_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -40,7 +41,8 @@ "label": "exitCode", "description": [], "path": "packages/kbn-type-summarizer-core/src/cli_error.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/type-summarizer-core", @@ -50,7 +52,8 @@ "label": "showHelp", "description": [], "path": "packages/kbn-type-summarizer-core/src/cli_error.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/type-summarizer-core", @@ -64,6 +67,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/cli_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -77,6 +81,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/cli_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -97,6 +102,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/cli_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -133,6 +139,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -146,6 +153,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -159,6 +167,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -178,6 +187,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -191,6 +201,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -205,6 +216,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -222,6 +234,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -235,6 +248,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -255,6 +269,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -269,6 +284,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -286,6 +302,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -299,6 +316,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -313,6 +331,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -330,6 +349,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -343,6 +363,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -357,6 +378,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -374,6 +396,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -387,6 +410,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -401,6 +425,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -418,6 +443,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -431,6 +457,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -445,6 +472,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -462,6 +490,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -475,6 +504,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -489,6 +519,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -506,6 +537,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -519,6 +551,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -533,6 +566,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -554,6 +588,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -567,6 +602,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -585,6 +621,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -599,6 +636,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -620,6 +658,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -633,6 +672,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -651,6 +691,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -665,6 +706,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -694,6 +736,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/set_map.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -709,6 +752,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/set_map.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -722,6 +766,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/set_map.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -741,6 +786,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/set_map.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -754,6 +800,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/set_map.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -768,6 +815,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/set_map.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -787,6 +835,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/set_map.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -800,6 +849,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/set_map.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -819,6 +869,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/set_map.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -853,6 +904,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/test_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -865,7 +917,8 @@ "string[]" ], "path": "packages/kbn-type-summarizer-core/src/log/test_log.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/type-summarizer-core", @@ -879,6 +932,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/test_log.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -903,6 +957,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/ts_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -916,6 +971,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/ts_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -930,6 +986,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/ts_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -952,6 +1009,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/ts_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -965,6 +1023,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/ts_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -979,6 +1038,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/ts_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1001,6 +1061,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/ts_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1014,6 +1075,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/ts_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1034,6 +1096,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/ts_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1047,6 +1110,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/ts_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1069,6 +1133,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/ts_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1082,6 +1147,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/ts_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1102,6 +1168,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1115,6 +1182,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1135,6 +1203,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/json.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1148,6 +1217,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/json.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1162,6 +1232,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/json.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1182,6 +1253,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1195,6 +1267,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1215,6 +1288,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/fs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1228,6 +1302,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/fs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1242,6 +1317,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/fs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1262,6 +1338,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/fs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1275,6 +1352,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/fs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1289,6 +1367,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/fs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1308,6 +1387,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/cli_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1320,7 +1400,8 @@ "number | undefined" ], "path": "packages/kbn-type-summarizer-core/src/cli_error.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/type-summarizer-core", @@ -1333,7 +1414,8 @@ "boolean | undefined" ], "path": "packages/kbn-type-summarizer-core/src/cli_error.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1349,6 +1431,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1364,6 +1447,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1379,6 +1463,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1395,6 +1480,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1414,6 +1500,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1429,6 +1516,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1445,6 +1533,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1464,6 +1553,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1479,6 +1569,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1495,6 +1586,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1514,6 +1606,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1529,6 +1622,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1545,6 +1639,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1564,6 +1659,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1579,6 +1675,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1595,6 +1692,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1614,6 +1712,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1629,6 +1728,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1645,6 +1745,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1668,6 +1769,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1683,6 +1785,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1703,6 +1806,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1719,6 +1823,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1742,6 +1847,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1757,6 +1863,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1777,6 +1884,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1793,6 +1901,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/logger.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1812,6 +1921,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1825,6 +1935,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/type-summarizer-core", @@ -1838,6 +1949,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1863,6 +1975,7 @@ ], "path": "packages/kbn-type-summarizer-core/src/log/cli_log.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_type_summarizer_core.mdx b/api_docs/kbn_type_summarizer_core.mdx index c1bb4dfbcf4d2..8322a666bd9e7 100644 --- a/api_docs/kbn_type_summarizer_core.mdx +++ b/api_docs/kbn_type_summarizer_core.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-type-summarizer-core title: "@kbn/type-summarizer-core" image: https://source.unsplash.com/400x175/?github description: API docs for the @kbn/type-summarizer-core plugin -date: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/type-summarizer-core'] --- import kbnTypeSummarizerCoreObj from './kbn_type_summarizer_core.devdocs.json'; diff --git a/api_docs/kbn_typed_react_router_config.devdocs.json b/api_docs/kbn_typed_react_router_config.devdocs.json index 3eede9aa54719..016fc28862436 100644 --- a/api_docs/kbn_typed_react_router_config.devdocs.json +++ b/api_docs/kbn_typed_react_router_config.devdocs.json @@ -39,6 +39,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/create_router.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -52,6 +53,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/create_router.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -86,6 +88,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/use_current_route.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -96,6 +99,7 @@ "description": [], "path": "packages/kbn-typed-react-router-config/src/use_current_route.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -123,7 +127,8 @@ ">" ], "path": "packages/kbn-typed-react-router-config/src/use_current_route.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/typed-react-router-config", @@ -136,7 +141,8 @@ "React.ReactElement>" ], "path": "packages/kbn-typed-react-router-config/src/use_current_route.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/typed-react-router-config", @@ -149,7 +155,8 @@ "React.ReactElement>" ], "path": "packages/kbn-typed-react-router-config/src/use_current_route.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -169,6 +176,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/outlet.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -185,6 +193,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/outlet.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -195,6 +204,7 @@ "description": [], "path": "packages/kbn-typed-react-router-config/src/outlet.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -207,7 +217,8 @@ "React.ReactElement>" ], "path": "packages/kbn-typed-react-router-config/src/outlet.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/typed-react-router-config", @@ -220,7 +231,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "packages/kbn-typed-react-router-config/src/outlet.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -256,6 +268,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/use_router.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -266,6 +279,7 @@ "description": [], "path": "packages/kbn-typed-react-router-config/src/use_router.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -293,7 +307,8 @@ ">" ], "path": "packages/kbn-typed-react-router-config/src/use_router.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/typed-react-router-config", @@ -306,7 +321,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "packages/kbn-typed-react-router-config/src/use_router.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -326,6 +342,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/route_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -360,6 +377,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/router_provider.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -370,6 +388,7 @@ "description": [], "path": "packages/kbn-typed-react-router-config/src/router_provider.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -397,7 +416,8 @@ ">" ], "path": "packages/kbn-typed-react-router-config/src/router_provider.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/typed-react-router-config", @@ -411,7 +431,8 @@ "" ], "path": "packages/kbn-typed-react-router-config/src/router_provider.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/typed-react-router-config", @@ -424,7 +445,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "packages/kbn-typed-react-router-config/src/router_provider.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -460,6 +482,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/use_current_route.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -492,6 +515,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/use_match_routes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -505,6 +529,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/use_match_routes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -531,6 +556,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/use_params.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -544,6 +570,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/use_params.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -562,6 +589,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/use_route_path.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -594,6 +622,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/use_router.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -609,6 +638,7 @@ "description": [], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -621,7 +651,8 @@ "{}" ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/typed-react-router-config", @@ -634,7 +665,8 @@ "{}" ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -648,6 +680,7 @@ "description": [], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -660,7 +693,8 @@ "React.ReactElement" ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/typed-react-router-config", @@ -680,7 +714,8 @@ " | undefined" ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/typed-react-router-config", @@ -694,7 +729,8 @@ " | undefined" ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/typed-react-router-config", @@ -707,7 +743,8 @@ "Record> | undefined" ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/typed-react-router-config", @@ -720,7 +757,8 @@ "React.ReactElement | undefined" ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -744,6 +782,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -756,7 +795,8 @@ "TRoute" ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/typed-react-router-config", @@ -773,7 +813,8 @@ " : {}; }" ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -797,6 +838,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -846,6 +888,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -859,6 +902,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -874,6 +918,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -927,6 +972,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -941,6 +987,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1112,6 +1159,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -1125,6 +1173,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1140,6 +1189,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1311,6 +1361,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -1324,6 +1375,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1339,6 +1391,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1353,6 +1406,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1524,6 +1578,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -1537,6 +1592,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1551,6 +1607,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1566,6 +1623,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1737,6 +1795,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -1750,6 +1809,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1764,6 +1824,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1778,6 +1839,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1793,6 +1855,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1964,6 +2027,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -1977,6 +2041,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1992,6 +2057,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2006,6 +2072,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2047,6 +2114,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -2060,6 +2128,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2089,6 +2158,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2114,6 +2184,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -2133,6 +2204,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2158,6 +2230,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -2171,6 +2244,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2205,6 +2279,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/typed-react-router-config", @@ -2214,7 +2289,8 @@ "label": "path", "description": [], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2237,6 +2313,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2251,6 +2328,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2280,6 +2358,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2314,6 +2393,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2336,6 +2416,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2352,6 +2433,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2382,6 +2464,7 @@ ], "path": "packages/kbn-typed-react-router-config/src/types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_typed_react_router_config.mdx b/api_docs/kbn_typed_react_router_config.mdx index 4626ee5aa0bb6..7a592007512c2 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: 2022-09-05 +date: 2022-09-08 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_theme.devdocs.json b/api_docs/kbn_ui_theme.devdocs.json index 374a6b073386d..c378173a45f13 100644 --- a/api_docs/kbn_ui_theme.devdocs.json +++ b/api_docs/kbn_ui_theme.devdocs.json @@ -31,6 +31,7 @@ "description": [], "path": "packages/kbn-ui-theme/src/theme.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -42,6 +43,7 @@ "description": [], "path": "packages/kbn-ui-theme/src/theme.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -56,6 +58,7 @@ ], "path": "packages/kbn-ui-theme/src/theme.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -70,6 +73,7 @@ ], "path": "packages/kbn-ui-theme/src/theme.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -86,6 +90,7 @@ ], "path": "packages/kbn-ui-theme/src/theme.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -100,6 +105,7 @@ ], "path": "packages/kbn-ui-theme/src/theme.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -116,6 +122,7 @@ ], "path": "packages/kbn-ui-theme/src/theme.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/kbn_ui_theme.mdx b/api_docs/kbn_ui_theme.mdx index 6cb38b2bf38b2..cf0cc5cb05b93 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ui-theme'] --- import kbnUiThemeObj from './kbn_ui_theme.devdocs.json'; diff --git a/api_docs/kbn_user_profile_components.devdocs.json b/api_docs/kbn_user_profile_components.devdocs.json index fc1b71022bbd8..be1459464d7f5 100644 --- a/api_docs/kbn_user_profile_components.devdocs.json +++ b/api_docs/kbn_user_profile_components.devdocs.json @@ -41,6 +41,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_profile.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/user-profile-components", @@ -62,6 +63,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_profile.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -90,6 +92,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_avatar.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/user-profile-components", @@ -111,6 +114,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_avatar.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -139,6 +143,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_profiles_popover.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/user-profile-components", @@ -160,6 +165,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_profiles_popover.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -188,6 +194,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_profiles_selectable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/user-profile-components", @@ -209,6 +216,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_profiles_selectable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -228,6 +236,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_profile.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/user-profile-components", @@ -239,7 +248,8 @@ "\nUsername of the user." ], "path": "packages/kbn-user-profile-components/src/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/user-profile-components", @@ -254,7 +264,8 @@ "string | undefined" ], "path": "packages/kbn-user-profile-components/src/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/user-profile-components", @@ -269,7 +280,8 @@ "string | undefined" ], "path": "packages/kbn-user-profile-components/src/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -297,6 +309,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_avatar.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/user-profile-components", @@ -318,7 +331,8 @@ " | undefined" ], "path": "packages/kbn-user-profile-components/src/user_avatar.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/user-profile-components", @@ -340,7 +354,8 @@ " | undefined" ], "path": "packages/kbn-user-profile-components/src/user_avatar.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -366,6 +381,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_profile.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/user-profile-components", @@ -377,7 +393,8 @@ "\nUnique ID for of the user profile." ], "path": "packages/kbn-user-profile-components/src/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/user-profile-components", @@ -389,7 +406,8 @@ "\nIndicates whether user profile is enabled or not." ], "path": "packages/kbn-user-profile-components/src/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/user-profile-components", @@ -410,7 +428,8 @@ } ], "path": "packages/kbn-user-profile-components/src/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/user-profile-components", @@ -425,7 +444,8 @@ "{ [P in keyof D]?: D[P] | undefined; }" ], "path": "packages/kbn-user-profile-components/src/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -441,6 +461,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_profile.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/user-profile-components", @@ -455,7 +476,8 @@ "string | undefined" ], "path": "packages/kbn-user-profile-components/src/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/user-profile-components", @@ -470,7 +492,8 @@ "string | undefined" ], "path": "packages/kbn-user-profile-components/src/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/user-profile-components", @@ -485,7 +508,8 @@ "string | undefined" ], "path": "packages/kbn-user-profile-components/src/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -512,6 +536,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_profiles_popover.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/user-profile-components", @@ -528,7 +553,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "packages/kbn-user-profile-components/src/user_profiles_popover.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/user-profile-components", @@ -551,7 +577,8 @@ } ], "path": "packages/kbn-user-profile-components/src/user_profiles_popover.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -579,6 +606,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_profiles_selectable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/user-profile-components", @@ -600,7 +628,8 @@ "[] | undefined" ], "path": "packages/kbn-user-profile-components/src/user_profiles_selectable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/user-profile-components", @@ -622,7 +651,8 @@ "[] | undefined" ], "path": "packages/kbn-user-profile-components/src/user_profiles_selectable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/user-profile-components", @@ -644,7 +674,8 @@ "[] | undefined" ], "path": "packages/kbn-user-profile-components/src/user_profiles_selectable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/user-profile-components", @@ -668,6 +699,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_profiles_selectable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/user-profile-components", @@ -690,6 +722,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_profiles_selectable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -709,6 +742,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_profiles_selectable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/user-profile-components", @@ -724,6 +758,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_profiles_selectable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -742,7 +777,8 @@ "boolean | undefined" ], "path": "packages/kbn-user-profile-components/src/user_profiles_selectable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/user-profile-components", @@ -757,7 +793,8 @@ "string | undefined" ], "path": "packages/kbn-user-profile-components/src/user_profiles_selectable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/user-profile-components", @@ -772,7 +809,8 @@ "string | undefined" ], "path": "packages/kbn-user-profile-components/src/user_profiles_selectable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/user-profile-components", @@ -788,6 +826,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_profiles_selectable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/user-profile-components", @@ -803,6 +842,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_profiles_selectable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -821,7 +861,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "packages/kbn-user-profile-components/src/user_profiles_selectable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -837,6 +878,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_profile.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/user-profile-components", @@ -848,7 +890,8 @@ "\nUsername of the user." ], "path": "packages/kbn-user-profile-components/src/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/user-profile-components", @@ -863,7 +906,8 @@ "string | undefined" ], "path": "packages/kbn-user-profile-components/src/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "@kbn/user-profile-components", @@ -878,7 +922,8 @@ "string | undefined" ], "path": "packages/kbn-user-profile-components/src/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -915,6 +960,7 @@ ], "path": "packages/kbn-user-profile-components/src/user_avatar.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_user_profile_components.mdx b/api_docs/kbn_user_profile_components.mdx index a784ca24e8c01..10bf9f95e7101 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_utility_types.devdocs.json index 4d22e77b8feba..1188303de0182 100644 --- a/api_docs/kbn_utility_types.devdocs.json +++ b/api_docs/kbn_utility_types.devdocs.json @@ -39,6 +39,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false }, @@ -69,6 +70,7 @@ ], "path": "packages/kbn-utility-types/src/serializable/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false }, @@ -81,6 +83,7 @@ "description": [], "path": "packages/kbn-utility-types/src/serializable/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/utility-types", @@ -100,7 +103,8 @@ } ], "path": "packages/kbn-utility-types/src/serializable/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -126,6 +130,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/utility-types", @@ -139,6 +144,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/utility-types", @@ -152,6 +158,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -187,6 +194,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false }, @@ -217,6 +225,7 @@ ], "path": "packages/kbn-utility-types/src/serializable/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false } @@ -240,6 +249,7 @@ ], "path": "node_modules/utility-types/dist/utility-types.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -258,6 +268,7 @@ ], "path": "node_modules/utility-types/dist/mapped-types.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -277,6 +288,7 @@ ], "path": "node_modules/utility-types/dist/mapped-types.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -293,6 +305,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -312,6 +325,7 @@ ], "path": "node_modules/utility-types/dist/utility-types.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -334,6 +348,7 @@ ], "path": "packages/kbn-utility-types/src/dot.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -366,6 +381,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -388,6 +404,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -406,6 +423,7 @@ ], "path": "packages/kbn-utility-types/src/dot.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -422,6 +440,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -452,6 +471,7 @@ ], "path": "packages/kbn-utility-types/src/serializable/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -468,6 +488,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -484,6 +505,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -500,6 +522,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -519,6 +542,7 @@ ], "path": "node_modules/utility-types/dist/mapped-types.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -535,6 +559,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -551,6 +576,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -575,6 +601,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -605,6 +632,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -629,6 +657,7 @@ ], "path": "packages/kbn-utility-types/src/serializable/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -645,6 +674,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -661,6 +691,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -685,6 +716,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -701,6 +733,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -717,6 +750,7 @@ ], "path": "packages/kbn-utility-types/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_utility_types.mdx b/api_docs/kbn_utility_types.mdx index 96a34a6fd9755..683fa55fa6a85 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_utility_types_jest.devdocs.json index 8e0411da3090a..7f01820f6e3bc 100644 --- a/api_docs/kbn_utility_types_jest.devdocs.json +++ b/api_docs/kbn_utility_types_jest.devdocs.json @@ -34,6 +34,7 @@ ], "path": "packages/kbn-utility-types-jest/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48,6 +49,7 @@ ], "path": "packages/kbn-utility-types-jest/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kbn_utility_types_jest.mdx b/api_docs/kbn_utility_types_jest.mdx index 6dd7435ed38e2..d5a46f16e6952 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: 2022-09-05 +date: 2022-09-08 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.devdocs.json b/api_docs/kbn_utils.devdocs.json index 9f4936d0c79cb..7ae7fb00b67b8 100644 --- a/api_docs/kbn_utils.devdocs.json +++ b/api_docs/kbn_utils.devdocs.json @@ -32,6 +32,7 @@ ], "path": "packages/kbn-utils/src/streams/concat_stream_providers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/utils", @@ -47,6 +48,7 @@ ], "path": "packages/kbn-utils/src/streams/concat_stream_providers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -64,6 +66,7 @@ ], "path": "packages/kbn-utils/src/streams/concat_stream_providers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -89,6 +92,7 @@ ], "path": "packages/kbn-utils/src/streams/concat_stream.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/utils", @@ -104,6 +108,7 @@ ], "path": "packages/kbn-utils/src/streams/concat_stream.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -123,6 +128,7 @@ ], "path": "packages/kbn-utils/src/streams/filter_stream.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/utils", @@ -136,6 +142,7 @@ ], "path": "packages/kbn-utils/src/streams/filter_stream.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -159,6 +166,7 @@ ], "path": "packages/kbn-utils/src/streams/intersperse_stream.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/utils", @@ -172,6 +180,7 @@ ], "path": "packages/kbn-utils/src/streams/intersperse_stream.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -195,6 +204,7 @@ ], "path": "packages/kbn-utils/src/streams/list_stream.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/utils", @@ -210,6 +220,7 @@ ], "path": "packages/kbn-utils/src/streams/list_stream.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -229,6 +240,7 @@ ], "path": "packages/kbn-utils/src/streams/map_stream.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/utils", @@ -242,6 +254,7 @@ ], "path": "packages/kbn-utils/src/streams/map_stream.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -264,6 +277,7 @@ ], "path": "packages/kbn-utils/src/streams/promise_from_streams.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/utils", @@ -281,6 +295,7 @@ ], "path": "packages/kbn-utils/src/streams/promise_from_streams.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -304,6 +319,7 @@ ], "path": "packages/kbn-utils/src/streams/reduce_stream.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/utils", @@ -317,6 +333,7 @@ ], "path": "packages/kbn-utils/src/streams/reduce_stream.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -333,6 +350,7 @@ ], "path": "packages/kbn-utils/src/streams/reduce_stream.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -352,6 +370,7 @@ ], "path": "packages/kbn-utils/src/streams/replace_stream.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/utils", @@ -365,6 +384,7 @@ ], "path": "packages/kbn-utils/src/streams/replace_stream.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -379,6 +399,7 @@ ], "path": "packages/kbn-utils/src/streams/replace_stream.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -402,6 +423,7 @@ ], "path": "packages/kbn-utils/src/streams/split_stream.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/utils", @@ -415,6 +437,7 @@ ], "path": "packages/kbn-utils/src/streams/split_stream.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -433,6 +456,7 @@ ], "path": "packages/kbn-utils/src/repo_root.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/utils", @@ -446,6 +470,7 @@ ], "path": "packages/kbn-utils/src/repo_root.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -464,6 +489,7 @@ ], "path": "packages/kbn-utils/src/package_json/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -484,6 +510,7 @@ ], "path": "packages/kbn-utils/src/path/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -495,6 +522,7 @@ "description": [], "path": "packages/kbn-utils/src/repo_root.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -506,6 +534,7 @@ "description": [], "path": "packages/kbn-utils/src/repo_root.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -522,6 +551,7 @@ ], "path": "packages/kbn-utils/src/package_json/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/kbn_utils.mdx b/api_docs/kbn_utils.mdx index 1d0476d4a53cf..be96bc7150be9 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/utils'] --- import kbnUtilsObj from './kbn_utils.devdocs.json'; diff --git a/api_docs/kbn_yarn_lock_validator.devdocs.json b/api_docs/kbn_yarn_lock_validator.devdocs.json index 3a3cc4dd5c699..91771e7709cd2 100644 --- a/api_docs/kbn_yarn_lock_validator.devdocs.json +++ b/api_docs/kbn_yarn_lock_validator.devdocs.json @@ -33,6 +33,7 @@ ], "path": "packages/kbn-yarn-lock-validator/src/yarn_lock.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -61,6 +62,7 @@ ], "path": "packages/kbn-yarn-lock-validator/src/validate_yarn_lock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/yarn-lock-validator", @@ -74,6 +76,7 @@ ], "path": "packages/kbn-yarn-lock-validator/src/validate_yarn_lock.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -94,6 +97,7 @@ ], "path": "packages/kbn-yarn-lock-validator/src/validate_yarn_lock.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -113,6 +117,7 @@ ], "path": "packages/kbn-yarn-lock-validator/src/yarn_lock.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "@kbn/yarn-lock-validator", @@ -127,7 +132,8 @@ "[key: string]: { version: string; resolved: string; integrity: string; dependencies?: { [key: string]: string; } | undefined; optionalDependencies?: { [key: string]: string; } | undefined; }" ], "path": "packages/kbn-yarn-lock-validator/src/yarn_lock.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kbn_yarn_lock_validator.mdx b/api_docs/kbn_yarn_lock_validator.mdx index 7f716cb7167a0..cf64f2eb0c977 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/yarn-lock-validator'] --- import kbnYarnLockValidatorObj from './kbn_yarn_lock_validator.devdocs.json'; diff --git a/api_docs/kibana_overview.devdocs.json b/api_docs/kibana_overview.devdocs.json index ff886a57cfe47..83eebc6dafa94 100644 --- a/api_docs/kibana_overview.devdocs.json +++ b/api_docs/kibana_overview.devdocs.json @@ -16,6 +16,7 @@ "description": [], "path": "src/plugins/kibana_overview/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -29,6 +30,7 @@ "description": [], "path": "src/plugins/kibana_overview/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true @@ -60,6 +62,7 @@ ], "path": "src/plugins/kibana_overview/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -74,6 +77,7 @@ ], "path": "src/plugins/kibana_overview/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -88,6 +92,7 @@ ], "path": "src/plugins/kibana_overview/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -102,6 +107,7 @@ ], "path": "src/plugins/kibana_overview/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/kibana_overview.mdx b/api_docs/kibana_overview.mdx index 50c292e38cce3..9a6d98afc5194 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: 2022-09-05 +date: 2022-09-08 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 50d19c7a6843d..d125ca647c266 100644 --- a/api_docs/kibana_react.devdocs.json +++ b/api_docs/kibana_react.devdocs.json @@ -37,6 +37,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -50,6 +51,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -70,6 +72,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -87,6 +90,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -102,6 +106,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -117,6 +122,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -148,6 +154,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -168,6 +175,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -189,6 +197,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -206,6 +215,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -216,7 +226,8 @@ "label": "filter", "description": [], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -232,6 +243,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -247,6 +259,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -262,6 +275,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -277,6 +291,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -292,6 +307,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -302,6 +318,7 @@ "description": [], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -311,7 +328,8 @@ "label": "queryText", "description": [], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -330,6 +348,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -345,6 +364,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -360,6 +380,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -375,6 +396,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -390,6 +412,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -405,6 +428,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -422,6 +446,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -436,6 +461,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -453,6 +479,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -470,6 +497,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -485,6 +513,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -500,6 +529,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -525,6 +555,7 @@ ], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -535,6 +566,7 @@ "description": [], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -547,7 +579,8 @@ "true" ], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -560,7 +593,8 @@ "false" ], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -573,7 +607,8 @@ "false" ], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -589,6 +624,7 @@ ], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -602,6 +638,7 @@ ], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -616,6 +653,7 @@ ], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -630,6 +668,7 @@ "description": [], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -644,6 +683,7 @@ ], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -657,6 +697,7 @@ ], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -674,6 +715,7 @@ ], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -700,6 +742,7 @@ ], "path": "src/plugins/kibana_react/public/code_editor/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -715,6 +758,7 @@ ], "path": "src/plugins/kibana_react/public/code_editor/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -737,6 +781,7 @@ ], "path": "src/plugins/kibana_react/public/code_editor/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -752,6 +797,7 @@ ], "path": "src/plugins/kibana_react/public/code_editor/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -786,6 +832,7 @@ ], "path": "src/plugins/kibana_react/public/context/context.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -799,6 +846,7 @@ ], "path": "src/plugins/kibana_react/public/context/context.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -832,6 +880,7 @@ ], "path": "src/plugins/kibana_react/public/notifications/create_notifications.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -853,6 +902,7 @@ ], "path": "src/plugins/kibana_react/public/notifications/create_notifications.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -886,6 +936,7 @@ ], "path": "src/plugins/kibana_react/public/overlays/create_react_overlays.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -907,6 +958,7 @@ ], "path": "src/plugins/kibana_react/public/overlays/create_react_overlays.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -935,6 +987,7 @@ ], "path": "src/plugins/kibana_react/public/page_template/no_data_page/no_data_card/elastic_agent_card.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -956,6 +1009,7 @@ ], "path": "src/plugins/kibana_react/public/page_template/no_data_page/no_data_card/elastic_agent_card.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -974,6 +1028,7 @@ ], "path": "src/plugins/kibana_react/public/context/context.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -987,7 +1042,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -1000,7 +1056,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1027,19 +1084,8 @@ ], "path": "src/plugins/kibana_react/public/page_template/page_template.tsx", "deprecated": true, + "trackAdoption": false, "references": [ - { - "plugin": "management", - "path": "src/plugins/management/public/components/management_app/management_app.tsx" - }, - { - "plugin": "management", - "path": "src/plugins/management/public/components/management_app/management_app.tsx" - }, - { - "plugin": "management", - "path": "src/plugins/management/public/components/management_app/management_app.tsx" - }, { "plugin": "spaces", "path": "x-pack/plugins/spaces/public/space_selector/space_selector.tsx" @@ -1083,18 +1129,6 @@ { "plugin": "osquery", "path": "x-pack/plugins/osquery/public/components/empty_state.tsx" - }, - { - "plugin": "home", - "path": "src/plugins/home/public/application/components/home.tsx" - }, - { - "plugin": "home", - "path": "src/plugins/home/public/application/components/home.tsx" - }, - { - "plugin": "home", - "path": "src/plugins/home/public/application/components/home.tsx" } ], "children": [ @@ -1118,6 +1152,7 @@ ], "path": "src/plugins/kibana_react/public/page_template/page_template.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1140,6 +1175,7 @@ ], "path": "src/plugins/kibana_react/public/page_template/solution_nav/solution_nav_avatar.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -1155,6 +1191,7 @@ ], "path": "src/plugins/kibana_react/public/page_template/solution_nav/solution_nav_avatar.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1173,6 +1210,7 @@ ], "path": "src/plugins/kibana_react/public/theme/kibana_theme_provider.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -1186,6 +1224,7 @@ ], "path": "src/plugins/kibana_react/public/theme/kibana_theme_provider.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1206,6 +1245,7 @@ ], "path": "src/plugins/kibana_react/public/markdown/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -1219,6 +1259,7 @@ ], "path": "src/plugins/kibana_react/public/markdown/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1239,6 +1280,7 @@ ], "path": "src/plugins/kibana_react/public/markdown/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -1252,6 +1294,7 @@ ], "path": "src/plugins/kibana_react/public/markdown/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1272,6 +1315,7 @@ ], "path": "src/plugins/kibana_react/public/util/mount_point_portal.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -1285,6 +1329,7 @@ ], "path": "src/plugins/kibana_react/public/util/mount_point_portal.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1311,6 +1356,7 @@ ], "path": "src/plugins/kibana_react/public/page_template/no_data_page/no_data_card/no_data_card.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -1332,6 +1378,7 @@ ], "path": "src/plugins/kibana_react/public/page_template/no_data_page/no_data_card/no_data_card.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1358,6 +1405,7 @@ ], "path": "src/plugins/kibana_react/public/page_template/no_data_page/no_data_page.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -1379,6 +1427,7 @@ ], "path": "src/plugins/kibana_react/public/page_template/no_data_page/no_data_page.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1397,6 +1446,7 @@ ], "path": "src/plugins/kibana_react/public/overview_page/overview_page_actions/overview_page_actions.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -1410,6 +1460,7 @@ ], "path": "src/plugins/kibana_react/public/overview_page/overview_page_actions/overview_page_actions.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1428,6 +1479,7 @@ ], "path": "src/plugins/kibana_react/public/overview_page/overview_page_footer/overview_page_footer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -1441,6 +1493,7 @@ ], "path": "src/plugins/kibana_react/public/overview_page/overview_page_footer/overview_page_footer.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1463,6 +1516,7 @@ ], "path": "src/plugins/kibana_react/public/react_router_navigate/react_router_navigate.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -1479,6 +1533,7 @@ ], "path": "src/plugins/kibana_react/public/react_router_navigate/react_router_navigate.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1493,6 +1548,7 @@ ], "path": "src/plugins/kibana_react/public/react_router_navigate/react_router_navigate.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1507,6 +1563,7 @@ ], "path": "src/plugins/kibana_react/public/react_router_navigate/react_router_navigate.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1529,6 +1586,7 @@ ], "path": "src/plugins/kibana_react/public/react_router_navigate/react_router_navigate.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -1545,6 +1603,7 @@ ], "path": "src/plugins/kibana_react/public/react_router_navigate/react_router_navigate.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1559,6 +1618,7 @@ ], "path": "src/plugins/kibana_react/public/react_router_navigate/react_router_navigate.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1573,6 +1633,7 @@ ], "path": "src/plugins/kibana_react/public/react_router_navigate/react_router_navigate.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1601,6 +1662,7 @@ ], "path": "src/plugins/kibana_react/public/adapters/react_to_ui_component.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -1616,6 +1678,7 @@ ], "path": "src/plugins/kibana_react/public/adapters/react_to_ui_component.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1638,6 +1701,7 @@ ], "path": "src/plugins/kibana_react/public/app_links/redirect_app_link.tsx", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "esUiShared", @@ -1981,6 +2045,7 @@ ], "path": "src/plugins/kibana_react/public/app_links/redirect_app_link.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2003,6 +2068,7 @@ ], "path": "src/plugins/kibana_react/public/router/router.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -2016,6 +2082,7 @@ ], "path": "src/plugins/kibana_react/public/router/router.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2046,6 +2113,7 @@ ], "path": "src/plugins/kibana_react/public/util/to_mount_point.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -2061,6 +2129,7 @@ ], "path": "src/plugins/kibana_react/public/util/to_mount_point.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2081,6 +2150,7 @@ ], "path": "src/plugins/kibana_react/public/util/to_mount_point.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2107,6 +2177,7 @@ ], "path": "src/plugins/kibana_react/public/toolbar_button/toolbar_button.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -2128,6 +2199,7 @@ ], "path": "src/plugins/kibana_react/public/toolbar_button/toolbar_button.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2156,6 +2228,7 @@ ], "path": "src/plugins/kibana_react/public/adapters/ui_to_react_component.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -2176,6 +2249,7 @@ ], "path": "src/plugins/kibana_react/public/adapters/ui_to_react_component.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2190,6 +2264,7 @@ ], "path": "src/plugins/kibana_react/public/adapters/ui_to_react_component.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2216,6 +2291,7 @@ ], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -2237,6 +2313,7 @@ ], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2261,6 +2338,7 @@ ], "path": "src/plugins/kibana_react/public/use_execution_context/use_execution_context.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -2275,6 +2353,7 @@ ], "path": "src/plugins/kibana_react/public/use_execution_context/use_execution_context.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2289,6 +2368,7 @@ ], "path": "src/plugins/kibana_react/public/use_execution_context/use_execution_context.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2323,6 +2403,7 @@ ], "path": "src/plugins/kibana_react/public/context/context.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -2341,6 +2422,7 @@ ], "path": "src/plugins/kibana_react/public/ui_settings/use_ui_setting.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -2354,6 +2436,7 @@ ], "path": "src/plugins/kibana_react/public/ui_settings/use_ui_setting.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2368,6 +2451,7 @@ ], "path": "src/plugins/kibana_react/public/ui_settings/use_ui_setting.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2388,6 +2472,7 @@ ], "path": "src/plugins/kibana_react/public/ui_settings/use_ui_setting.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -2401,6 +2486,7 @@ ], "path": "src/plugins/kibana_react/public/ui_settings/use_ui_setting.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2415,6 +2501,7 @@ ], "path": "src/plugins/kibana_react/public/ui_settings/use_ui_setting.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2441,6 +2528,7 @@ ], "path": "src/plugins/kibana_react/public/context/context.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -2454,6 +2542,7 @@ ], "path": "src/plugins/kibana_react/public/context/context.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2476,6 +2565,7 @@ ], "path": "src/plugins/kibana_react/public/theme/wrap_with_theme.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -2489,6 +2579,7 @@ ], "path": "src/plugins/kibana_react/public/theme/wrap_with_theme.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2506,6 +2597,7 @@ ], "path": "src/plugins/kibana_react/public/theme/wrap_with_theme.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2523,6 +2615,7 @@ "description": [], "path": "src/plugins/kibana_react/public/exit_full_screen_button/exit_full_screen_button.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -2536,6 +2629,7 @@ ], "path": "src/plugins/kibana_react/public/exit_full_screen_button/exit_full_screen_button.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2550,7 +2644,8 @@ "ChromeStart" ], "path": "src/plugins/kibana_react/public/exit_full_screen_button/exit_full_screen_button.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -2568,7 +2663,8 @@ "boolean | undefined" ], "path": "src/plugins/kibana_react/public/exit_full_screen_button/exit_full_screen_button.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2592,6 +2688,7 @@ ], "path": "src/plugins/kibana_react/public/context/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -2611,7 +2708,8 @@ "" ], "path": "src/plugins/kibana_react/public/context/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -2625,6 +2723,7 @@ ], "path": "src/plugins/kibana_react/public/context/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2638,7 +2737,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -2651,7 +2751,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2675,6 +2776,7 @@ ], "path": "src/plugins/kibana_react/public/context/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2688,7 +2790,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2714,6 +2817,7 @@ ], "path": "src/plugins/kibana_react/public/context/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -2726,7 +2830,8 @@ "Services" ], "path": "src/plugins/kibana_react/public/context/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -2745,7 +2850,8 @@ } ], "path": "src/plugins/kibana_react/public/context/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -2764,7 +2870,8 @@ } ], "path": "src/plugins/kibana_react/public/context/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2778,6 +2885,7 @@ "description": [], "path": "src/plugins/kibana_react/public/notifications/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -2822,7 +2930,8 @@ ") => void; }" ], "path": "src/plugins/kibana_react/public/notifications/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2836,6 +2945,7 @@ "description": [], "path": "src/plugins/kibana_react/public/overlays/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -2852,6 +2962,7 @@ ], "path": "src/plugins/kibana_react/public/overlays/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -2865,6 +2976,7 @@ ], "path": "src/plugins/kibana_react/public/overlays/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2880,6 +2992,7 @@ ], "path": "src/plugins/kibana_react/public/overlays/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2900,6 +3013,7 @@ ], "path": "src/plugins/kibana_react/public/overlays/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -2913,6 +3027,7 @@ ], "path": "src/plugins/kibana_react/public/overlays/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2928,6 +3043,7 @@ ], "path": "src/plugins/kibana_react/public/overlays/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2956,6 +3072,7 @@ ], "path": "src/plugins/kibana_react/public/page_template/no_data_page/no_data_page.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -2967,7 +3084,8 @@ "\nSingle name for the current solution, used to auto-generate the title, logo, description, and button label" ], "path": "src/plugins/kibana_react/public/page_template/no_data_page/no_data_page.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -2982,7 +3100,8 @@ "string | undefined" ], "path": "src/plugins/kibana_react/public/page_template/no_data_page/no_data_page.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -2994,7 +3113,8 @@ "\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 + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3009,7 +3129,8 @@ "string | undefined" ], "path": "src/plugins/kibana_react/public/page_template/no_data_page/no_data_page.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3032,7 +3153,8 @@ "; }" ], "path": "src/plugins/kibana_react/public/page_template/no_data_page/no_data_page.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3056,6 +3178,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -3069,6 +3192,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3084,6 +3208,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -3097,6 +3222,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3114,6 +3240,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -3127,6 +3254,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3140,7 +3268,8 @@ "label": "entityName", "description": [], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3150,7 +3279,8 @@ "label": "entityNamePlural", "description": [], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3164,6 +3294,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -3177,6 +3308,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3190,7 +3322,8 @@ "label": "listingLimit", "description": [], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3200,7 +3333,8 @@ "label": "initialFilter", "description": [], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3210,7 +3344,8 @@ "label": "initialPageSize", "description": [], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3225,7 +3360,8 @@ "JSX.Element | undefined" ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3239,7 +3375,8 @@ "[]" ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3249,7 +3386,8 @@ "label": "tableListTitle", "description": [], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3262,7 +3400,8 @@ "IToasts" ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3277,7 +3416,8 @@ "string | undefined" ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3289,7 +3429,8 @@ "\nIndicates which column should be used as the identifying cell in each row." ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3301,7 +3442,8 @@ "\nDescribes the content of the table. If not specified, the caption will be \"This table contains {itemCount} rows.\"" ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3315,7 +3457,8 @@ "[] | undefined" ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3328,7 +3471,8 @@ "ThemeServiceStart" ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3341,7 +3485,8 @@ "ApplicationStart" ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3365,6 +3510,7 @@ ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -3377,7 +3523,8 @@ "V[]" ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3387,7 +3534,8 @@ "label": "hasInitialFetchReturned", "description": [], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3400,7 +3548,8 @@ "boolean | null" ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3410,7 +3559,8 @@ "label": "isFetchingItems", "description": [], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3420,7 +3570,8 @@ "label": "isDeletingItems", "description": [], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3430,7 +3581,8 @@ "label": "showDeleteModal", "description": [], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3440,7 +3592,8 @@ "label": "showLimitError", "description": [], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3454,7 +3607,8 @@ " | undefined" ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3464,7 +3618,8 @@ "label": "filter", "description": [], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3477,7 +3632,8 @@ "string[]" ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3487,7 +3643,8 @@ "label": "totalItems", "description": [], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3500,7 +3657,8 @@ "Pagination" ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3515,7 +3673,8 @@ "; } | undefined" ], "path": "src/plugins/kibana_react/public/table_list_view/table_list_view.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3529,6 +3688,7 @@ "description": [], "path": "src/plugins/kibana_react/public/notifications/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -3541,7 +3701,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "src/plugins/kibana_react/public/notifications/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3554,7 +3715,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "src/plugins/kibana_react/public/notifications/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3567,7 +3729,8 @@ "\"warning\" | \"primary\" | \"success\" | \"danger\" | undefined" ], "path": "src/plugins/kibana_react/public/notifications/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3581,7 +3744,8 @@ " | undefined" ], "path": "src/plugins/kibana_react/public/notifications/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3594,7 +3758,8 @@ "number | undefined" ], "path": "src/plugins/kibana_react/public/notifications/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3607,7 +3772,8 @@ "(() => void) | undefined" ], "path": "src/plugins/kibana_react/public/notifications/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3621,6 +3787,7 @@ "description": [], "path": "src/plugins/kibana_react/public/util/to_mount_point.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -3636,7 +3803,8 @@ "> | undefined" ], "path": "src/plugins/kibana_react/public/util/to_mount_point.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3650,6 +3818,7 @@ "description": [], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -3659,7 +3828,8 @@ "label": "value", "description": [], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3672,7 +3842,8 @@ "string | number | undefined" ], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3692,7 +3863,8 @@ "[] | undefined" ], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3707,7 +3879,8 @@ ".IModelContentChangedEvent) => void) | undefined" ], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3723,6 +3896,7 @@ ], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -3737,6 +3911,7 @@ ], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3753,7 +3928,8 @@ "string | undefined" ], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3768,7 +3944,8 @@ "> | undefined" ], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3782,6 +3959,7 @@ "description": [], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -3791,7 +3969,8 @@ "label": "label", "description": [], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3804,7 +3983,8 @@ "string | undefined" ], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3817,7 +3997,8 @@ "string | undefined" ], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3831,7 +4012,8 @@ ".CompletionItemKind | undefined" ], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -3844,7 +4026,8 @@ "string | undefined" ], "path": "src/plugins/kibana_react/public/url_template_editor/url_template_editor.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3864,6 +4047,7 @@ ], "path": "src/plugins/kibana_react/public/code_editor/index.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3885,6 +4069,7 @@ ], "path": "src/plugins/kibana_react/public/page_template/no_data_page/no_data_card/elastic_agent_card.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3929,16 +4114,8 @@ ], "path": "src/plugins/kibana_react/public/page_template/page_template.tsx", "deprecated": true, - "references": [ - { - "plugin": "management", - "path": "src/plugins/management/public/components/management_app/management_app.tsx" - }, - { - "plugin": "management", - "path": "src/plugins/management/public/components/management_app/management_app.tsx" - } - ], + "trackAdoption": false, + "references": [], "initialIsOpen": false }, { @@ -3983,6 +4160,7 @@ ], "path": "src/plugins/kibana_react/public/context/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3997,6 +4175,7 @@ ], "path": "src/plugins/kibana_react/public/code_editor/languages/css/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4011,6 +4190,7 @@ ], "path": "src/plugins/kibana_react/public/code_editor/languages/markdown/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4025,6 +4205,7 @@ ], "path": "src/plugins/kibana_react/public/code_editor/languages/yaml/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4039,6 +4220,7 @@ ], "path": "src/plugins/kibana_react/public/code_editor/languages/handlebars/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4053,6 +4235,7 @@ ], "path": "src/plugins/kibana_react/public/code_editor/languages/hjson/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4067,6 +4250,7 @@ ], "path": "src/plugins/kibana_react/public/page_template/util/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4078,6 +4262,7 @@ "description": [], "path": "src/plugins/kibana_react/public/page_template/no_data_page/no_data_page.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4094,6 +4279,7 @@ ], "path": "src/plugins/kibana_react/public/page_template/no_data_page/no_data_page.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4116,6 +4302,7 @@ ], "path": "src/plugins/kibana_react/public/page_template/no_data_page/no_data_page.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4130,6 +4317,7 @@ ], "path": "src/plugins/kibana_react/public/toolbar_button/toolbar_button.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4146,6 +4334,7 @@ ], "path": "src/plugins/kibana_react/public/toolbar_button/toolbar_button.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4178,6 +4367,7 @@ ], "path": "src/plugins/kibana_react/public/toolbar_button/toolbar_button.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4192,6 +4382,7 @@ ], "path": "src/plugins/kibana_react/public/validated_range/validated_dual_range.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4206,6 +4397,7 @@ ], "path": "src/plugins/kibana_react/public/toolbar_button/toolbar_button.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -4238,6 +4430,7 @@ ], "path": "src/plugins/kibana_react/public/context/context.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4254,6 +4447,7 @@ ], "path": "src/plugins/kibana_react/public/exit_full_screen_button/exit_full_screen_button.tsx", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "dashboard", @@ -4283,6 +4477,7 @@ "description": [], "path": "src/plugins/kibana_react/public/page_template/util/constants.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -4292,7 +4487,8 @@ "label": "restrictWidth", "description": [], "path": "src/plugins/kibana_react/public/page_template/util/constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -4305,7 +4501,8 @@ "\"centeredBody\"" ], "path": "src/plugins/kibana_react/public/page_template/util/constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -4316,6 +4513,7 @@ "description": [], "path": "src/plugins/kibana_react/public/page_template/util/constants.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -4328,7 +4526,8 @@ "false" ], "path": "src/plugins/kibana_react/public/page_template/util/constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -4341,7 +4540,8 @@ "\"transparent\"" ], "path": "src/plugins/kibana_react/public/page_template/util/constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -4409,6 +4609,7 @@ ], "path": "src/plugins/kibana_react/common/eui_styled_components.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4428,7 +4629,8 @@ ">" ], "path": "node_modules/@types/styled-components/ts3.7/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -4444,7 +4646,8 @@ ">[]" ], "path": "node_modules/@types/styled-components/ts3.7/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4470,6 +4673,7 @@ ], "path": "src/plugins/kibana_react/common/eui_styled_components.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4493,6 +4697,7 @@ ], "path": "src/plugins/kibana_react/common/eui_styled_components.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4521,6 +4726,7 @@ ], "path": "src/plugins/kibana_react/common/eui_styled_components.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -4544,6 +4750,7 @@ ], "path": "src/plugins/kibana_react/common/eui_styled_components.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4576,6 +4783,7 @@ ], "path": "src/plugins/kibana_react/common/eui_styled_components.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -4594,6 +4802,7 @@ ], "path": "src/plugins/kibana_react/common/eui_styled_components.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4613,6 +4822,7 @@ ], "path": "src/plugins/kibana_react/common/eui_styled_components.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4636,6 +4846,7 @@ ], "path": "src/plugins/kibana_react/common/eui_styled_components.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4650,7 +4861,8 @@ "CSSKeyframes" ], "path": "node_modules/@types/styled-components/ts3.7/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -4664,7 +4876,8 @@ "[]" ], "path": "node_modules/@types/styled-components/ts3.7/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4697,6 +4910,7 @@ ], "path": "src/plugins/kibana_react/common/eui_styled_components.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4710,7 +4924,8 @@ "React.ComponentProps extends { theme?: T | undefined; } ? C : never" ], "path": "node_modules/@types/styled-components/ts3.7/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4726,6 +4941,7 @@ "description": [], "path": "src/plugins/kibana_react/common/eui_styled_components.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaReact", @@ -4738,7 +4954,8 @@ "{ euiBadgeGroupGutterTypes: { gutterExtraSmall: string; gutterSmall: string; }; euiButtonEmptyTypes: { primary: string; danger: string; disabled: string; ghost: string; text: string; success: string; warning: string; }; euiCallOutTypes: { primary: string; success: string; warning: string; danger: string; }; euiCardSpacing: string; euiCardBottomNodeHeight: string; euiCardSelectButtonBorders: { text: string; primary: string; success: string; danger: string; ghost: string; }; euiCardSelectButtonBackgrounds: { text: string; primary: string; success: string; danger: string; ghost: string; }; euiCardPaddingModifiers: { paddingNone: number; paddingSmall: string; paddingMedium: string; paddingLarge: string; }; euiCheckableCardPadding: string; euiCodeBlockPaddingModifiers: { paddingSmall: string; paddingMedium: string; paddingLarge: string; }; euiCollapsibleNavGroupLightBackgroundColor: string; euiCollapsibleNavGroupDarkBackgroundColor: string; euiCollapsibleNavGroupDarkHighContrastColor: string; euiColorPickerValueRange0: string; euiColorPickerValueRange1: string; euiColorPickerSaturationRange0: string; euiColorPickerSaturationRange1: string; euiColorPickerIndicatorSize: string; euiColorPickerWidth: string; euiColorPaletteDisplaySizes: { sizeExtraSmall: string; sizeSmall: string; sizeMedium: string; }; euiContextMenuWidth: string; euiControlBarBackground: string; euiControlBarText: string; euiControlBarBorderColor: string; euiControlBarInitialHeight: string; euiControlBarMaxHeight: string; euiControlBarHeights: { s: string; m: string; l: string; }; euiDataGridPrefix: string; euiDataGridStyles: string; euiZDataGrid: number; euiZHeaderBelowDataGrid: number; euiZDataGridCellPopover: number; euiDataGridColumnResizerWidth: string; euiDataGridPopoverMaxHeight: string; euiDataGridCellPaddingS: string; euiDataGridCellPaddingM: string; euiDataGridCellPaddingL: string; euiDataGridVerticalBorder: string; euiSuperDatePickerWidth: string; euiSuperDatePickerButtonWidth: string; euiDragAndDropSpacing: { s: string; m: string; l: string; }; euiEmptyPromptContentMaxWidth: string; gutterTypes: { gutterExtraSmall: string; gutterSmall: string; gutterMedium: string; gutterLarge: string; gutterExtraLarge: string; }; fractions: { fourths: { percentage: string; count: number; }; thirds: { percentage: string; count: number; }; halves: { percentage: string; count: number; }; single: { percentage: string; count: number; }; }; flyoutSizes: { small: { min: string; width: string; max: string; }; medium: { min: string; width: string; max: string; }; large: { min: string; width: string; max: string; }; }; euiFlyoutBorder: string; euiFlyoutPaddingModifiers: { paddingNone: number; paddingSmall: string; paddingMedium: string; paddingLarge: string; }; euiFilePickerTallHeight: string; euiRangeLevelColors: { primary: string; success: string; warning: string; danger: string; }; textareaResizing: { vertical: string; horizontal: string; both: string; none: string; }; euiHeaderLinksGutterSizes: { gutterXS: string; gutterS: string; gutterM: string; gutterL: string; }; euiKeyPadMenuSize: string; euiKeyPadMenuMarginSize: string; euiListGroupItemHoverBackground: string; euiListGroupItemHoverBackgroundGhost: string; euiListGroupGutterTypes: { gutterSmall: string; gutterMedium: string; }; euiListGroupItemColorTypes: { primary: string; text: string; subdued: string; ghost: string; }; euiListGroupItemSizeTypes: { xSmall: string; small: string; medium: string; large: string; }; euiMarkdownEditorMinHeight: string; euiResizableButtonTransitionSpeed: string; euiResizableButtonSize: string; euiSelectableListItemBorder: string; euiSelectableListItemPadding: string; euiSelectableTemplateSitewideTypes: { application: { color: string; 'font-weight': number; }; deployment: { color: string; 'font-weight': number; }; article: { color: string; 'font-weight': number; }; case: { color: string; 'font-weight': number; }; platform: { color: string; 'font-weight': number; }; }; euiSideNavEmphasizedBackgroundColor: string; euiSideNavRootTextcolor: string; euiSideNavBranchTextcolor: string; euiSideNavSelectedTextcolor: string; euiSideNavDisabledTextcolor: string; euiStepNumberSize: string; euiStepNumberSmallSize: string; euiStepNumberMargin: string; euiStepStatusColorsToFade: { warning: string; danger: string; disabled: string; incomplete: string; }; euiSuggestItemColors: { tint0: string; tint1: string; tint2: string; tint3: string; tint4: string; tint5: string; tint6: string; tint7: string; tint8: string; tint9: string; tint10: string; }; euiTableCellContentPadding: string; euiTableCellContentPaddingCompressed: string; euiTableCellCheckboxWidth: string; euiTableActionsAreaWidth: string; euiTableHoverColor: string; euiTableSelectedColor: string; euiTableHoverSelectedColor: string; euiTableActionsBorderColor: string; euiTableHoverClickableColor: string; euiTableFocusClickableColor: string; euiPopoverArrowSize: 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; }; euiCodeBlockBackgroundColor: string; euiCodeBlockColor: string; euiCodeBlockSelectedBackgroundColor: string; euiCodeBlockCommentColor: string; euiCodeBlockSelectorTagColor: string; euiCodeBlockStringColor: string; euiCodeBlockTagColor: string; euiCodeBlockNameColor: string; euiCodeBlockNumberColor: string; euiCodeBlockKeywordColor: string; euiCodeBlockFunctionTitleColor: string; euiCodeBlockTypeColor: string; euiCodeBlockAttributeColor: string; euiCodeBlockSymbolColor: string; euiCodeBlockParamsColor: string; euiCodeBlockMetaColor: string; euiCodeBlockTitleColor: string; euiCodeBlockSectionColor: string; euiCodeBlockAdditionColor: string; euiCodeBlockDeletionColor: string; euiCodeBlockSelectorClassColor: string; euiCodeBlockSelectorIdColor: 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; euiRangeTrackColor: string; euiRangeThumbRadius: string; euiRangeThumbHeight: string; euiRangeThumbWidth: string; euiRangeThumbBorderColor: string; euiRangeTrackWidth: string; euiRangeTrackHeight: string; euiRangeTrackBorderWidth: number; euiRangeTrackBorderColor: string; euiRangeTrackRadius: string; euiRangeDisabledOpacity: number; euiRangeHighlightHeight: 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; euiButtonMinWidth: 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; euiTooltipBackgroundColor: string; euiTooltipBorderColor: string; euiTooltipAnimations: { top: string; left: string; bottom: string; right: 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; euiDatePickerCalendarWidth: string; euiDatePickerPadding: string; euiDatePickerGap: string; euiDatePickerCalendarColumns: number; euiDatePickerButtonSize: string; euiDatePickerMinControlWidth: string; euiDatePickerMaxControlWidth: string; euiButtonDefaultTransparency: number; euiButtonFontWeight: number; euiRangeHighlightColor: string; euiRangeThumbBackgroundColor: string; euiRangeTrackCompressedHeight: string; euiRangeHighlightCompressedHeight: string; euiRangeHeight: string; euiRangeCompressedHeight: string; euiStepStatusColors: { default: string; complete: string; warning: string; danger: string; }; }" ], "path": "src/plugins/kibana_react/common/eui_styled_components.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaReact", @@ -4748,7 +4965,8 @@ "label": "darkMode", "description": [], "path": "src/plugins/kibana_react/common/eui_styled_components.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/kibana_react.mdx b/api_docs/kibana_react.mdx index c5af554c552b5..aa062aa0b26d6 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kibanaReact'] --- import kibanaReactObj from './kibana_react.devdocs.json'; diff --git a/api_docs/kibana_utils.devdocs.json b/api_docs/kibana_utils.devdocs.json index f130c3c11c0c7..ccc541c200eef 100644 --- a/api_docs/kibana_utils.devdocs.json +++ b/api_docs/kibana_utils.devdocs.json @@ -23,6 +23,7 @@ ], "path": "src/plugins/kibana_utils/common/abort_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -36,6 +37,7 @@ ], "path": "src/plugins/kibana_utils/common/abort_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -49,6 +51,7 @@ ], "path": "src/plugins/kibana_utils/common/abort_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -85,6 +88,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -98,6 +102,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -111,6 +116,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -125,6 +131,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -154,6 +161,7 @@ ], "path": "src/plugins/kibana_utils/common/defer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -167,6 +175,7 @@ ], "path": "src/plugins/kibana_utils/common/defer.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -180,7 +189,8 @@ "T" ], "path": "src/plugins/kibana_utils/common/defer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -196,6 +206,7 @@ ], "path": "src/plugins/kibana_utils/common/defer.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -209,7 +220,8 @@ "any" ], "path": "src/plugins/kibana_utils/common/defer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -224,7 +236,8 @@ "Promise" ], "path": "src/plugins/kibana_utils/common/defer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -257,6 +270,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -270,6 +284,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -283,6 +298,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -318,6 +334,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/hashed_item_store/hashed_item_store.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -330,7 +347,8 @@ "\"kbn.hashedItemsIndex.v1\"" ], "path": "src/plugins/kibana_utils/public/storage/hashed_item_store/hashed_item_store.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -346,6 +364,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/hashed_item_store/hashed_item_store.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -359,6 +378,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/hashed_item_store/hashed_item_store.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -376,6 +396,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/hashed_item_store/hashed_item_store.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -389,6 +410,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/hashed_item_store/hashed_item_store.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -403,6 +425,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/hashed_item_store/hashed_item_store.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -420,6 +443,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/hashed_item_store/hashed_item_store.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -433,6 +457,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/hashed_item_store/hashed_item_store.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -450,6 +475,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/hashed_item_store/hashed_item_store.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -463,6 +489,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/hashed_item_store/hashed_item_store.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -480,6 +507,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/hashed_item_store/hashed_item_store.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -514,6 +542,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -527,6 +556,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -540,6 +570,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -567,6 +598,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -580,6 +612,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -593,6 +626,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -612,6 +646,7 @@ ], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_dispatcher.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -625,6 +660,7 @@ ], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_dispatcher.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -638,6 +674,7 @@ ], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_dispatcher.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -655,6 +692,7 @@ ], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_dispatcher.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -668,6 +706,7 @@ ], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_dispatcher.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -685,6 +724,7 @@ ], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_dispatcher.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -700,6 +740,7 @@ ], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_dispatcher.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -715,6 +756,7 @@ ], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_dispatcher.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -730,6 +772,7 @@ ], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_dispatcher.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -743,6 +786,7 @@ ], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_dispatcher.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -760,6 +804,7 @@ "description": [], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_listener.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -773,6 +818,7 @@ ], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_listener.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -786,6 +832,7 @@ ], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_listener.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -803,6 +850,7 @@ ], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_listener.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -818,6 +866,7 @@ ], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_listener.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -833,6 +882,7 @@ ], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_listener.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -860,6 +910,7 @@ ], "path": "src/plugins/kibana_utils/public/resize_checker/resize_checker.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -873,6 +924,7 @@ ], "path": "src/plugins/kibana_utils/public/resize_checker/resize_checker.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -886,6 +938,7 @@ ], "path": "src/plugins/kibana_utils/public/resize_checker/resize_checker.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -897,6 +950,7 @@ "description": [], "path": "src/plugins/kibana_utils/public/resize_checker/resize_checker.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -909,7 +963,8 @@ "boolean | undefined" ], "path": "src/plugins/kibana_utils/public/resize_checker/resize_checker.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -928,6 +983,7 @@ ], "path": "src/plugins/kibana_utils/public/resize_checker/resize_checker.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -945,6 +1001,7 @@ ], "path": "src/plugins/kibana_utils/public/resize_checker/resize_checker.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -958,6 +1015,7 @@ ], "path": "src/plugins/kibana_utils/public/resize_checker/resize_checker.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -977,6 +1035,7 @@ ], "path": "src/plugins/kibana_utils/public/resize_checker/resize_checker.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1011,6 +1070,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1024,6 +1084,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1037,6 +1098,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1073,6 +1135,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1086,6 +1149,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1099,6 +1163,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1135,6 +1200,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1144,7 +1210,8 @@ "label": "savedObjectType", "description": [], "path": "src/plugins/kibana_utils/common/errors/errors.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -1157,7 +1224,8 @@ "string | undefined" ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -1171,6 +1239,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1184,6 +1253,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1198,6 +1268,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1212,6 +1283,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1226,6 +1298,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1261,6 +1334,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1280,7 +1354,8 @@ "" ], "path": "src/plugins/kibana_utils/public/storage/storage.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -1294,6 +1369,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1314,6 +1390,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1331,6 +1408,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1344,6 +1422,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1361,6 +1440,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1374,6 +1454,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1388,6 +1469,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1405,6 +1487,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1418,6 +1501,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1435,6 +1519,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/storage.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1457,6 +1542,7 @@ ], "path": "src/plugins/kibana_utils/common/abort_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1472,6 +1558,7 @@ ], "path": "src/plugins/kibana_utils/common/abort_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1491,6 +1578,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/utils/diff_object.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1504,6 +1592,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/utils/diff_object.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1518,6 +1607,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/utils/diff_object.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1536,6 +1626,7 @@ ], "path": "src/plugins/kibana_utils/common/calculate_object_hash.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1549,7 +1640,8 @@ "object" ], "path": "src/plugins/kibana_utils/common/calculate_object_hash.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1582,6 +1674,7 @@ ], "path": "src/plugins/kibana_utils/common/create_getter_setter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1595,6 +1688,7 @@ ], "path": "src/plugins/kibana_utils/common/create_getter_setter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1609,6 +1703,7 @@ ], "path": "src/plugins/kibana_utils/common/create_getter_setter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1637,6 +1732,7 @@ ], "path": "src/plugins/kibana_utils/public/history/history_observable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1653,6 +1749,7 @@ ], "path": "src/plugins/kibana_utils/public/history/history_observable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1674,6 +1771,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1688,6 +1786,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1717,6 +1816,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1727,6 +1827,7 @@ "description": [], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1736,7 +1837,8 @@ "label": "useHash", "description": [], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -1749,7 +1851,8 @@ "boolean | undefined" ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -1763,7 +1866,8 @@ " | undefined" ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -1777,6 +1881,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1790,6 +1895,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1807,6 +1913,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1820,6 +1927,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1860,6 +1968,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_tracker.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1870,6 +1979,7 @@ "description": [], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_tracker.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -1881,7 +1991,8 @@ "\nBase url of the current app. This will be used as a prefix for the\nnav link in the side bar" ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_tracker.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -1893,7 +2004,8 @@ "\nDefault sub url for this app. If the app is currently active or no sub url is already stored in session storage and the app hasn't been visited yet, the nav link will be set to this url." ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_tracker.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -1910,7 +2022,8 @@ "; }[]" ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_tracker.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -1922,7 +2035,8 @@ "\nKey used to store the current sub url in session storage. This key should only be used for one active url tracker at any given time." ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_tracker.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -1940,7 +2054,8 @@ ">" ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_tracker.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -1955,7 +2070,8 @@ "IToasts" ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_tracker.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -1971,7 +2087,8 @@ " | undefined" ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_tracker.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -1989,6 +2106,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_tracker.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2005,7 +2123,8 @@ "Storage | undefined" ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_tracker.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -2021,6 +2140,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_tracker.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2036,6 +2156,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_tracker.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2055,6 +2176,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_tracker.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2068,6 +2190,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_tracker.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2097,6 +2220,7 @@ ], "path": "src/plugins/kibana_utils/public/history/history_observable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2113,6 +2237,7 @@ ], "path": "src/plugins/kibana_utils/public/history/history_observable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2129,6 +2254,7 @@ ], "path": "src/plugins/kibana_utils/public/history/history_observable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2155,6 +2281,7 @@ ], "path": "src/plugins/kibana_utils/public/history/history_observable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2171,6 +2298,7 @@ ], "path": "src/plugins/kibana_utils/public/history/history_observable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2198,6 +2326,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_session_storage_state_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2213,6 +2342,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_session_storage_state_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2259,6 +2389,7 @@ ], "path": "src/plugins/kibana_utils/public/core/create_start_service_getter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2281,6 +2412,7 @@ ], "path": "src/plugins/kibana_utils/public/core/create_start_service_getter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2311,6 +2443,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2326,6 +2459,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2354,6 +2488,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2369,6 +2504,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2385,6 +2521,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2421,6 +2558,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2436,6 +2574,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2452,6 +2591,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2468,6 +2608,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2491,6 +2632,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2559,6 +2701,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container_react_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -2575,6 +2718,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/state_hash/state_hash.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2588,6 +2732,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/state_hash/state_hash.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2602,6 +2747,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/state_hash/state_hash.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2623,6 +2769,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/url_tracker.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2636,6 +2783,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/url_tracker.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2650,6 +2798,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/url_tracker.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2676,6 +2825,7 @@ ], "path": "src/plugins/kibana_utils/common/defer.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -2692,6 +2842,7 @@ ], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_dispatcher.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2705,6 +2856,7 @@ ], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_dispatcher.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2723,6 +2875,7 @@ ], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_dispatcher.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2736,6 +2889,7 @@ ], "path": "src/plugins/kibana_utils/public/render_complete/render_complete_dispatcher.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2754,6 +2908,7 @@ ], "path": "src/plugins/kibana_utils/common/field_wildcard.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2767,6 +2922,7 @@ ], "path": "src/plugins/kibana_utils/common/field_wildcard.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2781,6 +2937,7 @@ ], "path": "src/plugins/kibana_utils/common/field_wildcard.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2799,6 +2956,7 @@ ], "path": "src/plugins/kibana_utils/common/field_wildcard.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2812,6 +2970,7 @@ ], "path": "src/plugins/kibana_utils/common/field_wildcard.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2826,6 +2985,7 @@ ], "path": "src/plugins/kibana_utils/common/field_wildcard.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2848,6 +3008,7 @@ ], "path": "src/plugins/kibana_utils/public/history/get_query_params.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2862,6 +3023,7 @@ ], "path": "src/plugins/kibana_utils/public/history/get_query_params.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2882,6 +3044,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2895,6 +3058,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2909,6 +3073,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2920,6 +3085,7 @@ "description": [], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2929,7 +3095,8 @@ "label": "getFromHashQuery", "description": [], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_storage.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2951,6 +3118,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2964,6 +3132,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2978,6 +3147,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2989,6 +3159,7 @@ "description": [], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -2998,7 +3169,8 @@ "label": "getFromHashQuery", "description": [], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_storage.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -3020,6 +3192,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/hash_unhash_url.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3033,7 +3206,8 @@ "{ [x: string]: any; }" ], "path": "src/plugins/kibana_utils/public/state_management/url/hash_unhash_url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -3046,7 +3220,8 @@ "IUrlQueryMapperOptions" ], "path": "src/plugins/kibana_utils/public/state_management/url/hash_unhash_url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3063,6 +3238,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/hash_unhash_url.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3073,7 +3249,8 @@ "label": "url", "description": [], "path": "src/plugins/kibana_utils/public/state_management/url/hash_unhash_url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3090,6 +3267,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/state_hash/state_hash.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -3103,6 +3281,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/state_hash/state_hash.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3123,6 +3302,7 @@ ], "path": "src/plugins/kibana_utils/common/of.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -3138,6 +3318,7 @@ ], "path": "src/plugins/kibana_utils/common/of.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3156,6 +3337,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/state_hash/state_hash.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -3169,6 +3351,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/state_hash/state_hash.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3215,6 +3398,7 @@ ], "path": "src/plugins/kibana_utils/public/history/redirect_when_missing.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -3225,6 +3409,7 @@ "description": [], "path": "src/plugins/kibana_utils/public/history/redirect_when_missing.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -3238,7 +3423,8 @@ "" ], "path": "src/plugins/kibana_utils/public/history/redirect_when_missing.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -3254,6 +3440,7 @@ ], "path": "src/plugins/kibana_utils/public/history/redirect_when_missing.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3264,7 +3451,8 @@ "label": "appId", "description": [], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -3278,7 +3466,8 @@ " | undefined" ], "path": "node_modules/@types/kbn__core-application-browser/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3293,7 +3482,8 @@ "IBasePath" ], "path": "src/plugins/kibana_utils/public/history/redirect_when_missing.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -3308,7 +3498,8 @@ "string | Mapping" ], "path": "src/plugins/kibana_utils/public/history/redirect_when_missing.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -3323,7 +3514,8 @@ "IToasts" ], "path": "src/plugins/kibana_utils/public/history/redirect_when_missing.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -3347,6 +3539,7 @@ ], "path": "src/plugins/kibana_utils/public/history/redirect_when_missing.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -3366,6 +3559,7 @@ ], "path": "src/plugins/kibana_utils/public/history/redirect_when_missing.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3382,7 +3576,8 @@ "ThemeServiceStart" ], "path": "src/plugins/kibana_utils/public/history/redirect_when_missing.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -3404,6 +3599,7 @@ ], "path": "src/plugins/kibana_utils/public/history/remove_query_param.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -3418,6 +3614,7 @@ ], "path": "src/plugins/kibana_utils/public/history/remove_query_param.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3432,6 +3629,7 @@ ], "path": "src/plugins/kibana_utils/public/history/remove_query_param.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3446,6 +3644,7 @@ ], "path": "src/plugins/kibana_utils/public/history/remove_query_param.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3468,6 +3667,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/format.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -3481,6 +3681,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/format.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3499,6 +3700,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/format.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3521,6 +3723,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/format.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -3534,6 +3737,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/format.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3552,6 +3756,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/format.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3570,6 +3775,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/state_hash/state_hash.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -3583,6 +3789,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/state_hash/state_hash.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3603,6 +3810,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -3616,6 +3824,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3630,6 +3839,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3641,6 +3851,7 @@ "description": [], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -3650,7 +3861,8 @@ "label": "useHash", "description": [], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_storage.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -3663,7 +3875,8 @@ "boolean | undefined" ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_storage.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3679,6 +3892,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/kbn_url_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3719,6 +3933,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -3741,6 +3956,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3781,6 +3997,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -3805,6 +4022,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3825,6 +4043,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/hash_unhash_url.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3838,7 +4057,8 @@ "{ [x: string]: any; }" ], "path": "src/plugins/kibana_utils/public/state_management/url/hash_unhash_url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -3851,7 +4071,8 @@ "IUrlQueryMapperOptions" ], "path": "src/plugins/kibana_utils/public/state_management/url/hash_unhash_url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3868,6 +4089,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/hash_unhash_url.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3878,7 +4100,8 @@ "label": "url", "description": [], "path": "src/plugins/kibana_utils/public/state_management/url/hash_unhash_url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3921,6 +4144,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container_react_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -3936,6 +4160,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container_react_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3960,6 +4185,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container_react_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3983,6 +4209,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container_react_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4021,6 +4248,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container_react_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4036,6 +4264,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container_react_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4060,6 +4289,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4073,6 +4303,7 @@ ], "path": "src/plugins/kibana_utils/public/state_management/url/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4102,6 +4333,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4117,6 +4349,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "current state" @@ -4136,6 +4369,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4151,6 +4385,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4170,7 +4405,8 @@ "" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4196,6 +4432,7 @@ ], "path": "src/plugins/kibana_utils/public/ui/configurable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4210,7 +4447,8 @@ "Config" ], "path": "src/plugins/kibana_utils/public/ui/configurable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -4226,6 +4464,7 @@ ], "path": "src/plugins/kibana_utils/public/ui/configurable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4239,6 +4478,7 @@ ], "path": "src/plugins/kibana_utils/public/ui/configurable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4257,7 +4497,8 @@ "Context" ], "path": "src/plugins/kibana_utils/public/ui/configurable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4283,6 +4524,7 @@ ], "path": "src/plugins/kibana_utils/public/ui/configurable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4298,6 +4540,7 @@ ], "path": "src/plugins/kibana_utils/public/ui/configurable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4311,6 +4554,7 @@ ], "path": "src/plugins/kibana_utils/public/ui/configurable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4330,6 +4574,7 @@ ], "path": "src/plugins/kibana_utils/public/ui/configurable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4343,6 +4588,7 @@ ], "path": "src/plugins/kibana_utils/public/ui/configurable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4357,6 +4603,7 @@ ], "path": "src/plugins/kibana_utils/public/ui/configurable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4392,6 +4639,7 @@ ], "path": "src/plugins/kibana_utils/public/ui/configurable.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -4409,6 +4657,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4424,6 +4673,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4437,6 +4687,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4467,6 +4718,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4480,6 +4732,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4493,6 +4746,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4507,6 +4761,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4518,6 +4773,7 @@ "description": [], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4527,7 +4783,8 @@ "label": "replace", "description": [], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -4546,6 +4803,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4559,6 +4817,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4578,6 +4837,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4591,6 +4851,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4610,6 +4871,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4626,7 +4888,8 @@ "IKbnUrlControls" ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_kbn_url_state_storage.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4660,6 +4923,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4673,6 +4937,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4686,6 +4951,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4716,6 +4982,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_session_storage_state_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4729,6 +4996,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_session_storage_state_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4742,6 +5010,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_session_storage_state_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4756,6 +5025,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_session_storage_state_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4773,6 +5043,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_session_storage_state_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4786,6 +5057,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync_state_storage/create_session_storage_state_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4815,6 +5087,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4826,7 +5099,8 @@ "\nStorage key to use for syncing,\ne.g. storageKey '_a' should sync state to ?_a query param" ], "path": "src/plugins/kibana_utils/public/state_sync/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -4848,7 +5122,8 @@ "" ], "path": "src/plugins/kibana_utils/public/state_sync/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -4863,7 +5138,8 @@ "StateStorage" ], "path": "src/plugins/kibana_utils/public/state_sync/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4887,6 +5163,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4900,6 +5177,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4913,6 +5191,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4930,6 +5209,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4943,6 +5223,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4957,6 +5238,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4974,6 +5256,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -4987,6 +5270,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5004,6 +5288,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -5029,6 +5314,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -5042,6 +5328,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -5055,6 +5342,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5072,6 +5360,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -5085,6 +5374,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5099,6 +5389,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5116,6 +5407,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -5129,6 +5421,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5146,6 +5439,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -5171,6 +5465,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -5186,6 +5481,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -5203,6 +5499,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -5228,6 +5525,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -5237,7 +5535,8 @@ "label": "statusCode", "description": [], "path": "src/plugins/kibana_utils/common/errors/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -5247,7 +5546,8 @@ "label": "message", "description": [], "path": "src/plugins/kibana_utils/common/errors/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -5260,7 +5560,8 @@ "T | undefined" ], "path": "src/plugins/kibana_utils/common/errors/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5294,6 +5595,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -5307,6 +5609,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5324,6 +5627,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -5337,7 +5641,8 @@ "State" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -5351,7 +5656,8 @@ "" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -5375,6 +5681,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -5395,6 +5702,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5414,6 +5722,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -5428,6 +5737,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5453,6 +5763,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -5473,6 +5784,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5490,6 +5802,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -5503,6 +5816,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5540,6 +5854,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -5556,7 +5871,8 @@ "[P]; }" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -5585,7 +5901,8 @@ "[P]; }" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5609,6 +5926,7 @@ ], "path": "src/plugins/kibana_utils/common/ui/ui_component.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -5624,6 +5942,7 @@ ], "path": "src/plugins/kibana_utils/common/ui/ui_component.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -5639,6 +5958,7 @@ ], "path": "src/plugins/kibana_utils/common/ui/ui_component.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5655,6 +5975,7 @@ ], "path": "src/plugins/kibana_utils/common/ui/ui_component.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5674,6 +5995,7 @@ ], "path": "src/plugins/kibana_utils/common/ui/ui_component.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -5697,6 +6019,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5713,6 +6036,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -5726,7 +6050,8 @@ "Result" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -5739,7 +6064,8 @@ "Result" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5766,6 +6092,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -5780,6 +6107,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -5793,7 +6121,8 @@ "State" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -5814,6 +6143,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -5827,7 +6157,8 @@ "T" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5852,6 +6183,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -5865,7 +6197,8 @@ "State" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5890,6 +6223,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -5903,7 +6237,8 @@ "State" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5920,6 +6255,7 @@ ], "path": "src/plugins/kibana_utils/common/create_getter_setter.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -5938,6 +6274,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -5951,7 +6288,8 @@ "State" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5990,6 +6328,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6005,7 +6344,8 @@ ") => void; }" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6030,6 +6370,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6043,7 +6384,8 @@ "State" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6080,6 +6422,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6103,6 +6446,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6116,7 +6460,8 @@ "Args" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6137,6 +6482,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6150,7 +6496,8 @@ "State" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6171,6 +6518,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6184,7 +6532,8 @@ "State" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -6198,7 +6547,8 @@ "" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6215,6 +6565,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6228,7 +6579,8 @@ "Args" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6245,6 +6597,7 @@ ], "path": "src/plugins/kibana_utils/common/create_getter_setter.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6258,7 +6611,8 @@ "T" ], "path": "src/plugins/kibana_utils/common/create_getter_setter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6283,6 +6637,7 @@ ], "path": "src/plugins/kibana_utils/public/core/create_start_service_getter.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -6299,6 +6654,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -6315,6 +6671,7 @@ ], "path": "src/plugins/kibana_utils/public/state_sync/state_sync.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -6341,6 +6698,7 @@ ], "path": "src/plugins/kibana_utils/common/ui/ui_component.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -6367,6 +6725,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -6389,6 +6748,7 @@ ], "path": "src/plugins/kibana_utils/public/storage/hashed_item_store/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6400,6 +6760,7 @@ "description": [], "path": "src/plugins/kibana_utils/common/url/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -6417,6 +6778,7 @@ ], "path": "src/plugins/kibana_utils/common/url/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6431,7 +6793,8 @@ "" ], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -6445,6 +6808,7 @@ ], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6455,7 +6819,8 @@ "label": "val", "description": [], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -6468,7 +6833,8 @@ "boolean | undefined" ], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -6480,7 +6846,8 @@ "label": "pctEncodeSpaces", "description": [], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -6496,6 +6863,7 @@ ], "path": "src/plugins/kibana_utils/common/url/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6506,7 +6874,8 @@ "label": "val", "description": [], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -6516,7 +6885,8 @@ "label": "pctEncodeSpaces", "description": [], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -6532,6 +6902,7 @@ ], "path": "src/plugins/kibana_utils/common/url/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6542,7 +6913,8 @@ "label": "params", "description": [], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -6552,7 +6924,8 @@ "label": "key", "description": [], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -6565,7 +6938,8 @@ "string | undefined" ], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -6582,6 +6956,7 @@ "description": [], "path": "src/plugins/kibana_utils/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -6597,6 +6972,7 @@ ], "path": "src/plugins/kibana_utils/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -6612,6 +6988,7 @@ ], "path": "src/plugins/kibana_utils/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6645,6 +7022,7 @@ ], "path": "src/plugins/kibana_utils/common/abort_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -6658,6 +7036,7 @@ ], "path": "src/plugins/kibana_utils/common/abort_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -6671,6 +7050,7 @@ ], "path": "src/plugins/kibana_utils/common/abort_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6705,6 +7085,7 @@ ], "path": "src/plugins/kibana_utils/server/report_server_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -6717,7 +7098,8 @@ "Record | undefined" ], "path": "src/plugins/kibana_utils/server/report_server_error.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -6731,6 +7113,7 @@ ], "path": "src/plugins/kibana_utils/server/report_server_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -6744,6 +7127,7 @@ ], "path": "src/plugins/kibana_utils/server/report_server_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6758,6 +7142,7 @@ ], "path": "src/plugins/kibana_utils/server/report_server_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6772,6 +7157,7 @@ ], "path": "src/plugins/kibana_utils/server/report_server_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -6796,6 +7182,7 @@ ], "path": "src/plugins/kibana_utils/common/abort_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -6811,6 +7198,7 @@ ], "path": "src/plugins/kibana_utils/common/abort_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6845,6 +7233,7 @@ ], "path": "src/plugins/kibana_utils/common/create_getter_setter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -6858,6 +7247,7 @@ ], "path": "src/plugins/kibana_utils/common/create_getter_setter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6872,6 +7262,7 @@ ], "path": "src/plugins/kibana_utils/common/create_getter_setter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6890,6 +7281,7 @@ ], "path": "src/plugins/kibana_utils/common/field_wildcard.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -6903,6 +7295,7 @@ ], "path": "src/plugins/kibana_utils/common/field_wildcard.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6917,6 +7310,7 @@ ], "path": "src/plugins/kibana_utils/common/field_wildcard.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6935,6 +7329,7 @@ ], "path": "src/plugins/kibana_utils/common/field_wildcard.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -6948,6 +7343,7 @@ ], "path": "src/plugins/kibana_utils/common/field_wildcard.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6962,6 +7358,7 @@ ], "path": "src/plugins/kibana_utils/common/field_wildcard.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6989,6 +7386,7 @@ ], "path": "src/plugins/kibana_utils/server/report_server_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7004,6 +7402,7 @@ ], "path": "src/plugins/kibana_utils/server/report_server_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7055,6 +7454,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/merge_migration_function_map.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7074,6 +7474,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/merge_migration_function_map.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7094,6 +7495,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/merge_migration_function_map.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7126,6 +7528,7 @@ ], "path": "src/plugins/kibana_utils/server/report_server_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7141,6 +7544,7 @@ ], "path": "src/plugins/kibana_utils/server/report_server_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7161,6 +7565,7 @@ ], "path": "src/plugins/kibana_utils/server/report_server_error.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7183,6 +7588,7 @@ ], "path": "src/plugins/kibana_utils/common/create_getter_setter.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -7199,6 +7605,7 @@ ], "path": "src/plugins/kibana_utils/common/create_getter_setter.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7212,7 +7619,8 @@ "T" ], "path": "src/plugins/kibana_utils/common/create_getter_setter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7228,6 +7636,7 @@ "description": [], "path": "src/plugins/kibana_utils/common/url/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7245,6 +7654,7 @@ ], "path": "src/plugins/kibana_utils/common/url/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7259,7 +7669,8 @@ "" ], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -7273,6 +7684,7 @@ ], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7283,7 +7695,8 @@ "label": "val", "description": [], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -7296,7 +7709,8 @@ "boolean | undefined" ], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -7308,7 +7722,8 @@ "label": "pctEncodeSpaces", "description": [], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -7324,6 +7739,7 @@ ], "path": "src/plugins/kibana_utils/common/url/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7334,7 +7750,8 @@ "label": "val", "description": [], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -7344,7 +7761,8 @@ "label": "pctEncodeSpaces", "description": [], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -7360,6 +7778,7 @@ ], "path": "src/plugins/kibana_utils/common/url/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7370,7 +7789,8 @@ "label": "params", "description": [], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -7380,7 +7800,8 @@ "label": "key", "description": [], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -7393,7 +7814,8 @@ "string | undefined" ], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -7425,6 +7847,7 @@ ], "path": "src/plugins/kibana_utils/common/abort_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7438,6 +7861,7 @@ ], "path": "src/plugins/kibana_utils/common/abort_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7451,6 +7875,7 @@ ], "path": "src/plugins/kibana_utils/common/abort_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7487,6 +7912,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7500,6 +7926,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7513,6 +7940,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7527,6 +7955,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7556,6 +7985,7 @@ ], "path": "src/plugins/kibana_utils/common/defer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7569,6 +7999,7 @@ ], "path": "src/plugins/kibana_utils/common/defer.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7582,7 +8013,8 @@ "T" ], "path": "src/plugins/kibana_utils/common/defer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -7598,6 +8030,7 @@ ], "path": "src/plugins/kibana_utils/common/defer.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7611,7 +8044,8 @@ "any" ], "path": "src/plugins/kibana_utils/common/defer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -7626,7 +8060,8 @@ "Promise" ], "path": "src/plugins/kibana_utils/common/defer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7659,6 +8094,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7672,6 +8108,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7685,6 +8122,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7721,6 +8159,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7734,6 +8173,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7747,6 +8187,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7774,6 +8215,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7787,6 +8229,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7800,6 +8243,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7836,6 +8280,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7849,6 +8294,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7862,6 +8308,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7898,6 +8345,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7911,6 +8359,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7924,6 +8373,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7960,6 +8410,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -7969,7 +8420,8 @@ "label": "savedObjectType", "description": [], "path": "src/plugins/kibana_utils/common/errors/errors.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -7982,7 +8434,8 @@ "string | undefined" ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -7996,6 +8449,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -8009,6 +8463,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8023,6 +8478,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -8037,6 +8493,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -8051,6 +8508,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -8075,6 +8533,7 @@ ], "path": "src/plugins/kibana_utils/common/abort_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -8090,6 +8549,7 @@ ], "path": "src/plugins/kibana_utils/common/abort_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8108,6 +8568,7 @@ ], "path": "src/plugins/kibana_utils/common/calculate_object_hash.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -8121,7 +8582,8 @@ "object" ], "path": "src/plugins/kibana_utils/common/calculate_object_hash.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8154,6 +8616,7 @@ ], "path": "src/plugins/kibana_utils/common/create_getter_setter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -8167,6 +8630,7 @@ ], "path": "src/plugins/kibana_utils/common/create_getter_setter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8181,6 +8645,7 @@ ], "path": "src/plugins/kibana_utils/common/create_getter_setter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8209,6 +8674,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -8224,6 +8690,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8252,6 +8719,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -8267,6 +8735,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8283,6 +8752,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8319,6 +8789,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -8334,6 +8805,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8350,6 +8822,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8366,6 +8839,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8389,6 +8863,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -8457,6 +8932,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container_react_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -8481,6 +8957,7 @@ ], "path": "src/plugins/kibana_utils/common/defer.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -8499,6 +8976,7 @@ ], "path": "src/plugins/kibana_utils/common/distinct_until_changed_with_initial_value.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -8512,6 +8990,7 @@ ], "path": "src/plugins/kibana_utils/common/distinct_until_changed_with_initial_value.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8526,6 +9005,7 @@ ], "path": "src/plugins/kibana_utils/common/distinct_until_changed_with_initial_value.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -8544,6 +9024,7 @@ ], "path": "src/plugins/kibana_utils/common/field_wildcard.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -8557,6 +9038,7 @@ ], "path": "src/plugins/kibana_utils/common/field_wildcard.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8571,6 +9053,7 @@ ], "path": "src/plugins/kibana_utils/common/field_wildcard.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8589,6 +9072,7 @@ ], "path": "src/plugins/kibana_utils/common/field_wildcard.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -8602,6 +9086,7 @@ ], "path": "src/plugins/kibana_utils/common/field_wildcard.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8616,6 +9101,7 @@ ], "path": "src/plugins/kibana_utils/common/field_wildcard.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8665,6 +9151,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/merge_migration_function_map.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -8684,6 +9171,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/merge_migration_function_map.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8704,6 +9192,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/merge_migration_function_map.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8740,6 +9229,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/migrate_to_latest.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -8759,6 +9249,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/migrate_to_latest.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8782,6 +9273,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/migrate_to_latest.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8802,6 +9294,7 @@ ], "path": "src/plugins/kibana_utils/common/now.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -8820,6 +9313,7 @@ ], "path": "src/plugins/kibana_utils/common/of.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -8835,6 +9329,7 @@ ], "path": "src/plugins/kibana_utils/common/of.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8879,6 +9374,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container_react_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -8894,6 +9390,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container_react_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8918,6 +9415,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container_react_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8941,6 +9439,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container_react_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8979,6 +9478,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container_react_helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -8994,6 +9494,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container_react_helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9025,6 +9526,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9040,6 +9542,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "current state" @@ -9059,6 +9562,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9074,6 +9578,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9093,7 +9598,8 @@ "" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9109,6 +9615,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9124,6 +9631,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9137,6 +9645,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/create_state_container.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9164,6 +9673,7 @@ ], "path": "src/plugins/kibana_utils/common/errors/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9173,7 +9683,8 @@ "label": "statusCode", "description": [], "path": "src/plugins/kibana_utils/common/errors/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -9183,7 +9694,8 @@ "label": "message", "description": [], "path": "src/plugins/kibana_utils/common/errors/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -9196,7 +9708,8 @@ "T | undefined" ], "path": "src/plugins/kibana_utils/common/errors/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9224,6 +9737,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9239,6 +9753,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9254,6 +9769,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9270,6 +9786,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9293,6 +9810,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9308,6 +9826,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9325,6 +9844,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9348,6 +9868,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9363,6 +9884,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9397,7 +9919,8 @@ } ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9423,6 +9946,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9438,6 +9962,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9453,6 +9978,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9467,6 +9993,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9490,6 +10017,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9505,6 +10033,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9522,6 +10051,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9545,6 +10075,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9560,6 +10091,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9589,6 +10121,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9611,6 +10144,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9639,6 +10173,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -9674,6 +10209,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9687,6 +10223,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -9704,6 +10241,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -9717,7 +10255,8 @@ "State" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -9731,7 +10270,8 @@ "" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -9755,6 +10295,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9775,6 +10316,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9794,6 +10336,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9808,6 +10351,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9833,6 +10377,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9853,6 +10398,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9870,6 +10416,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9883,6 +10430,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9920,6 +10468,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -9936,7 +10485,8 @@ "[P]; }" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -9965,7 +10515,8 @@ "[P]; }" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9989,6 +10540,7 @@ ], "path": "src/plugins/kibana_utils/common/ui/ui_component.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -10004,6 +10556,7 @@ ], "path": "src/plugins/kibana_utils/common/ui/ui_component.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -10019,6 +10572,7 @@ ], "path": "src/plugins/kibana_utils/common/ui/ui_component.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -10035,6 +10589,7 @@ ], "path": "src/plugins/kibana_utils/common/ui/ui_component.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -10054,6 +10609,7 @@ ], "path": "src/plugins/kibana_utils/common/ui/ui_component.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -10081,6 +10637,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -10090,7 +10647,8 @@ "label": "version", "description": [], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -10103,7 +10661,8 @@ "S" ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10125,6 +10684,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10141,6 +10701,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10154,7 +10715,8 @@ "Result" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -10167,7 +10729,8 @@ "Result" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10194,6 +10757,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10208,6 +10772,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10221,7 +10786,8 @@ "State" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -10242,6 +10808,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10255,7 +10822,8 @@ "T" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10280,6 +10848,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10293,7 +10862,8 @@ "State" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10318,6 +10888,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10331,7 +10902,8 @@ "State" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10348,6 +10920,7 @@ ], "path": "src/plugins/kibana_utils/common/create_getter_setter.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -10371,6 +10944,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -10389,6 +10963,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10402,7 +10977,8 @@ "State" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10441,6 +11017,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10456,7 +11033,8 @@ ") => void; }" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10473,6 +11051,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10486,7 +11065,8 @@ "FromVersion" ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10513,6 +11093,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10547,6 +11128,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10566,6 +11148,7 @@ ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10579,7 +11162,8 @@ "SerializableRecord" ], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -10589,7 +11173,8 @@ "label": "version", "description": [], "path": "src/plugins/kibana_utils/common/persistable_state/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10614,6 +11199,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10627,7 +11213,8 @@ "State" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10664,6 +11251,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10687,6 +11275,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10700,7 +11289,8 @@ "Args" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10721,6 +11311,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10734,7 +11325,8 @@ "State" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10755,6 +11347,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10768,7 +11361,8 @@ "State" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -10782,7 +11376,8 @@ "" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10799,6 +11394,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10812,7 +11408,8 @@ "Args" ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10829,6 +11426,7 @@ ], "path": "src/plugins/kibana_utils/common/create_getter_setter.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10842,7 +11440,8 @@ "T" ], "path": "src/plugins/kibana_utils/common/create_getter_setter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10869,6 +11468,7 @@ ], "path": "src/plugins/kibana_utils/common/ui/ui_component.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -10895,6 +11495,7 @@ ], "path": "src/plugins/kibana_utils/common/state_containers/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -10908,6 +11509,7 @@ "description": [], "path": "src/plugins/kibana_utils/common/url/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kibanaUtils", @@ -10925,6 +11527,7 @@ ], "path": "src/plugins/kibana_utils/common/url/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10939,7 +11542,8 @@ "" ], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -10953,6 +11557,7 @@ ], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10963,7 +11568,8 @@ "label": "val", "description": [], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -10976,7 +11582,8 @@ "boolean | undefined" ], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -10988,7 +11595,8 @@ "label": "pctEncodeSpaces", "description": [], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -11004,6 +11612,7 @@ ], "path": "src/plugins/kibana_utils/common/url/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -11014,7 +11623,8 @@ "label": "val", "description": [], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -11024,7 +11634,8 @@ "label": "pctEncodeSpaces", "description": [], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -11040,6 +11651,7 @@ ], "path": "src/plugins/kibana_utils/common/url/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -11050,7 +11662,8 @@ "label": "params", "description": [], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -11060,7 +11673,8 @@ "label": "key", "description": [], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "kibanaUtils", @@ -11073,7 +11687,8 @@ "string | undefined" ], "path": "src/plugins/kibana_utils/common/url/encode_uri_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/kibana_utils.mdx b/api_docs/kibana_utils.mdx index 9aa4bf9f082f2..737bd6f780b0e 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'kibanaUtils'] --- import kibanaUtilsObj from './kibana_utils.devdocs.json'; diff --git a/api_docs/kubernetes_security.devdocs.json b/api_docs/kubernetes_security.devdocs.json index ed5443d3dffa4..53e8a6806be07 100644 --- a/api_docs/kubernetes_security.devdocs.json +++ b/api_docs/kubernetes_security.devdocs.json @@ -13,6 +13,7 @@ "description": [], "path": "x-pack/plugins/kubernetes_security/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kubernetesSecurity", @@ -28,6 +29,7 @@ ], "path": "x-pack/plugins/kubernetes_security/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "kubernetesSecurity", @@ -41,6 +43,7 @@ ], "path": "x-pack/plugins/kubernetes_security/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/kubernetes_security.mdx b/api_docs/kubernetes_security.mdx index 9c007e6bda4b4..0adc33bfc6e81 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: 2022-09-05 +date: 2022-09-08 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 cdb2181234b5f..10aed71c09d2e 100644 --- a/api_docs/lens.devdocs.json +++ b/api_docs/lens.devdocs.json @@ -66,6 +66,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -75,7 +76,8 @@ "label": "type", "description": [], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -85,7 +87,8 @@ "label": "deferEmbeddableLoad", "description": [], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -99,6 +102,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -112,6 +116,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -132,6 +137,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -169,6 +175,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -186,6 +193,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -201,6 +209,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -223,6 +232,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -246,6 +256,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -265,6 +276,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -290,6 +302,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -309,6 +322,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -334,6 +348,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -353,6 +368,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -372,6 +388,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -389,6 +406,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -402,6 +420,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -427,6 +446,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -446,6 +466,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -463,6 +484,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -482,6 +504,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -497,6 +520,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -512,6 +536,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -532,6 +557,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -547,6 +573,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -566,6 +593,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -583,6 +611,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -598,6 +627,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -617,6 +647,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "Local/panel-level array of filters for Lens embeddable" @@ -638,6 +669,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "Local/panel-level query for Lens embeddable" @@ -657,6 +689,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -672,6 +705,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -687,6 +721,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -705,6 +740,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -714,7 +750,8 @@ "label": "yLeft", "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -724,7 +761,8 @@ "label": "yRight", "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -738,6 +776,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -750,7 +789,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -763,7 +803,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -776,7 +817,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -790,7 +832,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -803,7 +846,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -816,7 +860,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -829,7 +874,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -842,7 +888,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -855,7 +902,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -868,7 +916,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -881,7 +930,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -894,7 +944,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -914,7 +965,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -928,6 +980,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -940,7 +993,8 @@ "\"custom\" | \"full\" | \"dataBounds\"" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -953,7 +1007,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -966,7 +1021,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -979,7 +1035,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1010,6 +1067,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/cardinality.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -1022,7 +1080,8 @@ "\"unique_count\"" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/cardinality.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1037,7 +1096,8 @@ " | undefined; } | undefined" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/cardinality.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1051,6 +1111,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -1071,7 +1132,8 @@ ")[]" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1084,7 +1146,8 @@ "\"bar\" | \"line\" | \"area\"" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1105,7 +1168,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1118,7 +1182,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1139,7 +1204,8 @@ ")[] | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1160,7 +1226,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1173,7 +1240,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1186,7 +1254,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1199,7 +1268,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1212,7 +1282,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1225,7 +1296,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1238,7 +1310,8 @@ "\"linear\" | \"time\" | \"ordinal\"" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1248,7 +1321,8 @@ "label": "isHistogram", "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1258,7 +1332,8 @@ "label": "isPercentage", "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1268,7 +1343,8 @@ "label": "isStacked", "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1278,7 +1354,8 @@ "label": "isHorizontal", "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1292,7 +1369,8 @@ "<{ [key: string]: unknown; }>" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1312,7 +1390,8 @@ "[] | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1332,7 +1411,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1348,6 +1428,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -1357,7 +1438,8 @@ "label": "datasourceId", "description": [], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1371,6 +1453,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1388,6 +1471,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -1401,6 +1485,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1420,6 +1505,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1437,6 +1523,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1468,6 +1555,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -1489,6 +1577,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1504,6 +1593,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1523,6 +1613,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -1536,6 +1627,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1553,6 +1645,7 @@ "description": [], "path": "x-pack/plugins/lens/public/visualizations/datatable/visualization.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -1566,7 +1659,8 @@ "[]" ], "path": "x-pack/plugins/lens/public/visualizations/datatable/visualization.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1576,7 +1670,8 @@ "label": "layerId", "description": [], "path": "x-pack/plugins/lens/public/visualizations/datatable/visualization.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1589,7 +1684,8 @@ "\"data\" | \"referenceLine\" | \"annotations\"" ], "path": "x-pack/plugins/lens/public/visualizations/datatable/visualization.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1603,7 +1699,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/datatable/visualization.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1616,7 +1713,8 @@ "\"auto\" | \"custom\" | \"single\" | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/datatable/visualization.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1629,7 +1727,8 @@ "\"auto\" | \"custom\" | \"single\" | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/datatable/visualization.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1642,7 +1741,8 @@ "number | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/datatable/visualization.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1655,7 +1755,8 @@ "number | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/datatable/visualization.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1669,7 +1770,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/datatable/visualization.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1700,6 +1802,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/date_histogram.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -1712,7 +1815,8 @@ "\"date_histogram\"" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/date_histogram.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1725,7 +1829,8 @@ "{ interval: string; ignoreTimeRange?: boolean | undefined; includeEmptyRows?: boolean | undefined; dropPartials?: boolean | undefined; }" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/date_histogram.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1750,6 +1855,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/column_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -1759,7 +1865,8 @@ "label": "sourceField", "description": [], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/column_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1784,6 +1891,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/filters/filters.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -1796,7 +1904,8 @@ "\"filters\"" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/filters/filters.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1811,7 +1920,8 @@ "[]; }" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/filters/filters.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1836,6 +1946,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/formula.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -1848,7 +1959,8 @@ "\"formula\"" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/formula.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1861,7 +1973,8 @@ "{ formula?: string | undefined; isFormulaBroken?: boolean | undefined; format?: { id: string; params?: { decimals: number; } | undefined; } | undefined; }" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/formula.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1875,6 +1988,7 @@ "description": [], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/formula_public_api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -1914,6 +2028,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/formula_public_api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -1929,6 +2044,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/formula_public_api.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1940,6 +2056,7 @@ "description": [], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/formula_public_api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -1949,7 +2066,8 @@ "label": "formula", "description": [], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/formula_public_api.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1962,7 +2080,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/formula_public_api.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -1975,7 +2094,8 @@ "{ id: string; params?: { decimals: number; } | undefined; } | undefined" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/formula_public_api.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1999,6 +2119,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/formula_public_api.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2021,6 +2142,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/formula_public_api.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2038,6 +2160,7 @@ "description": [], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/column_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -2050,7 +2173,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/column_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2063,7 +2187,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/column_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2077,6 +2202,7 @@ "description": [], "path": "x-pack/plugins/lens/public/indexpattern_datasource/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -2089,7 +2215,8 @@ "string[]" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2110,7 +2237,8 @@ "; }" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2120,7 +2248,8 @@ "label": "indexPatternId", "description": [], "path": "x-pack/plugins/lens/public/indexpattern_datasource/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2141,7 +2270,8 @@ "> | undefined" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2155,6 +2285,7 @@ "description": [], "path": "x-pack/plugins/lens/public/indexpattern_datasource/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -2175,7 +2306,8 @@ ", \"indexPatternId\">; }" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2206,6 +2338,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/last_value.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -2218,7 +2351,8 @@ "\"last_value\"" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/last_value.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2233,7 +2367,8 @@ " | undefined; }" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/last_value.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2247,6 +2382,7 @@ "description": [], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -2256,7 +2392,8 @@ "label": "layerId", "description": [], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2269,7 +2406,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2282,7 +2420,8 @@ "\"data\" | \"referenceLine\" | \"annotations\"" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2302,7 +2441,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2318,7 +2458,8 @@ "> | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2331,7 +2472,8 @@ "\"top\" | \"bottom\" | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2344,7 +2486,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2357,7 +2500,8 @@ "\"left\" | \"right\" | \"center\" | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2371,6 +2515,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -2382,7 +2527,8 @@ "\nFlag whether the legend should be shown. If there is just a single series, it will be hidden" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2397,7 +2543,8 @@ "\"top\" | \"bottom\" | \"left\" | \"right\"" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2412,7 +2559,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2427,7 +2575,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2442,7 +2591,8 @@ "\"left\" | \"right\" | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2457,7 +2607,8 @@ "\"top\" | \"bottom\" | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2472,7 +2623,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2487,7 +2639,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2502,7 +2655,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2524,7 +2678,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2538,6 +2693,7 @@ "description": [], "path": "x-pack/plugins/lens/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -2571,6 +2727,7 @@ ], "path": "x-pack/plugins/lens/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -2599,6 +2756,7 @@ ], "path": "x-pack/plugins/lens/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2622,6 +2780,7 @@ ], "path": "x-pack/plugins/lens/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -2635,6 +2794,7 @@ ], "path": "x-pack/plugins/lens/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2652,6 +2812,7 @@ "description": [], "path": "x-pack/plugins/lens/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -2684,7 +2845,8 @@ ">" ], "path": "x-pack/plugins/lens/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2705,7 +2867,8 @@ ", \"lensServices\">>" ], "path": "x-pack/plugins/lens/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2731,6 +2894,7 @@ ], "path": "x-pack/plugins/lens/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -2751,6 +2915,7 @@ ], "path": "x-pack/plugins/lens/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2762,6 +2927,7 @@ "description": [], "path": "x-pack/plugins/lens/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -2774,7 +2940,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2787,7 +2954,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2800,7 +2968,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2813,7 +2982,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2834,6 +3004,7 @@ ], "path": "x-pack/plugins/lens/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2853,6 +3024,7 @@ ], "path": "x-pack/plugins/lens/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2878,6 +3050,7 @@ ], "path": "x-pack/plugins/lens/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2904,6 +3077,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/math.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -2916,7 +3090,8 @@ "\"math\"" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/math.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2933,7 +3108,8 @@ " | undefined; }" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/formula/math.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2947,6 +3123,7 @@ "description": [], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -2960,7 +3137,8 @@ "FieldOnlyDataType" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2970,7 +3148,8 @@ "label": "isBucketed", "description": [], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2985,7 +3164,8 @@ "\"ordinal\" | \"interval\" | \"ratio\" | undefined" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -2998,7 +3178,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3029,6 +3210,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/percentile.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -3041,7 +3223,8 @@ "\"percentile\"" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/percentile.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3054,7 +3237,8 @@ "{ percentile: number; format?: { id: string; params?: { decimals: number; } | undefined; } | undefined; }" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/percentile.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3085,6 +3269,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/percentile_ranks.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -3097,7 +3282,8 @@ "\"percentile_rank\"" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/percentile_ranks.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3110,7 +3296,8 @@ "{ value: number; }" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/percentile_ranks.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3124,6 +3311,7 @@ "description": [], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -3136,7 +3324,8 @@ "\"pie\" | \"donut\" | \"treemap\" | \"mosaic\" | \"waffle\"" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3156,7 +3345,8 @@ "[]" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3170,7 +3360,8 @@ "<{ [key: string]: unknown; }> | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3201,6 +3392,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/ranges/ranges.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -3213,7 +3405,8 @@ "\"range\"" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/ranges/ranges.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3230,7 +3423,8 @@ "[]; format?: { id: string; params?: { decimals: number; } | undefined; } | undefined; includeEmptyRows?: boolean | undefined; parentFormat?: { id: string; params?: { id?: string | undefined; template?: string | undefined; replaceInfinity?: boolean | undefined; } | undefined; } | undefined; }" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/ranges/ranges.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3244,6 +3438,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -3256,7 +3451,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3269,7 +3465,8 @@ "string[]" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3282,7 +3479,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3302,7 +3500,8 @@ "[] | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3322,7 +3521,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3336,19 +3536,35 @@ "description": [], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", - "id": "def-public.SharedPieLayerState.groups", + "id": "def-public.SharedPieLayerState.primaryGroups", "type": "Array", "tags": [], - "label": "groups", + "label": "primaryGroups", "description": [], "signature": [ "string[]" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "lens", + "id": "def-public.SharedPieLayerState.secondaryGroups", + "type": "Array", + "tags": [], + "label": "secondaryGroups", + "description": [], + "signature": [ + "string[] | undefined" + ], + "path": "x-pack/plugins/lens/common/types.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3361,7 +3577,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3374,7 +3591,8 @@ "\"percent\" | \"hidden\" | \"value\"" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3387,7 +3605,8 @@ "\"default\" | \"hide\" | \"inside\"" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3400,7 +3619,8 @@ "\"default\" | \"hide\" | \"show\"" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3414,7 +3634,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3427,7 +3648,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3440,7 +3662,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3453,7 +3676,8 @@ "number | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3466,7 +3690,8 @@ "number | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3479,7 +3704,8 @@ "number | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3499,7 +3725,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3512,7 +3739,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3537,6 +3765,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/static_value.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -3549,7 +3778,8 @@ "\"static_value\"" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/static_value.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3564,7 +3794,8 @@ " | undefined; }" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/static_value.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3590,6 +3821,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -3610,7 +3842,8 @@ } ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3625,7 +3858,8 @@ "T | undefined" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3639,7 +3873,8 @@ "<{ [key: string]: unknown; }> | undefined" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3652,7 +3887,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3667,7 +3903,8 @@ "string[]" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3682,7 +3919,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3703,7 +3941,8 @@ "> | undefined" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3719,6 +3958,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -3730,7 +3970,8 @@ "\nFlag indicating whether the table will include more than one column.\nThis is not the case for example for a single metric aggregation" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3746,7 +3987,8 @@ "[]" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3758,7 +4000,8 @@ "\nThe layer this table will replace. This is only relevant if the visualization this suggestion is passed\nis currently active and has multiple layers configured. If this suggestion is applied, the table of this\nlayer will be replaced by the columns specified in this suggestion" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3773,7 +4016,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3788,7 +4032,8 @@ "\"layers\" | \"initial\" | \"unchanged\" | \"reduced\" | \"extended\" | \"reorder\"" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3819,6 +4064,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/terms/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -3831,7 +4077,8 @@ "\"terms\"" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/terms/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3854,7 +4101,8 @@ " | undefined; parentFormat?: { id: string; } | undefined; }" ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/terms/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3878,6 +4126,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -3889,7 +4138,8 @@ "Plugin ID, such as \"lnsXY\"" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -3907,6 +4157,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -3920,6 +4171,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3934,6 +4186,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -3949,6 +4202,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3968,6 +4222,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -3981,6 +4236,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3999,7 +4255,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -4015,7 +4272,8 @@ "[]" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -4031,6 +4289,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4044,6 +4303,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4063,6 +4323,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4076,6 +4337,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4090,6 +4352,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4111,6 +4374,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4124,6 +4388,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4143,6 +4408,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4156,6 +4422,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4175,6 +4442,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4188,6 +4456,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4202,6 +4471,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4221,6 +4491,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4234,6 +4505,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4248,6 +4520,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4275,6 +4548,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4288,6 +4562,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4302,6 +4577,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4322,6 +4598,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4336,6 +4613,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4367,6 +4645,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4380,6 +4659,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -4396,6 +4676,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4421,6 +4702,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4434,6 +4716,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4448,6 +4731,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4465,6 +4749,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4478,6 +4763,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4492,6 +4778,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4515,6 +4802,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4529,6 +4817,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4550,6 +4839,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4563,6 +4853,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4578,6 +4869,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4599,6 +4891,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4612,6 +4905,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4627,6 +4921,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4648,6 +4943,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4661,6 +4957,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4676,6 +4973,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4697,6 +4995,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4711,6 +5010,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4732,6 +5032,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4746,6 +5047,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4775,6 +5077,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4785,6 +5088,7 @@ "description": [], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4797,7 +5101,8 @@ "T" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -4810,7 +5115,8 @@ "DragDropOperation" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -4825,7 +5131,8 @@ "; }" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -4838,7 +5145,8 @@ "FramePublicAPI" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -4851,7 +5159,8 @@ "\"reorder\" | \"field_add\" | \"field_replace\" | \"move_compatible\" | \"replace_compatible\" | \"move_incompatible\" | \"replace_incompatible\" | \"replace_duplicate_compatible\" | \"duplicate_compatible\" | \"swap_compatible\" | \"replace_duplicate_incompatible\" | \"duplicate_incompatible\" | \"swap_incompatible\" | \"field_combine\" | \"combine_compatible\" | \"combine_incompatible\"" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -4865,7 +5174,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -4886,6 +5196,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4899,6 +5210,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4920,6 +5232,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4933,6 +5246,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4954,6 +5268,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -4967,6 +5282,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4982,6 +5298,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5003,6 +5320,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -5016,6 +5334,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5031,6 +5350,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5050,6 +5370,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -5060,6 +5381,7 @@ "description": [], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -5069,7 +5391,8 @@ "label": "columnId", "description": [], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -5079,7 +5402,8 @@ "label": "label", "description": [], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -5092,7 +5416,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -5105,7 +5430,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -5118,7 +5444,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -5139,6 +5466,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -5152,6 +5480,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5187,6 +5516,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -5207,6 +5537,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5242,6 +5573,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -5255,6 +5587,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5277,6 +5610,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5291,6 +5625,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -5307,6 +5642,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -5344,6 +5680,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -5357,6 +5694,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5379,6 +5717,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5395,6 +5734,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -5422,6 +5762,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -5435,6 +5776,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5457,6 +5799,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -5478,6 +5821,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -5491,6 +5835,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5505,6 +5850,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5528,6 +5874,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -5541,6 +5888,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5558,6 +5906,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5577,6 +5926,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -5590,6 +5940,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5604,6 +5955,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5618,6 +5970,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -5635,6 +5988,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -5648,6 +6002,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5662,6 +6017,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -5676,6 +6032,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5697,6 +6054,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5714,6 +6072,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -5727,6 +6086,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5756,6 +6116,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -5767,7 +6128,8 @@ "\nThe score of a suggestion should indicate how valuable the suggestion is. It is used\nto rank multiple suggestions of multiple visualizations. The number should be between 0 and 1" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -5782,7 +6144,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -5794,7 +6157,8 @@ "\nDescriptive title of the suggestion. Should be as short as possible. This title is shown if\nthe suggestion is advertised to the user and will also show either the `previewExpression` or\nthe `previewIcon`" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -5809,7 +6173,8 @@ "T" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -5824,7 +6189,8 @@ "string | React.ComponentType<{}>" ], "path": "x-pack/plugins/lens/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5838,6 +6204,7 @@ "description": [], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -5847,7 +6214,8 @@ "label": "layerId", "description": [], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -5860,7 +6228,8 @@ "\"annotations\"" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -5880,7 +6249,8 @@ "[]" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -5893,7 +6263,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5924,6 +6295,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -5943,7 +6315,8 @@ " & { type: \"legendConfig\"; }" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -5963,7 +6336,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -5976,7 +6350,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -5989,7 +6364,8 @@ "\"hide\" | \"show\"" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6003,7 +6379,8 @@ "[]" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6017,7 +6394,8 @@ "[]" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6037,7 +6415,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6050,7 +6429,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6063,7 +6443,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6076,7 +6457,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6089,7 +6471,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6109,7 +6492,8 @@ "[] | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6129,7 +6513,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6142,7 +6527,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6155,7 +6541,8 @@ "number | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6168,7 +6555,8 @@ "string | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6189,7 +6577,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6210,7 +6599,8 @@ " | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6223,7 +6613,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6236,7 +6627,8 @@ "boolean | undefined" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6246,7 +6638,8 @@ "label": "showTooltip", "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6260,6 +6653,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -6272,7 +6666,8 @@ "XYProps" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6286,6 +6681,7 @@ "description": [], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -6295,7 +6691,8 @@ "label": "layerId", "description": [], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6308,7 +6705,8 @@ "string[]" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6321,7 +6719,8 @@ "\"data\"" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6334,7 +6733,8 @@ "\"bar\" | \"line\" | \"area\" | \"bar_stacked\" | \"area_stacked\" | \"bar_horizontal\" | \"bar_percentage_stacked\" | \"bar_horizontal_stacked\" | \"area_percentage_stacked\" | \"bar_horizontal_percentage_stacked\"" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6347,7 +6747,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6360,7 +6761,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6380,7 +6782,8 @@ "[] | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6393,7 +6796,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6407,7 +6811,8 @@ "<{ [key: string]: unknown; }> | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6420,7 +6825,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6440,7 +6846,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6453,7 +6860,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6466,7 +6874,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6480,6 +6889,7 @@ "description": [], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -6489,7 +6899,8 @@ "label": "layerId", "description": [], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6502,7 +6913,8 @@ "string[]" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6522,7 +6934,8 @@ "[] | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6535,7 +6948,8 @@ "\"referenceLine\"" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6549,6 +6963,7 @@ "description": [], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_renderers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -6561,7 +6976,8 @@ "\"render\"" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6574,7 +6990,8 @@ "\"xyVis\"" ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6593,7 +7010,8 @@ } ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_renderers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6607,6 +7025,7 @@ "description": [], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -6619,7 +7038,8 @@ "\"bar\" | \"line\" | \"area\" | \"bar_stacked\" | \"area_stacked\" | \"bar_horizontal\" | \"bar_percentage_stacked\" | \"bar_horizontal_stacked\" | \"area_percentage_stacked\" | \"bar_horizontal_percentage_stacked\"" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6638,7 +7058,8 @@ } ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6658,7 +7079,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6678,7 +7100,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6691,7 +7114,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6711,7 +7135,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6731,7 +7156,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6751,7 +7177,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6771,7 +7198,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6791,7 +7219,8 @@ "[]" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6804,7 +7233,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6817,7 +7247,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6830,7 +7261,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6850,7 +7282,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6870,7 +7303,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6890,7 +7324,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6910,7 +7345,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6930,7 +7366,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6944,7 +7381,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6964,7 +7402,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6977,7 +7416,8 @@ "number | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -6990,7 +7430,22 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "lens", + "id": "def-public.XYState.showCurrentTimeMarker", + "type": "CompoundType", + "tags": [], + "label": "showCurrentTimeMarker", + "description": [], + "signature": [ + "boolean | undefined" + ], + "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -7003,7 +7458,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7017,6 +7473,7 @@ "description": [], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -7026,7 +7483,8 @@ "label": "forAccessor", "description": [], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -7039,7 +7497,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -7052,7 +7511,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -7065,7 +7525,8 @@ "number | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -7085,7 +7546,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -7105,7 +7567,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -7125,7 +7588,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -7138,7 +7602,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -7158,7 +7623,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7187,6 +7653,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/metrics.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7208,6 +7675,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7222,6 +7690,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7239,6 +7708,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/calculations/counter_rate.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7262,6 +7732,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/count.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7279,6 +7750,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/calculations/cumulative_sum.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7312,6 +7784,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7327,6 +7800,7 @@ ], "path": "x-pack/plugins/lens/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7344,6 +7818,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/calculations/differences.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7376,6 +7851,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable_component.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7390,6 +7866,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7404,6 +7881,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7434,6 +7912,7 @@ ], "path": "x-pack/plugins/lens/public/visualizations/gauge/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7458,6 +7937,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/column_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7489,6 +7969,7 @@ ], "path": "x-pack/plugins/lens/public/visualizations/heatmap/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7503,6 +7984,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7517,6 +7999,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7538,6 +8021,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7554,6 +8038,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7584,6 +8069,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7598,6 +8084,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7621,6 +8108,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/metrics.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7644,6 +8132,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/metrics.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7667,6 +8156,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/metrics.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7684,6 +8174,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/calculations/moving_average.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7700,6 +8191,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7717,6 +8209,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/calculations/overall_metric.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7747,6 +8240,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7776,6 +8270,7 @@ ], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7806,6 +8301,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7820,6 +8316,7 @@ ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7843,6 +8340,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/metrics.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7866,6 +8364,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/metrics.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7883,6 +8382,7 @@ ], "path": "x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/calculations/time_scale.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7951,6 +8451,7 @@ ], "path": "x-pack/plugins/lens/public/embeddable/embeddable_component.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7973,6 +8474,7 @@ ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7987,6 +8489,7 @@ ], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8001,6 +8504,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8015,6 +8519,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8029,6 +8534,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8065,6 +8571,7 @@ ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8079,6 +8586,7 @@ ], "path": "x-pack/plugins/lens/public/visualizations/xy/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8093,6 +8601,7 @@ ], "path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -8109,6 +8618,7 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] @@ -8150,6 +8660,7 @@ ], "path": "x-pack/plugins/lens/server/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -8163,6 +8674,7 @@ ], "path": "x-pack/plugins/lens/server/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -8183,6 +8695,7 @@ ], "path": "x-pack/plugins/lens/server/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8248,6 +8761,7 @@ ], "path": "x-pack/plugins/lens/server/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -8276,6 +8790,7 @@ ], "path": "x-pack/plugins/lens/server/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8296,6 +8811,7 @@ ], "path": "x-pack/plugins/lens/server/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8329,6 +8845,7 @@ ], "path": "x-pack/plugins/lens/server/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -8348,6 +8865,7 @@ ], "path": "x-pack/plugins/lens/server/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -8368,6 +8886,7 @@ ], "path": "x-pack/plugins/lens/server/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -8385,6 +8904,7 @@ ], "path": "x-pack/plugins/lens/server/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -8413,6 +8933,7 @@ ], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -8425,7 +8946,8 @@ "string | null" ], "path": "x-pack/plugins/lens/server/migrations/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -8435,7 +8957,8 @@ "label": "title", "description": [], "path": "x-pack/plugins/lens/server/migrations/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -8448,7 +8971,8 @@ "string | null" ], "path": "x-pack/plugins/lens/server/migrations/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -8471,7 +8995,8 @@ "[]; }" ], "path": "x-pack/plugins/lens/server/migrations/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8495,6 +9020,7 @@ ], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -8507,7 +9033,8 @@ "string | null" ], "path": "x-pack/plugins/lens/server/migrations/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -8517,7 +9044,8 @@ "label": "title", "description": [], "path": "x-pack/plugins/lens/server/migrations/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -8530,7 +9058,8 @@ "string | null" ], "path": "x-pack/plugins/lens/server/migrations/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -8555,7 +9084,8 @@ "[]; }" ], "path": "x-pack/plugins/lens/server/migrations/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8579,6 +9109,7 @@ ], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -8591,7 +9122,8 @@ "string | null" ], "path": "x-pack/plugins/lens/server/migrations/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -8601,7 +9133,8 @@ "label": "title", "description": [], "path": "x-pack/plugins/lens/server/migrations/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -8614,7 +9147,8 @@ "string | null" ], "path": "x-pack/plugins/lens/server/migrations/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -8639,7 +9173,8 @@ "[]; }" ], "path": "x-pack/plugins/lens/server/migrations/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8653,6 +9188,7 @@ "description": [], "path": "x-pack/plugins/lens/server/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -8672,7 +9208,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/server/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -8691,7 +9228,8 @@ } ], "path": "x-pack/plugins/lens/server/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -8710,7 +9248,8 @@ } ], "path": "x-pack/plugins/lens/server/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -8729,7 +9268,8 @@ } ], "path": "x-pack/plugins/lens/server/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8743,6 +9283,7 @@ "description": [], "path": "x-pack/plugins/lens/server/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -8762,7 +9303,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/server/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -8781,7 +9323,8 @@ } ], "path": "x-pack/plugins/lens/server/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -8800,7 +9343,8 @@ } ], "path": "x-pack/plugins/lens/server/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -8819,7 +9363,8 @@ } ], "path": "x-pack/plugins/lens/server/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8833,6 +9378,7 @@ "description": [], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -8845,7 +9391,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/server/migrations/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8859,6 +9406,7 @@ "description": [], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -8871,7 +9419,8 @@ "\"auto\" | \"custom\" | \"single\"" ], "path": "x-pack/plugins/lens/server/migrations/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -8881,7 +9430,8 @@ "label": "rowHeightLines", "description": [], "path": "x-pack/plugins/lens/server/migrations/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8912,6 +9462,7 @@ ], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -8924,7 +9475,8 @@ "\"hide\" | \"show\"" ], "path": "x-pack/plugins/lens/server/migrations/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8955,6 +9507,7 @@ ], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -8967,7 +9520,8 @@ "\"hide\" | \"outside\" | \"inside\"" ], "path": "x-pack/plugins/lens/server/migrations/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -8995,6 +9549,7 @@ ], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9053,6 +9608,7 @@ ], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9111,6 +9667,7 @@ ], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9153,6 +9710,7 @@ ], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9195,6 +9753,7 @@ ], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9237,6 +9796,50 @@ ], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, + "initialIsOpen": false + }, + { + "parentPluginId": "lens", + "id": "def-server.LensDocShape850", + "type": "Type", + "tags": [], + "label": "LensDocShape850", + "description": [], + "signature": [ + "Omit<", + { + "pluginId": "lens", + "scope": "server", + "docId": "kibLensPluginApi", + "section": "def-server.LensDocShape715", + "text": "LensDocShape715" + }, + ", \"filters\" | \"state\"> & { filters: ", + "Filter", + "[]; state: Omit<{ datasourceMetaData: { filterableIndexPatterns: { id: string; title: string; }[]; }; datasourceStates: { indexpattern: { currentIndexPatternId: string; layers: Record>; }>; }; }; visualization: VisualizationState; query: ", + "Query", + "; filters: ", + { + "pluginId": "lens", + "scope": "common", + "docId": "kibLensPluginApi", + "section": "def-common.PersistableFilter", + "text": "PersistableFilter" + }, + "[]; }, \"datasourceStates\"> & { datasourceStates: { indexpattern: Omit<{ currentIndexPatternId: string; layers: Record>; }>; }, \"layers\"> & { layers: Record>; }, \"columns\"> & { columns: Record; }>; }>; }; }; }; }" + ], + "path": "x-pack/plugins/lens/server/migrations/types.ts", + "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9251,6 +9854,7 @@ ], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9265,6 +9869,7 @@ ], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9287,6 +9892,7 @@ ], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9307,6 +9913,7 @@ ], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9327,6 +9934,7 @@ ], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9341,6 +9949,7 @@ ], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9355,6 +9964,7 @@ ], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -9375,6 +9985,7 @@ ], "path": "x-pack/plugins/lens/server/migrations/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -9388,6 +9999,7 @@ "description": [], "path": "x-pack/plugins/lens/server/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -9419,6 +10031,7 @@ ], "path": "x-pack/plugins/lens/server/plugin.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -9444,6 +10057,7 @@ ], "path": "x-pack/plugins/lens/server/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -9457,6 +10071,7 @@ ], "path": "x-pack/plugins/lens/server/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -9478,6 +10093,7 @@ ], "path": "x-pack/plugins/lens/server/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -9503,6 +10119,7 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -9527,6 +10144,7 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -9540,6 +10158,7 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -9561,6 +10180,7 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -9579,6 +10199,7 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -9592,11 +10213,45 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], "returnComment": [], "initialIsOpen": false + }, + { + "parentPluginId": "lens", + "id": "def-common.isPartitionShape", + "type": "Function", + "tags": [], + "label": "isPartitionShape", + "description": [], + "signature": [ + "(shape: string) => boolean" + ], + "path": "x-pack/plugins/lens/common/visualizations/partition/utils.ts", + "deprecated": false, + "trackAdoption": false, + "children": [ + { + "parentPluginId": "lens", + "id": "def-common.isPartitionShape.$1", + "type": "string", + "tags": [], + "label": "shape", + "description": [], + "signature": [ + "string" + ], + "path": "x-pack/plugins/lens/common/visualizations/partition/utils.ts", + "deprecated": false, + "trackAdoption": false, + "isRequired": true + } + ], + "returnComment": [], + "initialIsOpen": false } ], "interfaces": [ @@ -9609,6 +10264,7 @@ "description": [], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -9618,7 +10274,8 @@ "label": "fromDate", "description": [], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -9628,7 +10285,8 @@ "label": "toDate", "description": [], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9642,6 +10300,7 @@ "description": [], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -9651,7 +10310,8 @@ "label": "indexPatternTitle", "description": [], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -9664,7 +10324,8 @@ "string[]" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9678,6 +10339,7 @@ "description": [], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -9687,7 +10349,8 @@ "label": "layerId", "description": [], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -9700,7 +10363,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -9713,7 +10377,8 @@ "\"data\" | \"referenceLine\" | \"annotations\"" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -9733,7 +10398,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -9749,7 +10415,8 @@ "> | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -9762,7 +10429,8 @@ "\"top\" | \"bottom\" | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -9775,7 +10443,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -9788,7 +10457,8 @@ "\"left\" | \"right\" | \"center\" | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9813,6 +10483,7 @@ ], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -9831,7 +10502,8 @@ } ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9856,6 +10528,7 @@ ], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -9868,7 +10541,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9882,6 +10556,7 @@ "description": [], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", @@ -9894,7 +10569,8 @@ "\"pie\" | \"donut\" | \"treemap\" | \"mosaic\" | \"waffle\"" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -9914,7 +10590,8 @@ "[]" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -9928,7 +10605,8 @@ "<{ [key: string]: unknown; }> | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -9942,19 +10620,35 @@ "description": [], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lens", - "id": "def-common.SharedPieLayerState.groups", + "id": "def-common.SharedPieLayerState.primaryGroups", "type": "Array", "tags": [], - "label": "groups", + "label": "primaryGroups", "description": [], "signature": [ "string[]" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "lens", + "id": "def-common.SharedPieLayerState.secondaryGroups", + "type": "Array", + "tags": [], + "label": "secondaryGroups", + "description": [], + "signature": [ + "string[] | undefined" + ], + "path": "x-pack/plugins/lens/common/types.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -9967,7 +10661,8 @@ "string | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -9980,7 +10675,8 @@ "\"percent\" | \"hidden\" | \"value\"" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -9993,7 +10689,8 @@ "\"default\" | \"hide\" | \"inside\"" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -10006,7 +10703,8 @@ "\"default\" | \"hide\" | \"show\"" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -10020,7 +10718,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -10033,7 +10732,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -10046,7 +10746,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -10059,7 +10760,8 @@ "number | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -10072,7 +10774,8 @@ "number | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -10085,7 +10788,8 @@ "number | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -10105,7 +10809,8 @@ " | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lens", @@ -10118,7 +10823,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10134,6 +10840,7 @@ "description": [], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -10150,6 +10857,7 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10164,6 +10872,7 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10178,6 +10887,7 @@ ], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10193,6 +10903,7 @@ ], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10207,6 +10918,7 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10221,6 +10933,7 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10252,6 +10965,7 @@ ], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -10274,7 +10988,8 @@ "> | undefined" ], "path": "x-pack/plugins/lens/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -10291,6 +11006,7 @@ ], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10305,6 +11021,7 @@ ], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10319,6 +11036,7 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10333,6 +11051,7 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10347,6 +11066,7 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10361,6 +11081,7 @@ ], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10375,6 +11096,7 @@ ], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10404,6 +11126,7 @@ ], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10418,6 +11141,7 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10432,6 +11156,7 @@ ], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10446,6 +11171,7 @@ ], "path": "x-pack/plugins/lens/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -10462,6 +11188,7 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10476,6 +11203,7 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10490,6 +11218,7 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10504,6 +11233,7 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -10518,6 +11248,7 @@ ], "path": "x-pack/plugins/lens/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/lens.mdx b/api_docs/lens.mdx index d1035af59444c..e3bf3ec6bd2ea 100644 --- a/api_docs/lens.mdx +++ b/api_docs/lens.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/lens title: "lens" image: https://source.unsplash.com/400x175/?github description: API docs for the lens plugin -date: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'lens'] --- import lensObj from './lens.devdocs.json'; @@ -21,7 +21,7 @@ Contact [Vis Editors](https://github.com/orgs/elastic/teams/kibana-vis-editors) | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 613 | 0 | 527 | 41 | +| 619 | 0 | 533 | 41 | ## Client diff --git a/api_docs/license_api_guard.devdocs.json b/api_docs/license_api_guard.devdocs.json index ed124faba69f9..a554c2c4b7895 100644 --- a/api_docs/license_api_guard.devdocs.json +++ b/api_docs/license_api_guard.devdocs.json @@ -19,6 +19,7 @@ "description": [], "path": "x-pack/plugins/license_api_guard/server/license.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licenseApiGuard", @@ -32,6 +33,7 @@ ], "path": "x-pack/plugins/license_api_guard/server/license.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licenseApiGuard", @@ -45,6 +47,7 @@ ], "path": "x-pack/plugins/license_api_guard/server/license.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -62,6 +65,7 @@ ], "path": "x-pack/plugins/license_api_guard/server/license.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licenseApiGuard", @@ -75,6 +79,7 @@ ], "path": "x-pack/plugins/license_api_guard/server/license.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -118,6 +123,7 @@ ], "path": "x-pack/plugins/license_api_guard/server/license.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licenseApiGuard", @@ -140,6 +146,7 @@ ], "path": "x-pack/plugins/license_api_guard/server/license.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -153,7 +160,8 @@ "label": "isEsSecurityEnabled", "description": [], "path": "x-pack/plugins/license_api_guard/server/license.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/license_api_guard.mdx b/api_docs/license_api_guard.mdx index 4cdea2f4f41b2..9cbe965feabc5 100644 --- a/api_docs/license_api_guard.mdx +++ b/api_docs/license_api_guard.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/licenseApiGuard title: "licenseApiGuard" image: https://source.unsplash.com/400x175/?github description: API docs for the licenseApiGuard plugin -date: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'licenseApiGuard'] --- import licenseApiGuardObj from './license_api_guard.devdocs.json'; diff --git a/api_docs/license_management.devdocs.json b/api_docs/license_management.devdocs.json index f68add708a442..8e73bd3fda43b 100644 --- a/api_docs/license_management.devdocs.json +++ b/api_docs/license_management.devdocs.json @@ -16,6 +16,7 @@ "description": [], "path": "x-pack/plugins/license_management/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licenseManagement", @@ -25,7 +26,8 @@ "label": "enabled", "description": [], "path": "x-pack/plugins/license_management/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -43,6 +45,7 @@ ], "path": "x-pack/plugins/license_management/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } diff --git a/api_docs/license_management.mdx b/api_docs/license_management.mdx index e23389f5d16d2..0f41b6ae3352d 100644 --- a/api_docs/license_management.mdx +++ b/api_docs/license_management.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/licenseManagement title: "licenseManagement" image: https://source.unsplash.com/400x175/?github description: API docs for the licenseManagement plugin -date: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'licenseManagement'] --- import licenseManagementObj from './license_management.devdocs.json'; diff --git a/api_docs/licensing.devdocs.json b/api_docs/licensing.devdocs.json index 58f8597a556b3..7329318ab74a2 100644 --- a/api_docs/licensing.devdocs.json +++ b/api_docs/licensing.devdocs.json @@ -13,6 +13,7 @@ "description": [], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -27,7 +28,8 @@ "string | undefined" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -43,7 +45,8 @@ " | undefined" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -55,7 +58,8 @@ "\nDetermine if the status of the license is active." ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -70,7 +74,8 @@ "number | undefined" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -85,7 +90,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\" | undefined" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -104,6 +110,7 @@ "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [] }, { @@ -116,7 +123,8 @@ "\nSignature of the license content." ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -128,7 +136,8 @@ "\nDetermine if the license container has information." ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -145,6 +154,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -161,7 +171,8 @@ "string | undefined" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -177,6 +188,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -194,6 +206,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -209,6 +222,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -229,6 +243,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -244,6 +259,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -260,6 +276,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -280,6 +297,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -295,6 +313,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -312,6 +331,7 @@ "description": [], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -326,7 +346,8 @@ "\"invalid\" | \"unavailable\" | \"valid\" | \"expired\"" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -341,7 +362,8 @@ "string | undefined" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -355,6 +377,7 @@ "description": [], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -364,7 +387,8 @@ "label": "isAvailable", "description": [], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -374,7 +398,8 @@ "label": "isEnabled", "description": [], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -390,6 +415,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -401,7 +427,8 @@ "\nUID for license." ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -416,7 +443,8 @@ "\"invalid\" | \"active\" | \"expired\"" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -428,7 +456,8 @@ "\nUnix epoch of the expiration date of the license." ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -443,7 +472,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\"" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -462,6 +492,7 @@ "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [ { "plugin": "apm", @@ -587,6 +618,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -600,7 +632,8 @@ " | undefined" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -614,7 +647,8 @@ " | undefined" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -624,7 +658,8 @@ "label": "signature", "description": [], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -644,6 +679,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -658,6 +694,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -672,6 +709,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -690,6 +728,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -703,6 +742,7 @@ "description": [], "path": "x-pack/plugins/licensing/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -724,6 +764,7 @@ "path": "x-pack/plugins/licensing/public/types.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [ { "plugin": "security", @@ -798,6 +839,7 @@ "path": "x-pack/plugins/licensing/public/types.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [], "children": [], "returnComment": [] @@ -815,7 +857,8 @@ "FeatureUsageServiceSetup" ], "path": "x-pack/plugins/licensing/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -830,6 +873,7 @@ "description": [], "path": "x-pack/plugins/licensing/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -847,7 +891,8 @@ ">" ], "path": "x-pack/plugins/licensing/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -865,6 +910,7 @@ ], "path": "x-pack/plugins/licensing/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -881,7 +927,8 @@ "FeatureUsageServiceStart" ], "path": "x-pack/plugins/licensing/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", @@ -931,6 +978,7 @@ ], "path": "x-pack/plugins/licensing/server/wrap_route_with_license_check.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -950,6 +998,7 @@ ], "path": "x-pack/plugins/licensing/server/wrap_route_with_license_check.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -973,6 +1022,7 @@ ], "path": "x-pack/plugins/licensing/server/wrap_route_with_license_check.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1000,6 +1050,7 @@ ], "path": "x-pack/plugins/licensing/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -1012,7 +1063,8 @@ "number | undefined" ], "path": "x-pack/plugins/licensing/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1026,6 +1078,7 @@ "description": [], "path": "x-pack/plugins/licensing/server/services/feature_usage_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -1041,6 +1094,7 @@ ], "path": "x-pack/plugins/licensing/server/services/feature_usage_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -1054,6 +1108,7 @@ ], "path": "x-pack/plugins/licensing/server/services/feature_usage_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1068,6 +1123,7 @@ ], "path": "x-pack/plugins/licensing/server/services/feature_usage_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1085,6 +1141,7 @@ "description": [], "path": "x-pack/plugins/licensing/server/services/feature_usage_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -1100,6 +1157,7 @@ ], "path": "x-pack/plugins/licensing/server/services/feature_usage_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -1115,6 +1173,7 @@ ], "path": "x-pack/plugins/licensing/server/services/feature_usage_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1131,6 +1190,7 @@ ], "path": "x-pack/plugins/licensing/server/services/feature_usage_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1152,6 +1212,7 @@ ], "path": "x-pack/plugins/licensing/server/services/feature_usage_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1167,6 +1228,7 @@ "description": [], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -1181,7 +1243,8 @@ "string | undefined" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -1197,7 +1260,8 @@ " | undefined" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -1209,7 +1273,8 @@ "\nDetermine if the status of the license is active." ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -1224,7 +1289,8 @@ "number | undefined" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -1239,7 +1305,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\" | undefined" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -1258,6 +1325,7 @@ "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [] }, { @@ -1270,7 +1338,8 @@ "\nSignature of the license content." ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -1282,7 +1351,8 @@ "\nDetermine if the license container has information." ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -1299,6 +1369,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1315,7 +1386,8 @@ "string | undefined" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -1331,6 +1403,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1348,6 +1421,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -1363,6 +1437,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1383,6 +1458,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -1398,6 +1474,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1414,6 +1491,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1434,6 +1512,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -1449,6 +1528,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1466,6 +1546,7 @@ "description": [], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -1480,7 +1561,8 @@ "\"invalid\" | \"unavailable\" | \"valid\" | \"expired\"" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -1495,7 +1577,8 @@ "string | undefined" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1509,6 +1592,7 @@ "description": [], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -1518,7 +1602,8 @@ "label": "isAvailable", "description": [], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -1528,7 +1613,8 @@ "label": "isEnabled", "description": [], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1544,6 +1630,7 @@ ], "path": "x-pack/plugins/licensing/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -1562,7 +1649,8 @@ } ], "path": "x-pack/plugins/licensing/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -1575,7 +1663,8 @@ "ILicense" ], "path": "x-pack/plugins/licensing/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1591,6 +1680,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -1602,7 +1692,8 @@ "\nUID for license." ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -1617,7 +1708,8 @@ "\"invalid\" | \"active\" | \"expired\"" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -1629,7 +1721,8 @@ "\nUnix epoch of the expiration date of the license." ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -1644,7 +1737,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\"" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -1663,6 +1757,7 @@ "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [ { "plugin": "apm", @@ -1788,6 +1883,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -1801,7 +1897,8 @@ " | undefined" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -1815,7 +1912,8 @@ " | undefined" ], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -1825,7 +1923,8 @@ "label": "signature", "description": [], "path": "x-pack/plugins/licensing/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1841,6 +1940,7 @@ "description": [], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1859,6 +1959,7 @@ ], "path": "x-pack/plugins/licensing/server/wrap_route_with_license_check.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1872,7 +1973,8 @@ "ILicense" ], "path": "x-pack/plugins/licensing/server/wrap_route_with_license_check.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1889,6 +1991,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1903,6 +2006,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1917,6 +2021,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1935,6 +2040,7 @@ ], "path": "x-pack/plugins/licensing/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1948,6 +2054,7 @@ "description": [], "path": "x-pack/plugins/licensing/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -1969,6 +2076,7 @@ "path": "x-pack/plugins/licensing/server/types.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [ { "plugin": "spaces", @@ -2091,6 +2199,7 @@ "path": "x-pack/plugins/licensing/server/types.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [ { "plugin": "mapsEms", @@ -2119,7 +2228,8 @@ } ], "path": "x-pack/plugins/licensing/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -2134,6 +2244,7 @@ "description": [], "path": "x-pack/plugins/licensing/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -2151,7 +2262,8 @@ ">" ], "path": "x-pack/plugins/licensing/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "licensing", @@ -2169,6 +2281,7 @@ ], "path": "x-pack/plugins/licensing/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2194,6 +2307,7 @@ ], "path": "x-pack/plugins/licensing/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "licensing", @@ -2207,6 +2321,7 @@ ], "path": "x-pack/plugins/licensing/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2221,6 +2336,7 @@ ], "path": "x-pack/plugins/licensing/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2245,7 +2361,8 @@ } ], "path": "x-pack/plugins/licensing/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", diff --git a/api_docs/licensing.mdx b/api_docs/licensing.mdx index 230ea8da59f74..49646741c77fc 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'licensing'] --- import licensingObj from './licensing.devdocs.json'; diff --git a/api_docs/lists.devdocs.json b/api_docs/lists.devdocs.json index db68612d2451e..2eb1993fbe171 100644 --- a/api_docs/lists.devdocs.json +++ b/api_docs/lists.devdocs.json @@ -49,6 +49,7 @@ ], "path": "x-pack/plugins/lists/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -62,6 +63,7 @@ ], "path": "x-pack/plugins/lists/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -82,6 +84,7 @@ ], "path": "x-pack/plugins/lists/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -126,6 +129,7 @@ ], "path": "x-pack/plugins/lists/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -156,6 +160,7 @@ ], "path": "x-pack/plugins/lists/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -170,6 +175,7 @@ ], "path": "x-pack/plugins/lists/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -204,6 +210,7 @@ ], "path": "x-pack/plugins/lists/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -223,6 +230,7 @@ ], "path": "x-pack/plugins/lists/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -237,6 +245,7 @@ ], "path": "x-pack/plugins/lists/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -261,6 +270,7 @@ ], "path": "x-pack/plugins/lists/public/exceptions/components/builder/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -275,6 +285,7 @@ ], "path": "x-pack/plugins/lists/public/exceptions/components/builder/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -292,6 +303,7 @@ "description": [], "path": "x-pack/plugins/lists/public/exceptions/components/builder/exception_items_renderer.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -301,7 +313,8 @@ "label": "errorExists", "description": [], "path": "x-pack/plugins/lists/public/exceptions/components/builder/exception_items_renderer.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -314,7 +327,8 @@ "({ _version: string | undefined; comments: ({ comment: string; created_at: string; created_by: string; id: string; } & { updated_at?: string | undefined; updated_by?: string | undefined; })[]; created_at: string; created_by: string; description: string; entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; } | { field: string; list: { id: string; type: \"boolean\" | \"date\" | \"keyword\" | \"ip\" | \"text\" | \"geo_point\" | \"geo_shape\" | \"date_nanos\" | \"long\" | \"double\" | \"date_range\" | \"ip_range\" | \"shape\" | \"short\" | \"binary\" | \"float\" | \"half_float\" | \"integer\" | \"byte\" | \"long_range\" | \"integer_range\" | \"float_range\" | \"double_range\"; }; operator: \"excluded\" | \"included\"; type: \"list\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; })[]; field: string; type: \"nested\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"wildcard\"; value: string; })[]; id: string; item_id: string; list_id: string; meta: object | undefined; name: string; namespace_type: \"single\" | \"agnostic\"; os_types: (\"windows\" | \"linux\" | \"macos\")[]; tags: string[]; tie_breaker_id: string; type: \"simple\"; updated_at: string; updated_by: string; } | ({ description: string; entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { field: string; list: { id: string; type: \"boolean\" | \"date\" | \"keyword\" | \"ip\" | \"text\" | \"geo_point\" | \"geo_shape\" | \"date_nanos\" | \"long\" | \"double\" | \"date_range\" | \"ip_range\" | \"shape\" | \"short\" | \"binary\" | \"float\" | \"half_float\" | \"integer\" | \"byte\" | \"long_range\" | \"integer_range\" | \"float_range\" | \"double_range\"; }; operator: \"excluded\" | \"included\"; type: \"list\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; } | { field: string; operator: \"excluded\" | \"included\"; type: \"wildcard\"; value: string; } | { entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; })[]; field: string; type: \"nested\"; })[]; list_id: string; name: string; type: \"simple\"; } & { comments?: { comment: string; }[] | undefined; item_id?: string | undefined; meta?: object | undefined; namespace_type?: \"single\" | \"agnostic\" | undefined; os_types?: (\"windows\" | \"linux\" | \"macos\")[] | undefined; tags?: string[] | undefined; }))[]" ], "path": "x-pack/plugins/lists/public/exceptions/components/builder/exception_items_renderer.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -327,7 +341,8 @@ "{ _version: string | undefined; comments: ({ comment: string; created_at: string; created_by: string; id: string; } & { updated_at?: string | undefined; updated_by?: string | undefined; })[]; created_at: string; created_by: string; description: string; entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; } | { field: string; list: { id: string; type: \"boolean\" | \"date\" | \"keyword\" | \"ip\" | \"text\" | \"geo_point\" | \"geo_shape\" | \"date_nanos\" | \"long\" | \"double\" | \"date_range\" | \"ip_range\" | \"shape\" | \"short\" | \"binary\" | \"float\" | \"half_float\" | \"integer\" | \"byte\" | \"long_range\" | \"integer_range\" | \"float_range\" | \"double_range\"; }; operator: \"excluded\" | \"included\"; type: \"list\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; })[]; field: string; type: \"nested\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"wildcard\"; value: string; })[]; id: string; item_id: string; list_id: string; meta: object | undefined; name: string; namespace_type: \"single\" | \"agnostic\"; os_types: (\"windows\" | \"linux\" | \"macos\")[]; tags: string[]; tie_breaker_id: string; type: \"simple\"; updated_at: string; updated_by: string; }[]" ], "path": "x-pack/plugins/lists/public/exceptions/components/builder/exception_items_renderer.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -337,7 +352,8 @@ "label": "warningExists", "description": [], "path": "x-pack/plugins/lists/public/exceptions/components/builder/exception_items_renderer.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -355,6 +371,7 @@ "description": [], "path": "x-pack/plugins/lists/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -368,6 +385,7 @@ "description": [], "path": "x-pack/plugins/lists/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true @@ -394,6 +412,7 @@ ], "path": "x-pack/plugins/lists/server/error_with_status_code.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -407,6 +426,7 @@ ], "path": "x-pack/plugins/lists/server/error_with_status_code.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -420,6 +440,7 @@ ], "path": "x-pack/plugins/lists/server/error_with_status_code.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -434,6 +455,7 @@ ], "path": "x-pack/plugins/lists/server/error_with_status_code.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -451,6 +473,7 @@ ], "path": "x-pack/plugins/lists/server/error_with_status_code.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -468,6 +491,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -483,6 +507,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -496,6 +521,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -517,6 +543,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -530,6 +557,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -553,6 +581,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -566,6 +595,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -589,6 +619,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -602,6 +633,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -623,6 +655,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "ExceptionListSchema if it created the endpoint list, otherwise null if it already exists" @@ -642,6 +675,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The exception list schema or null if it does not exist" @@ -663,6 +697,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -676,6 +711,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -699,6 +735,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -712,6 +749,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -735,6 +773,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -748,6 +787,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -771,6 +811,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -784,6 +825,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -807,6 +849,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -820,6 +863,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -843,6 +887,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -856,6 +901,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -885,6 +931,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -904,6 +951,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -933,6 +981,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -952,6 +1001,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -975,6 +1025,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -988,6 +1039,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1011,6 +1063,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1024,6 +1077,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1045,6 +1099,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1058,6 +1113,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1079,6 +1135,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1092,6 +1149,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1115,6 +1173,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1128,6 +1187,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1151,6 +1211,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1164,6 +1225,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1187,6 +1249,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1200,6 +1263,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1223,6 +1287,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1236,6 +1301,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1267,6 +1333,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1280,6 +1347,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1303,6 +1371,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1316,6 +1385,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1339,6 +1409,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1352,6 +1423,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1377,6 +1449,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1390,6 +1463,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1415,6 +1489,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1428,6 +1503,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1451,6 +1527,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1464,6 +1541,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1485,6 +1563,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1498,6 +1577,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1519,6 +1599,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1532,6 +1613,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1553,6 +1635,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1566,6 +1649,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1585,6 +1669,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1600,6 +1685,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1613,6 +1699,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1632,6 +1719,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The list index name" @@ -1651,6 +1739,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The list item index name" @@ -1672,6 +1761,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1685,6 +1775,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1708,6 +1799,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1721,6 +1813,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1744,6 +1837,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -1757,6 +1851,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1778,6 +1873,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "True if the list index exists, otherwise false" @@ -1797,6 +1893,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "True if the list item index exists, otherwise false" @@ -1816,6 +1913,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The contents of the bootstrap response from Elasticsearch" @@ -1835,6 +1933,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The contents of the bootstrap response from Elasticsearch" @@ -1854,6 +1953,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "True if the list policy for ILM exists, otherwise false." @@ -1873,6 +1973,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "True if the list item policy for ILM exists, otherwise false." @@ -1892,6 +1993,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "True if the list template for ILM exists, otherwise false." @@ -1911,6 +2013,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "True if the list item template for ILM exists, otherwise false." @@ -1930,6 +2033,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "True if the list template for ILM exists, otherwise false." @@ -1949,6 +2053,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "True if the list item template for ILM exists, otherwise false." @@ -1968,6 +2073,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The contents of the list template for ILM." @@ -1987,6 +2093,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The contents of the list item template for ILM." @@ -2006,6 +2113,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The contents of the list template for ILM." @@ -2025,6 +2133,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The contents of the list item template for ILM." @@ -2044,6 +2153,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The contents of the list policy set" @@ -2063,6 +2173,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The contents of the list policy set" @@ -2082,6 +2193,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "True if the list index was deleted, otherwise false" @@ -2101,6 +2213,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "True if the list item index was deleted, otherwise false" @@ -2120,6 +2233,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The contents of the list policy" @@ -2139,6 +2253,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The contents of the list item policy" @@ -2158,6 +2273,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The contents of the list template" @@ -2177,6 +2293,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The contents of the list item template" @@ -2196,6 +2313,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The contents of the bootstrap response from Elasticsearch" @@ -2215,6 +2333,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The contents of the bootstrap response from Elasticsearch" @@ -2236,6 +2355,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -2249,6 +2369,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2272,6 +2393,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -2285,6 +2407,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2308,6 +2431,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -2321,6 +2445,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2344,6 +2469,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -2357,6 +2483,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2378,6 +2505,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -2391,6 +2519,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2412,6 +2541,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -2425,6 +2555,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2448,6 +2579,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -2461,6 +2593,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2482,6 +2615,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -2495,6 +2629,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2516,6 +2651,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -2529,6 +2665,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2550,6 +2687,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -2563,6 +2701,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2586,6 +2725,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -2599,6 +2739,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2622,6 +2763,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -2635,6 +2777,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2658,6 +2801,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -2671,6 +2815,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2694,6 +2839,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -2707,6 +2853,7 @@ ], "path": "x-pack/plugins/lists/server/services/lists/list_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2731,6 +2878,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -2745,7 +2893,8 @@ "{ comment: string; }[]" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -2760,7 +2909,8 @@ "({ field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; } | { field: string; list: { id: string; type: \"boolean\" | \"date\" | \"keyword\" | \"ip\" | \"text\" | \"geo_point\" | \"geo_shape\" | \"date_nanos\" | \"long\" | \"double\" | \"date_range\" | \"ip_range\" | \"shape\" | \"short\" | \"binary\" | \"float\" | \"half_float\" | \"integer\" | \"byte\" | \"long_range\" | \"integer_range\" | \"float_range\" | \"double_range\"; }; operator: \"excluded\" | \"included\"; type: \"list\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; })[]; field: string; type: \"nested\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"wildcard\"; value: string; })[]" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -2772,7 +2922,8 @@ "the \"item_id\" of the exception list item" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -2784,7 +2935,8 @@ "the \"list_id\" of the parent exception list" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -2799,7 +2951,8 @@ "\"single\" | \"agnostic\"" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -2811,7 +2964,8 @@ "the \"name\" of the exception list" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -2826,7 +2980,8 @@ "(\"windows\" | \"linux\" | \"macos\")[]" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -2838,7 +2993,8 @@ "a description of the exception list" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -2853,7 +3009,8 @@ "object | undefined" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -2868,7 +3025,8 @@ "string[]" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -2883,7 +3041,8 @@ "\"simple\"" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2897,6 +3056,7 @@ "description": [], "path": "x-pack/plugins/lists/server/services/exception_lists/export_exception_list_and_items.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -2906,7 +3066,8 @@ "label": "exportData", "description": [], "path": "x-pack/plugins/lists/server/services/exception_lists/export_exception_list_and_items.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -2919,7 +3080,8 @@ "{ exported_exception_list_count: number; exported_exception_list_item_count: number; missing_exception_list_item_count: number; missing_exception_list_items: { item_id: string; }[]; missing_exception_lists: { list_id: string; }[]; missing_exception_lists_count: number; }" ], "path": "x-pack/plugins/lists/server/services/exception_lists/export_exception_list_and_items.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2933,6 +3095,7 @@ "description": [], "path": "x-pack/plugins/lists/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -2953,6 +3116,7 @@ ], "path": "x-pack/plugins/lists/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2975,6 +3139,7 @@ ], "path": "x-pack/plugins/lists/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2991,6 +3156,7 @@ ], "path": "x-pack/plugins/lists/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -3008,6 +3174,7 @@ ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -3022,7 +3189,8 @@ "string | undefined" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -3037,7 +3205,8 @@ "({ comment: string; } & { id?: string | undefined; })[]" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -3052,7 +3221,8 @@ "({ field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; } | { field: string; list: { id: string; type: \"boolean\" | \"date\" | \"keyword\" | \"ip\" | \"text\" | \"geo_point\" | \"geo_shape\" | \"date_nanos\" | \"long\" | \"double\" | \"date_range\" | \"ip_range\" | \"shape\" | \"short\" | \"binary\" | \"float\" | \"half_float\" | \"integer\" | \"byte\" | \"long_range\" | \"integer_range\" | \"float_range\" | \"double_range\"; }; operator: \"excluded\" | \"included\"; type: \"list\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { entries: ({ field: string; operator: \"excluded\" | \"included\"; type: \"exists\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match\"; value: string; } | { field: string; operator: \"excluded\" | \"included\"; type: \"match_any\"; value: string[]; })[]; field: string; type: \"nested\"; } | { field: string; operator: \"excluded\" | \"included\"; type: \"wildcard\"; value: string; })[]" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -3067,7 +3237,8 @@ "string | undefined" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -3082,7 +3253,8 @@ "string | undefined" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -3097,7 +3269,8 @@ "\"single\" | \"agnostic\"" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -3112,7 +3285,8 @@ "string | undefined" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -3127,7 +3301,8 @@ "(\"windows\" | \"linux\" | \"macos\")[]" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -3142,7 +3317,8 @@ "string | undefined" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -3157,7 +3333,8 @@ "object | undefined" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -3172,7 +3349,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -3187,7 +3365,8 @@ "\"simple\" | undefined" ], "path": "x-pack/plugins/lists/server/services/exception_lists/exception_list_client_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3225,6 +3404,7 @@ ], "path": "x-pack/plugins/lists/server/services/extension_points/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3245,6 +3425,7 @@ ], "path": "x-pack/plugins/lists/server/services/extension_points/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3265,6 +3446,7 @@ ], "path": "x-pack/plugins/lists/server/services/extension_points/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3285,6 +3467,7 @@ ], "path": "x-pack/plugins/lists/server/services/extension_points/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3305,6 +3488,7 @@ ], "path": "x-pack/plugins/lists/server/services/extension_points/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3325,6 +3509,7 @@ ], "path": "x-pack/plugins/lists/server/services/extension_points/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3345,6 +3530,7 @@ ], "path": "x-pack/plugins/lists/server/services/extension_points/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3365,6 +3551,7 @@ ], "path": "x-pack/plugins/lists/server/services/extension_points/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3397,6 +3584,7 @@ ], "path": "x-pack/plugins/lists/server/services/extension_points/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3481,6 +3669,7 @@ ], "path": "x-pack/plugins/lists/server/services/extension_points/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3505,6 +3694,7 @@ ], "path": "x-pack/plugins/lists/server/services/extension_points/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3588,7 +3778,8 @@ } ], "path": "x-pack/plugins/lists/server/services/extension_points/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3604,6 +3795,7 @@ "description": [], "path": "x-pack/plugins/lists/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "lists", @@ -3626,6 +3818,7 @@ ], "path": "x-pack/plugins/lists/server/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3639,7 +3832,8 @@ "SavedObjectsClientContract" ], "path": "x-pack/plugins/lists/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -3649,7 +3843,8 @@ "label": "user", "description": [], "path": "x-pack/plugins/lists/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -3662,7 +3857,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/lists/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3687,6 +3883,7 @@ ], "path": "x-pack/plugins/lists/server/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4888,7 +5085,8 @@ "; }" ], "path": "x-pack/plugins/lists/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -4898,7 +5096,8 @@ "label": "spaceId", "description": [], "path": "x-pack/plugins/lists/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "lists", @@ -4908,7 +5107,8 @@ "label": "user", "description": [], "path": "x-pack/plugins/lists/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -4932,6 +5132,7 @@ ], "path": "x-pack/plugins/lists/server/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -5015,7 +5216,8 @@ } ], "path": "x-pack/plugins/lists/server/services/extension_points/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } diff --git a/api_docs/lists.mdx b/api_docs/lists.mdx index a7e09aed225b5..4898b58a53d7c 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'lists'] --- import listsObj from './lists.devdocs.json'; diff --git a/api_docs/management.devdocs.json b/api_docs/management.devdocs.json index 56b4e960b9c40..300c38c0b2dcd 100644 --- a/api_docs/management.devdocs.json +++ b/api_docs/management.devdocs.json @@ -22,6 +22,7 @@ ], "path": "src/plugins/management/public/utils/management_app.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "management", @@ -47,6 +48,7 @@ ], "path": "src/plugins/management/public/utils/management_app.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -66,7 +68,8 @@ } ], "path": "src/plugins/management/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -78,7 +81,8 @@ "label": "basePath", "description": [], "path": "src/plugins/management/public/utils/management_app.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "management", @@ -91,7 +95,8 @@ "string[]" ], "path": "src/plugins/management/public/utils/management_app.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "management", @@ -105,6 +110,7 @@ ], "path": "src/plugins/management/public/utils/management_app.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "management", @@ -124,6 +130,7 @@ ], "path": "src/plugins/management/public/utils/management_app.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -152,6 +159,7 @@ ], "path": "src/plugins/management/public/utils/management_section.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "management", @@ -171,7 +179,8 @@ "[]" ], "path": "src/plugins/management/public/utils/management_section.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "management", @@ -185,6 +194,7 @@ ], "path": "src/plugins/management/public/utils/management_section.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "management", @@ -198,6 +208,7 @@ ], "path": "src/plugins/management/public/utils/management_section.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -230,6 +241,7 @@ ], "path": "src/plugins/management/public/utils/management_section.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "management", @@ -251,6 +263,7 @@ ], "path": "src/plugins/management/public/utils/management_section.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -276,6 +289,7 @@ ], "path": "src/plugins/management/public/utils/management_section.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "management", @@ -289,6 +303,7 @@ ], "path": "src/plugins/management/public/utils/management_section.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -314,6 +329,7 @@ ], "path": "src/plugins/management/public/utils/management_section.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -332,6 +348,7 @@ "description": [], "path": "src/plugins/management/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "management", @@ -350,7 +367,8 @@ } ], "path": "src/plugins/management/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "management", @@ -369,7 +387,8 @@ } ], "path": "src/plugins/management/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "management", @@ -388,7 +407,8 @@ } ], "path": "src/plugins/management/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "management", @@ -407,7 +427,8 @@ } ], "path": "src/plugins/management/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "management", @@ -426,7 +447,8 @@ } ], "path": "src/plugins/management/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "management", @@ -445,7 +467,8 @@ } ], "path": "src/plugins/management/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -459,6 +482,7 @@ "description": [], "path": "src/plugins/management/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "management", @@ -468,7 +492,8 @@ "label": "basePath", "description": [], "path": "src/plugins/management/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "management", @@ -481,7 +506,8 @@ "HTMLElement" ], "path": "src/plugins/management/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "management", @@ -497,6 +523,7 @@ ], "path": "src/plugins/management/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "management", @@ -511,6 +538,7 @@ ], "path": "src/plugins/management/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -528,7 +556,8 @@ "" ], "path": "src/plugins/management/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "management", @@ -544,7 +573,8 @@ ">" ], "path": "src/plugins/management/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -569,6 +599,7 @@ ], "path": "src/plugins/management/public/utils/management_app.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "management", @@ -594,6 +625,7 @@ ], "path": "src/plugins/management/public/utils/management_app.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -613,7 +645,8 @@ } ], "path": "src/plugins/management/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -625,7 +658,8 @@ "label": "basePath", "description": [], "path": "src/plugins/management/public/utils/management_app.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "management", @@ -638,7 +672,8 @@ "string[] | undefined" ], "path": "src/plugins/management/public/utils/management_app.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -658,6 +693,7 @@ ], "path": "src/plugins/management/common/contants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -671,6 +707,7 @@ "description": [], "path": "src/plugins/management/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "management", @@ -683,7 +720,8 @@ "SectionsServiceSetup" ], "path": "src/plugins/management/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "management", @@ -705,7 +743,8 @@ ">" ], "path": "src/plugins/management/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -720,6 +759,7 @@ "description": [], "path": "src/plugins/management/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true @@ -760,6 +800,7 @@ ], "path": "src/plugins/management/common/locator.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/management.mdx b/api_docs/management.mdx index 22302785607ef..c80c65e2fcc23 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'management'] --- import managementObj from './management.devdocs.json'; diff --git a/api_docs/maps.devdocs.json b/api_docs/maps.devdocs.json index b5d295cb11f7a..e4f2099729683 100644 --- a/api_docs/maps.devdocs.json +++ b/api_docs/maps.devdocs.json @@ -11,6 +11,7 @@ "description": [], "path": "x-pack/plugins/maps/public/classes/util/data_request.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -24,6 +25,7 @@ ], "path": "x-pack/plugins/maps/public/classes/util/data_request.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -37,6 +39,7 @@ ], "path": "x-pack/plugins/maps/public/classes/util/data_request.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -54,6 +57,7 @@ ], "path": "x-pack/plugins/maps/public/classes/util/data_request.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -69,6 +73,7 @@ ], "path": "x-pack/plugins/maps/public/classes/util/data_request.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -85,6 +90,7 @@ ], "path": "x-pack/plugins/maps/public/classes/util/data_request.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -100,6 +106,7 @@ ], "path": "x-pack/plugins/maps/public/classes/util/data_request.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -115,6 +122,7 @@ ], "path": "x-pack/plugins/maps/public/classes/util/data_request.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -130,6 +138,7 @@ ], "path": "x-pack/plugins/maps/public/classes/util/data_request.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -145,6 +154,7 @@ ], "path": "x-pack/plugins/maps/public/classes/util/data_request.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -213,6 +223,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -222,7 +233,8 @@ "label": "type", "description": [], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -232,7 +244,8 @@ "label": "deferEmbeddableLoad", "description": [], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -246,6 +259,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -259,6 +273,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -279,6 +294,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -316,6 +332,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -333,6 +350,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -353,6 +371,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -368,6 +387,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -387,6 +407,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -406,6 +427,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -423,6 +445,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -442,6 +465,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -457,6 +481,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -474,6 +499,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -491,6 +517,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -506,6 +533,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -523,6 +551,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -536,6 +565,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -555,6 +585,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -568,6 +599,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -585,6 +617,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -598,6 +631,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -615,6 +649,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -628,6 +663,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -652,6 +688,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -667,6 +704,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -682,6 +720,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -697,6 +736,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -712,6 +752,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -727,6 +768,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -740,6 +782,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -754,6 +797,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -768,6 +812,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -787,6 +832,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -802,6 +848,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -817,6 +864,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -827,6 +875,7 @@ "description": [], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -836,7 +885,8 @@ "label": "forceRefresh", "description": [], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -855,6 +905,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -868,6 +919,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -887,6 +939,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -900,6 +953,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -925,6 +979,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -945,6 +1000,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -970,6 +1026,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -989,6 +1046,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1008,6 +1066,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -1021,6 +1080,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1035,6 +1095,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1049,6 +1110,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1068,6 +1130,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -1082,6 +1145,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1096,6 +1160,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1121,6 +1186,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1144,6 +1210,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1159,6 +1226,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -1174,6 +1242,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1189,6 +1258,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1204,6 +1274,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1219,6 +1290,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -1232,6 +1304,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1246,6 +1319,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1260,6 +1334,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1277,6 +1352,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/map_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1295,6 +1371,7 @@ "description": [], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -1304,7 +1381,8 @@ "label": "applyGlobalQuery", "description": [], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -1314,7 +1392,8 @@ "label": "applyGlobalTime", "description": [], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -1328,7 +1407,8 @@ "[]" ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -1342,7 +1422,8 @@ " | undefined" ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -1359,7 +1440,8 @@ "[]; } | undefined" ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -1373,7 +1455,8 @@ " | undefined" ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -1386,7 +1469,8 @@ "{ from: string; to: string; mode?: \"absolute\" | \"relative\" | undefined; }" ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -1400,7 +1484,8 @@ " | undefined" ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -1410,7 +1495,8 @@ "label": "isFeatureEditorOpenForLayer", "description": [], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -1424,7 +1510,8 @@ " | undefined" ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1438,6 +1525,7 @@ "description": [], "path": "x-pack/plugins/maps/public/ems_autosuggest/ems_autosuggest.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -1447,7 +1535,8 @@ "label": "layerId", "description": [], "path": "x-pack/plugins/maps/public/ems_autosuggest/ems_autosuggest.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -1457,7 +1546,8 @@ "label": "field", "description": [], "path": "x-pack/plugins/maps/public/ems_autosuggest/ems_autosuggest.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -1467,7 +1557,8 @@ "label": "displayName", "description": [], "path": "x-pack/plugins/maps/public/ems_autosuggest/ems_autosuggest.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1481,6 +1572,7 @@ "description": [], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -1493,7 +1585,8 @@ "GeoJSON.FeatureCollection" ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -1507,7 +1600,8 @@ " | undefined" ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1521,6 +1615,7 @@ "description": [], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -1535,7 +1630,8 @@ "[], actionId: string) => Promise) | null" ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -1545,7 +1641,8 @@ "label": "featureId", "description": [], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -1558,7 +1655,8 @@ "string[]" ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -1580,6 +1678,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1603,6 +1702,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1618,6 +1718,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1632,7 +1733,8 @@ "maplibregl.GeoJSONFeature & { layer: Omit & { source: string; }; source: string; sourceLayer?: string | undefined; state: { [key: string]: any; }; }" ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -1646,6 +1748,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1661,6 +1764,7 @@ "description": [], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -1674,6 +1778,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1689,6 +1794,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1704,6 +1810,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1719,6 +1826,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1734,6 +1842,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1749,6 +1858,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1772,6 +1882,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -1785,6 +1896,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1809,6 +1921,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1831,6 +1944,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1846,6 +1960,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1863,6 +1978,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1880,6 +1996,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -1893,6 +2010,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1912,6 +2030,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -1925,6 +2044,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1942,6 +2062,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1957,6 +2078,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1980,6 +2102,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -1999,6 +2122,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2018,6 +2142,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -2031,6 +2156,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2048,6 +2174,7 @@ ], "path": "x-pack/plugins/maps/public/classes/fields/field.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2074,6 +2201,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/tms_source/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -2089,6 +2217,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/tms_source/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -2102,6 +2231,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/tms_source/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2119,6 +2249,7 @@ "description": [], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -2132,6 +2263,7 @@ ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2147,6 +2279,7 @@ ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2162,6 +2295,7 @@ ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2177,6 +2311,7 @@ ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2192,6 +2327,7 @@ ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2209,6 +2345,7 @@ ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2235,6 +2372,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -2248,6 +2386,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2271,6 +2410,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -2284,6 +2424,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2311,6 +2452,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -2330,6 +2472,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2344,6 +2487,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2385,6 +2529,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -2398,6 +2543,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2418,6 +2564,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2432,6 +2579,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2446,6 +2594,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2466,6 +2615,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2491,6 +2641,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2514,6 +2665,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -2527,6 +2679,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2552,6 +2705,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2567,6 +2721,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2582,6 +2737,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2597,6 +2753,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2612,6 +2769,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2634,6 +2792,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -2644,6 +2803,7 @@ "description": [], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -2653,7 +2813,8 @@ "label": "fieldName", "description": [], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2672,6 +2833,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2695,6 +2857,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2710,6 +2873,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2740,6 +2904,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -2760,6 +2925,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2777,6 +2943,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2792,6 +2959,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2807,6 +2975,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2822,6 +2991,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -2835,6 +3005,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2849,6 +3020,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2866,6 +3038,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -2879,6 +3052,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2912,6 +3086,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -2931,6 +3106,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2948,6 +3124,7 @@ "description": [], "path": "x-pack/plugins/maps/common/elasticsearch_util/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -2957,7 +3134,8 @@ "label": "index", "description": [], "path": "x-pack/plugins/maps/common/elasticsearch_util/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -2970,7 +3148,8 @@ "string | number" ], "path": "x-pack/plugins/maps/common/elasticsearch_util/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -2980,7 +3159,8 @@ "label": "path", "description": [], "path": "x-pack/plugins/maps/common/elasticsearch_util/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2994,6 +3174,7 @@ "description": [], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -3008,7 +3189,8 @@ "[], actionId: string) => Promise) | null" ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -3022,6 +3204,7 @@ ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3043,7 +3226,8 @@ "[]" ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -3065,6 +3249,7 @@ ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3088,6 +3273,7 @@ ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3103,6 +3289,7 @@ ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -3116,6 +3303,7 @@ ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3129,7 +3317,8 @@ "label": "isLocked", "description": [], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -3151,6 +3340,7 @@ ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -3161,6 +3351,7 @@ "description": [], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -3170,7 +3361,8 @@ "label": "layerId", "description": [], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -3183,7 +3375,8 @@ "{ [name: string]: any; } | null" ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -3202,6 +3395,7 @@ ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -3212,6 +3406,7 @@ "description": [], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -3221,7 +3416,8 @@ "label": "layerId", "description": [], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -3234,7 +3430,8 @@ "string | number | undefined" ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -3255,6 +3452,7 @@ ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -3268,6 +3466,7 @@ ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3282,6 +3481,7 @@ ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3296,6 +3496,7 @@ ], "path": "x-pack/plugins/maps/public/classes/tooltips/tooltip_property.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3313,6 +3514,7 @@ "description": [], "path": "x-pack/plugins/maps/public/ems_autosuggest/ems_autosuggest.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -3325,7 +3527,8 @@ "(string | number)[] | undefined" ], "path": "x-pack/plugins/maps/public/ems_autosuggest/ems_autosuggest.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -3338,7 +3541,8 @@ "string | undefined" ], "path": "x-pack/plugins/maps/public/ems_autosuggest/ems_autosuggest.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3352,6 +3556,7 @@ "description": [], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -3364,7 +3569,8 @@ "string | null" ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -3374,7 +3580,8 @@ "label": "areResultsTrimmed", "description": [], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -3387,7 +3594,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/maps/public/classes/sources/vector_source/vector_source.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3407,6 +3615,7 @@ ], "path": "x-pack/plugins/maps/common/descriptor_types/layer_descriptor_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3421,6 +3630,7 @@ ], "path": "x-pack/plugins/maps/public/classes/layers/vector_layer/geojson_vector_layer/assign_feature_ids.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3435,6 +3645,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/source.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3465,6 +3676,7 @@ ], "path": "x-pack/plugins/maps/public/classes/layers/wizards/layer_wizard_registry.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3479,6 +3691,7 @@ ], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3495,6 +3708,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3524,6 +3738,7 @@ ], "path": "x-pack/plugins/maps/public/embeddable/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3538,6 +3753,7 @@ ], "path": "x-pack/plugins/maps/public/locators.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3560,6 +3776,7 @@ ], "path": "x-pack/plugins/maps/public/classes/layers/wizards/layer_wizard_registry.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3580,6 +3797,7 @@ ], "path": "x-pack/plugins/maps/public/classes/sources/source.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3593,6 +3811,7 @@ "description": [], "path": "x-pack/plugins/maps/public/api/setup_api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -3614,6 +3833,7 @@ ], "path": "x-pack/plugins/maps/public/api/setup_api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -3633,6 +3853,7 @@ ], "path": "x-pack/plugins/maps/public/api/setup_api.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3652,6 +3873,7 @@ ], "path": "x-pack/plugins/maps/public/api/setup_api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -3665,6 +3887,7 @@ ], "path": "x-pack/plugins/maps/public/api/setup_api.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3683,6 +3906,7 @@ "description": [], "path": "x-pack/plugins/maps/public/api/start_api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -3721,7 +3945,8 @@ ">; }" ], "path": "x-pack/plugins/maps/public/api/start_api.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "maps", @@ -3751,6 +3976,7 @@ ], "path": "x-pack/plugins/maps/public/api/start_api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "maps", @@ -3770,6 +3996,7 @@ ], "path": "x-pack/plugins/maps/public/api/start_api.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3802,6 +4029,7 @@ "description": [], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3813,6 +4041,7 @@ "description": [], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3824,6 +4053,7 @@ "description": [], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3835,6 +4065,7 @@ "description": [], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3846,6 +4077,7 @@ "description": [], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3857,6 +4089,7 @@ "description": [], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3868,6 +4101,7 @@ "description": [], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3879,6 +4113,7 @@ "description": [], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3890,6 +4125,7 @@ "description": [], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3901,6 +4137,7 @@ "description": [], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3912,6 +4149,7 @@ "description": [], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3923,6 +4161,7 @@ "description": [], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3934,6 +4173,7 @@ "description": [], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3945,6 +4185,7 @@ "description": [], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3961,6 +4202,7 @@ ], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3975,6 +4217,7 @@ ], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3990,6 +4233,7 @@ ], "path": "x-pack/plugins/maps/common/descriptor_types/source_descriptor_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4017,6 +4261,7 @@ ], "path": "x-pack/plugins/maps/common/descriptor_types/source_descriptor_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4033,6 +4278,7 @@ ], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4046,7 +4292,8 @@ "string | number | boolean | string[] | null | undefined" ], "path": "x-pack/plugins/maps/common/constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4083,6 +4330,7 @@ ], "path": "x-pack/plugins/maps/common/descriptor_types/layer_descriptor_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4097,6 +4345,7 @@ ], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4111,6 +4360,7 @@ ], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4125,6 +4375,7 @@ ], "path": "x-pack/plugins/maps/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4147,6 +4398,7 @@ ], "path": "x-pack/plugins/maps/common/descriptor_types/map_descriptor.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4161,6 +4413,7 @@ ], "path": "x-pack/plugins/maps/common/descriptor_types/map_descriptor.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4216,6 +4469,7 @@ ], "path": "x-pack/plugins/maps/common/descriptor_types/layer_descriptor_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4233,6 +4487,7 @@ ], "path": "x-pack/plugins/maps/common/descriptor_types/data_request_descriptor_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4252,6 +4507,7 @@ ], "path": "x-pack/plugins/maps/common/descriptor_types/style_property_descriptor_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/maps.mdx b/api_docs/maps.mdx index 1ddc893f195bb..3288a39e333ce 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'maps'] --- import mapsObj from './maps.devdocs.json'; diff --git a/api_docs/maps_ems.devdocs.json b/api_docs/maps_ems.devdocs.json index 5b2e9c6e99c00..ef117f9582be4 100644 --- a/api_docs/maps_ems.devdocs.json +++ b/api_docs/maps_ems.devdocs.json @@ -13,6 +13,7 @@ "description": [], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "mapsEms", @@ -22,7 +23,8 @@ "label": "includeElasticMapsService", "description": [], "path": "src/plugins/maps_ems/common/ems_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "mapsEms", @@ -32,7 +34,8 @@ "label": "emsUrl", "description": [], "path": "src/plugins/maps_ems/common/ems_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "mapsEms", @@ -42,7 +45,8 @@ "label": "emsFileApiUrl", "description": [], "path": "src/plugins/maps_ems/common/ems_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "mapsEms", @@ -52,7 +56,8 @@ "label": "emsTileApiUrl", "description": [], "path": "src/plugins/maps_ems/common/ems_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "mapsEms", @@ -62,7 +67,8 @@ "label": "emsLandingPageUrl", "description": [], "path": "src/plugins/maps_ems/common/ems_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "mapsEms", @@ -72,7 +78,8 @@ "label": "emsFontLibraryUrl", "description": [], "path": "src/plugins/maps_ems/common/ems_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -92,6 +99,7 @@ ], "path": "src/plugins/maps_ems/config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -106,6 +114,7 @@ ], "path": "src/plugins/maps_ems/config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -119,6 +128,7 @@ "description": [], "path": "src/plugins/maps_ems/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -132,6 +142,7 @@ "description": [], "path": "src/plugins/maps_ems/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "mapsEms", @@ -144,7 +155,8 @@ "{ readonly tilemap: Readonly<{ url?: string | undefined; } & { options: Readonly<{ default?: boolean | undefined; tileSize?: number | undefined; subdomains?: string[] | undefined; errorTileUrl?: string | undefined; tms?: boolean | undefined; reuseTiles?: boolean | undefined; bounds?: number[] | undefined; } & { attribution: string; minZoom: number; maxZoom: number; }>; }>; readonly includeElasticMapsService: boolean; readonly emsUrl: string; readonly emsFileApiUrl: string; readonly emsTileApiUrl: string; readonly emsLandingPageUrl: string; readonly emsFontLibraryUrl: string; readonly emsTileLayerId: Readonly<{} & { dark: string; bright: string; desaturated: string; }>; }" ], "path": "src/plugins/maps_ems/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "mapsEms", @@ -165,6 +177,7 @@ ], "path": "src/plugins/maps_ems/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -182,6 +195,7 @@ ], "path": "src/plugins/maps_ems/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -201,6 +215,7 @@ "description": [], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "mapsEms", @@ -214,6 +229,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "mapsEms", @@ -233,6 +249,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -247,6 +264,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -264,6 +282,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -279,6 +298,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -294,6 +314,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -309,6 +330,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -324,6 +346,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -339,6 +362,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -354,6 +378,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -369,6 +394,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -384,6 +410,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -425,6 +452,7 @@ ], "path": "src/plugins/maps_ems/server/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "mapsEms", @@ -444,7 +472,8 @@ "; }>; includeElasticMapsService: boolean; emsUrl: string; emsFileApiUrl: string; emsTileApiUrl: string; emsLandingPageUrl: string; emsFontLibraryUrl: string; emsTileLayerId: Readonly<{} & { dark: string; bright: string; desaturated: string; }>; }>>" ], "path": "src/plugins/maps_ems/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "mapsEms", @@ -458,6 +487,7 @@ ], "path": "src/plugins/maps_ems/server/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "mapsEms", @@ -478,6 +508,7 @@ ], "path": "src/plugins/maps_ems/server/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -511,6 +542,7 @@ ], "path": "src/plugins/maps_ems/server/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "mapsEms", @@ -531,6 +563,7 @@ ], "path": "src/plugins/maps_ems/server/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -545,6 +578,7 @@ ], "path": "src/plugins/maps_ems/server/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -562,6 +596,7 @@ ], "path": "src/plugins/maps_ems/server/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -580,6 +615,7 @@ "description": [], "path": "src/plugins/maps_ems/server/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "mapsEms", @@ -592,7 +628,8 @@ "{ readonly tilemap: Readonly<{ url?: string | undefined; } & { options: Readonly<{ default?: boolean | undefined; tileSize?: number | undefined; subdomains?: string[] | undefined; errorTileUrl?: string | undefined; tms?: boolean | undefined; reuseTiles?: boolean | undefined; bounds?: number[] | undefined; } & { attribution: string; minZoom: number; maxZoom: number; }>; }>; readonly includeElasticMapsService: boolean; readonly emsUrl: string; readonly emsFileApiUrl: string; readonly emsTileApiUrl: string; readonly emsLandingPageUrl: string; readonly emsFontLibraryUrl: string; readonly emsTileLayerId: Readonly<{} & { dark: string; bright: string; desaturated: string; }>; }" ], "path": "src/plugins/maps_ems/server/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "mapsEms", @@ -613,6 +650,7 @@ ], "path": "src/plugins/maps_ems/server/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -635,6 +673,7 @@ "description": [], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "mapsEms", @@ -648,6 +687,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "mapsEms", @@ -667,6 +707,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -681,6 +722,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -698,6 +740,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -713,6 +756,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -728,6 +772,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -743,6 +788,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -758,6 +804,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -773,6 +820,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -788,6 +836,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -803,6 +852,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -818,6 +868,7 @@ ], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -836,6 +887,7 @@ "description": [], "path": "src/plugins/maps_ems/common/ems_settings.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "mapsEms", @@ -845,7 +897,8 @@ "label": "includeElasticMapsService", "description": [], "path": "src/plugins/maps_ems/common/ems_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "mapsEms", @@ -855,7 +908,8 @@ "label": "emsUrl", "description": [], "path": "src/plugins/maps_ems/common/ems_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "mapsEms", @@ -865,7 +919,8 @@ "label": "emsFileApiUrl", "description": [], "path": "src/plugins/maps_ems/common/ems_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "mapsEms", @@ -875,7 +930,8 @@ "label": "emsTileApiUrl", "description": [], "path": "src/plugins/maps_ems/common/ems_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "mapsEms", @@ -885,7 +941,8 @@ "label": "emsLandingPageUrl", "description": [], "path": "src/plugins/maps_ems/common/ems_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "mapsEms", @@ -895,7 +952,8 @@ "label": "emsFontLibraryUrl", "description": [], "path": "src/plugins/maps_ems/common/ems_settings.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -915,6 +973,7 @@ ], "path": "src/plugins/maps_ems/common/ems_defaults.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -929,6 +988,7 @@ ], "path": "src/plugins/maps_ems/common/ems_defaults.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -943,6 +1003,7 @@ ], "path": "src/plugins/maps_ems/common/ems_defaults.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -957,6 +1018,7 @@ ], "path": "src/plugins/maps_ems/common/ems_defaults.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -971,6 +1033,7 @@ ], "path": "src/plugins/maps_ems/common/ems_defaults.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -985,6 +1048,7 @@ ], "path": "src/plugins/maps_ems/common/ems_defaults.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -999,6 +1063,7 @@ ], "path": "src/plugins/maps_ems/common/ems_defaults.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1013,6 +1078,7 @@ ], "path": "src/plugins/maps_ems/common/ems_defaults.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1027,6 +1093,7 @@ ], "path": "src/plugins/maps_ems/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/maps_ems.mdx b/api_docs/maps_ems.mdx index 194314de963f5..d77d00574c79f 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'mapsEms'] --- import mapsEmsObj from './maps_ems.devdocs.json'; diff --git a/api_docs/ml.devdocs.json b/api_docs/ml.devdocs.json index 2e5a2b35f7c3a..5ff2618d25391 100644 --- a/api_docs/ml.devdocs.json +++ b/api_docs/ml.devdocs.json @@ -31,6 +31,7 @@ ], "path": "x-pack/plugins/ml/public/locator/ml_locator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -43,7 +44,8 @@ "\"ML_APP_LOCATOR\"" ], "path": "x-pack/plugins/ml/public/locator/ml_locator.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -61,6 +63,7 @@ ], "path": "x-pack/plugins/ml/public/locator/ml_locator.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -74,6 +77,7 @@ ], "path": "x-pack/plugins/ml/public/locator/ml_locator.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -98,6 +102,7 @@ ], "path": "x-pack/plugins/ml/common/util/anomaly_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -113,6 +118,7 @@ ], "path": "x-pack/plugins/ml/common/util/anomaly_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -133,6 +139,7 @@ ], "path": "x-pack/plugins/ml/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -152,6 +159,7 @@ ], "path": "x-pack/plugins/ml/common/util/anomaly_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -167,6 +175,7 @@ ], "path": "x-pack/plugins/ml/common/util/anomaly_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -187,6 +196,7 @@ ], "path": "x-pack/plugins/ml/common/util/anomaly_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -202,6 +212,7 @@ ], "path": "x-pack/plugins/ml/common/util/anomaly_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -229,6 +240,7 @@ ], "path": "x-pack/plugins/ml/common/util/anomaly_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -244,6 +256,7 @@ ], "path": "x-pack/plugins/ml/common/util/anomaly_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -262,6 +275,7 @@ ], "path": "x-pack/plugins/ml/public/application/components/jobs_awaiting_node_warning/new_job_awaiting_node_shared/lazy_loader.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -275,6 +289,7 @@ ], "path": "x-pack/plugins/ml/public/application/components/jobs_awaiting_node_warning/new_job_awaiting_node_shared/lazy_loader.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -299,6 +314,7 @@ ], "path": "x-pack/plugins/ml/public/locator/use_ml_href.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -314,6 +330,7 @@ ], "path": "x-pack/plugins/ml/public/locator/use_ml_href.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -328,6 +345,7 @@ ], "path": "x-pack/plugins/ml/public/locator/use_ml_href.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -342,6 +360,7 @@ ], "path": "x-pack/plugins/ml/public/locator/use_ml_href.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -361,6 +380,7 @@ ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -372,7 +392,8 @@ "\nThe start time of the interval for which the anomaly data in the table is being aggregated.\nAnomalies in the table are commonly aggregated by day, hour, or at the bucket span of the job." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -387,7 +408,8 @@ "AnomalyRecordDoc" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -399,7 +421,8 @@ "\nUnique identifier for the table row." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -411,7 +434,8 @@ "\nIdentifier for the anomaly detection job." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -423,7 +447,8 @@ "\nA unique identifier for the detector.\nThis identifier is based on the order of the detectors in the analysis configuration, starting at zero." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -435,7 +460,8 @@ "\nSeverity of the anomaly displaying the anomaly record_score, a normalized score between 0-100,\nwhich is based on the probability of the anomalousness of this record." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -450,7 +476,8 @@ "string | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -465,7 +492,8 @@ "any" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -480,7 +508,8 @@ "{ [key: string]: any; }[] | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -495,7 +524,8 @@ "number[] | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -510,7 +540,8 @@ "any" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -525,7 +556,8 @@ "number[] | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -540,7 +572,8 @@ "any" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -555,7 +588,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -571,7 +605,8 @@ "[] | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -586,7 +621,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -601,7 +637,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -615,6 +652,7 @@ "description": [], "path": "x-pack/plugins/ml/common/types/modules.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -628,7 +666,8 @@ "[]" ], "path": "x-pack/plugins/ml/common/types/modules.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -642,7 +681,8 @@ "[]" ], "path": "x-pack/plugins/ml/common/types/modules.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -661,7 +701,8 @@ "[]; }" ], "path": "x-pack/plugins/ml/common/types/modules.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -677,6 +718,7 @@ ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -688,7 +730,8 @@ "\nThe field name of the influencer." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -703,7 +746,8 @@ "string[]" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -717,6 +761,7 @@ "description": [], "path": "x-pack/plugins/ml/common/types/data_recognizer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -726,7 +771,8 @@ "label": "jobsExist", "description": [], "path": "x-pack/plugins/ml/common/types/data_recognizer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -740,7 +786,8 @@ "[]" ], "path": "x-pack/plugins/ml/common/types/data_recognizer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -754,6 +801,7 @@ "description": [], "path": "x-pack/plugins/ml/common/types/data_recognizer.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -763,7 +811,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/ml/common/types/data_recognizer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -773,7 +822,8 @@ "label": "earliestTimestampMs", "description": [], "path": "x-pack/plugins/ml/common/types/data_recognizer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -783,7 +833,8 @@ "label": "latestTimestampMs", "description": [], "path": "x-pack/plugins/ml/common/types/data_recognizer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -796,7 +847,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/data_recognizer.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -810,6 +862,7 @@ "description": [], "path": "x-pack/plugins/ml/common/types/capabilities.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -822,7 +875,8 @@ "{ canAccessML: boolean; canGetJobs: boolean; canGetDatafeeds: boolean; canGetCalendars: boolean; canFindFileStructure: boolean; canGetDataFrameAnalytics: boolean; canGetAnnotations: boolean; canCreateAnnotation: boolean; canDeleteAnnotation: boolean; canUseMlAlerts: boolean; canGetTrainedModels: boolean; canTestTrainedModels: boolean; } & { canCreateJob: boolean; canDeleteJob: boolean; canOpenJob: boolean; canCloseJob: boolean; canResetJob: boolean; canUpdateJob: boolean; canForecastJob: boolean; canCreateDatafeed: boolean; canDeleteDatafeed: boolean; canStartStopDatafeed: boolean; canUpdateDatafeed: boolean; canPreviewDatafeed: boolean; canGetFilters: boolean; canCreateCalendar: boolean; canDeleteCalendar: boolean; canCreateFilter: boolean; canDeleteFilter: boolean; canCreateDataFrameAnalytics: boolean; canDeleteDataFrameAnalytics: boolean; canStartStopDataFrameAnalytics: boolean; canCreateMlAlerts: boolean; canUseMlAlerts: boolean; canViewMlNodes: boolean; canCreateTrainedModels: boolean; canDeleteTrainedModels: boolean; canStartStopTrainedModels: boolean; }" ], "path": "x-pack/plugins/ml/common/types/capabilities.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -832,7 +886,8 @@ "label": "upgradeInProgress", "description": [], "path": "x-pack/plugins/ml/common/types/capabilities.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -842,7 +897,8 @@ "label": "isPlatinumOrTrialLicense", "description": [], "path": "x-pack/plugins/ml/common/types/capabilities.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -852,7 +908,8 @@ "label": "mlFeatureEnabledInSpace", "description": [], "path": "x-pack/plugins/ml/common/types/capabilities.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -868,6 +925,7 @@ ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -879,7 +937,8 @@ "\nThe identifier for the anomaly detection job." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -891,7 +950,8 @@ "\nA description of the job." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -906,7 +966,8 @@ "string[]" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -921,7 +982,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -936,7 +998,8 @@ "string | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -953,7 +1016,8 @@ "JobActionState" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -968,7 +1032,8 @@ "string[]" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -980,7 +1045,8 @@ "\nFlag indicating whether a datafeed exists for the job." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -992,7 +1058,8 @@ "\nThe identifier for the datafeed." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1004,7 +1071,8 @@ "\nThe status of the datafeed." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1019,7 +1087,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1034,7 +1103,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1049,7 +1119,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1065,7 +1136,8 @@ " | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1080,7 +1152,8 @@ "string | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1097,7 +1170,8 @@ "> | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1109,7 +1183,8 @@ "\nFlag indicating whether results of the job can be viewed in the Single Metric Viewer." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1124,7 +1199,8 @@ "string | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1140,7 +1216,8 @@ " | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1155,7 +1232,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1170,7 +1248,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1182,7 +1261,8 @@ "\nIndicates whether the job is currently awaiting assignment to a node before opening." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1198,7 +1278,8 @@ "[] | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1213,7 +1294,8 @@ "{ [x: string]: string; }" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1225,7 +1307,8 @@ "\nThe size of the interval that the analysis is aggregated into, typically between 5m and 1h." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1240,7 +1323,8 @@ "any" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1266,6 +1350,7 @@ ], "path": "x-pack/plugins/ml/public/application/components/data_grid/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -1281,6 +1366,7 @@ ], "path": "x-pack/plugins/ml/public/application/components/data_grid/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1296,7 +1382,8 @@ ") => void; }" ], "path": "x-pack/plugins/ml/public/application/components/data_grid/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1311,7 +1398,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/ml/public/application/components/data_grid/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1329,6 +1417,7 @@ ], "path": "x-pack/plugins/ml/common/constants/anomalies.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1345,6 +1434,7 @@ ], "path": "x-pack/plugins/ml/public/embeddables/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1367,6 +1457,7 @@ ], "path": "x-pack/plugins/ml/public/embeddables/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1381,6 +1472,7 @@ ], "path": "x-pack/plugins/ml/public/ui_actions/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1396,6 +1488,7 @@ ], "path": "x-pack/plugins/ml/public/application/components/data_grid/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1411,6 +1504,7 @@ ], "path": "x-pack/plugins/ml/public/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1434,6 +1528,7 @@ ], "path": "x-pack/plugins/ml/common/types/locator.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1450,6 +1545,7 @@ ], "path": "x-pack/plugins/ml/public/application/components/data_grid/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1465,7 +1561,8 @@ ") => void; }" ], "path": "x-pack/plugins/ml/public/application/components/data_grid/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1488,6 +1585,7 @@ ], "path": "x-pack/plugins/ml/common/types/es_client.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1502,6 +1600,7 @@ ], "path": "x-pack/plugins/ml/common/constants/locator.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1519,6 +1618,7 @@ ], "path": "x-pack/plugins/ml/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -1544,6 +1644,7 @@ ], "path": "x-pack/plugins/ml/server/lib/capabilities/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -1557,6 +1658,7 @@ ], "path": "x-pack/plugins/ml/server/lib/capabilities/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -1570,6 +1672,7 @@ ], "path": "x-pack/plugins/ml/server/lib/capabilities/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1597,6 +1700,7 @@ ], "path": "x-pack/plugins/ml/server/lib/capabilities/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -1610,6 +1714,7 @@ ], "path": "x-pack/plugins/ml/server/lib/capabilities/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -1623,6 +1728,7 @@ ], "path": "x-pack/plugins/ml/server/lib/capabilities/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1650,6 +1756,7 @@ ], "path": "x-pack/plugins/ml/server/lib/capabilities/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -1663,6 +1770,7 @@ ], "path": "x-pack/plugins/ml/server/lib/capabilities/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -1676,6 +1784,7 @@ ], "path": "x-pack/plugins/ml/server/lib/capabilities/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1698,6 +1807,7 @@ ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -1709,7 +1819,8 @@ "\nThe start time of the interval for which the anomaly data in the table is being aggregated.\nAnomalies in the table are commonly aggregated by day, hour, or at the bucket span of the job." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1724,7 +1835,8 @@ "AnomalyRecordDoc" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1736,7 +1848,8 @@ "\nUnique identifier for the table row." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1748,7 +1861,8 @@ "\nIdentifier for the anomaly detection job." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1760,7 +1874,8 @@ "\nA unique identifier for the detector.\nThis identifier is based on the order of the detectors in the analysis configuration, starting at zero." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1772,7 +1887,8 @@ "\nSeverity of the anomaly displaying the anomaly record_score, a normalized score between 0-100,\nwhich is based on the probability of the anomalousness of this record." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1787,7 +1903,8 @@ "string | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1802,7 +1919,8 @@ "any" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1817,7 +1935,8 @@ "{ [key: string]: any; }[] | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1832,7 +1951,8 @@ "number[] | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1847,7 +1967,8 @@ "any" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1862,7 +1983,8 @@ "number[] | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1877,7 +1999,8 @@ "any" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1892,7 +2015,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1908,7 +2032,8 @@ "[] | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1923,7 +2048,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1938,7 +2064,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1954,6 +2081,7 @@ ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -1968,7 +2096,8 @@ "[key: string]: any" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1980,7 +2109,8 @@ "\nThe identifier for the anomaly detection job." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -1992,7 +2122,8 @@ "\nThe type of the result document, which is 'record' for record level results." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2004,7 +2135,8 @@ "\nThe probability of the individual anomaly occurring, in the range 0 to 1.\nThis value can be held to a high precision of over 300 decimal places,\nso the record_score is provided as a human-readable and friendly interpretation of this." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2016,7 +2148,8 @@ "\nA normalized score between 0-100, which is based on the probability of the anomalousness of this record.\nUnlike initial_record_score, this value will be updated by a re-normalization process as new data is analyzed." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2028,7 +2161,8 @@ "\nA normalized score between 0-100, which is based on the probability of the anomalousness of this record.\nThis is the initial value that was calculated at the time the bucket was processed." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2040,7 +2174,8 @@ "\nThe length of the bucket in seconds. This value matches the bucket_span that is specified in the job." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2052,7 +2187,8 @@ "\nA unique identifier for the detector. This identifier is based on the order of the detectors\nin the analysis configuration, starting at zero." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2064,7 +2200,8 @@ "\nIf true, this is an interim result. In other words, the results are calculated based on partial input data." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2076,7 +2213,8 @@ "\nThe start time of the bucket for which these results were calculated." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2091,7 +2229,8 @@ "string | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2106,7 +2245,8 @@ "string | number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2118,7 +2258,8 @@ "\nThe function in which the anomaly occurs, as specified in the detector configuration. For example, max." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2130,7 +2271,8 @@ "\nThe description of the function in which the anomaly occurs, as specified in the detector configuration." ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2145,7 +2287,8 @@ "string | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2160,7 +2303,8 @@ "number[] | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2175,7 +2319,8 @@ "number[] | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2191,7 +2336,8 @@ "[] | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2206,7 +2352,8 @@ "string | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2221,7 +2368,8 @@ "string | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2236,7 +2384,8 @@ "string | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2251,7 +2400,8 @@ "string | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2266,7 +2416,8 @@ "{ function: string; function_description: string; probability: number; actual: number[]; typical: number[]; field_name?: string | undefined; over_field_name?: string | undefined; over_field_value?: string | undefined; by_field_name?: string | undefined; by_field_value?: string | undefined; partition_field_name?: string | undefined; partition_field_value?: string | number | undefined; }[] | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2281,7 +2432,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2297,6 +2449,7 @@ ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -2308,7 +2461,8 @@ "\nThe identifier for the anomaly detection job." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2320,7 +2474,8 @@ "\nA description of the job." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2335,7 +2490,8 @@ "string[]" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2350,7 +2506,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2365,7 +2522,8 @@ "string | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2382,7 +2540,8 @@ "JobActionState" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2397,7 +2556,8 @@ "string[]" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2409,7 +2569,8 @@ "\nFlag indicating whether a datafeed exists for the job." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2421,7 +2582,8 @@ "\nThe identifier for the datafeed." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2433,7 +2595,8 @@ "\nThe status of the datafeed." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2448,7 +2611,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2463,7 +2627,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2478,7 +2643,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2494,7 +2660,8 @@ " | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2509,7 +2676,8 @@ "string | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2526,7 +2694,8 @@ "> | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2538,7 +2707,8 @@ "\nFlag indicating whether results of the job can be viewed in the Single Metric Viewer." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2553,7 +2723,8 @@ "string | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2569,7 +2740,8 @@ " | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2584,7 +2756,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2599,7 +2772,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2611,7 +2785,8 @@ "\nIndicates whether the job is currently awaiting assignment to a node before opening." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2627,7 +2802,8 @@ "[] | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2642,7 +2818,8 @@ "{ [x: string]: string; }" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2654,7 +2831,8 @@ "\nThe size of the interval that the analysis is aggregated into, typically between 5m and 1h." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -2669,7 +2847,8 @@ "any" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2691,6 +2870,7 @@ ], "path": "x-pack/plugins/ml/common/types/anomalies.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2705,6 +2885,7 @@ ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/datafeed_stats.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2719,6 +2900,7 @@ ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/job.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2735,6 +2917,7 @@ ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -2766,6 +2949,7 @@ ], "path": "x-pack/plugins/ml/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "setup", "initialIsOpen": true }, @@ -2781,6 +2965,7 @@ ], "path": "x-pack/plugins/ml/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -2802,6 +2987,7 @@ ], "path": "x-pack/plugins/ml/common/util/validators.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -2815,6 +3001,7 @@ ], "path": "x-pack/plugins/ml/common/util/validators.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2835,6 +3022,7 @@ ], "path": "x-pack/plugins/ml/common/util/errors/process_errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -2848,6 +3036,7 @@ ], "path": "x-pack/plugins/ml/common/util/errors/process_errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2867,6 +3056,7 @@ ], "path": "x-pack/plugins/ml/common/types/capabilities.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -2885,6 +3075,7 @@ ], "path": "x-pack/plugins/ml/common/util/anomaly_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -2900,6 +3091,7 @@ ], "path": "x-pack/plugins/ml/common/util/anomaly_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2927,6 +3119,7 @@ ], "path": "x-pack/plugins/ml/common/util/anomaly_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -2942,6 +3135,7 @@ ], "path": "x-pack/plugins/ml/common/util/anomaly_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2960,6 +3154,7 @@ ], "path": "x-pack/plugins/ml/common/util/runtime_field_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -2973,6 +3168,7 @@ ], "path": "x-pack/plugins/ml/common/util/runtime_field_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2991,6 +3187,7 @@ ], "path": "x-pack/plugins/ml/common/util/runtime_field_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -3004,6 +3201,7 @@ ], "path": "x-pack/plugins/ml/common/util/runtime_field_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3024,6 +3222,7 @@ ], "path": "x-pack/plugins/ml/common/util/validators.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -3037,6 +3236,7 @@ ], "path": "x-pack/plugins/ml/common/util/validators.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3056,6 +3256,7 @@ ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -3067,7 +3268,8 @@ "\nThe identifier for the anomaly detection job." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3079,7 +3281,8 @@ "\nA description of the job." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3094,7 +3297,8 @@ "string[]" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3109,7 +3313,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3124,7 +3329,8 @@ "string | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3141,7 +3347,8 @@ "JobActionState" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3156,7 +3363,8 @@ "string[]" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3168,7 +3376,8 @@ "\nFlag indicating whether a datafeed exists for the job." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3180,7 +3389,8 @@ "\nThe identifier for the datafeed." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3192,7 +3402,8 @@ "\nThe status of the datafeed." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3207,7 +3418,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3222,7 +3434,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3237,7 +3450,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3253,7 +3467,8 @@ " | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3268,7 +3483,8 @@ "string | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3285,7 +3501,8 @@ "> | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3297,7 +3514,8 @@ "\nFlag indicating whether results of the job can be viewed in the Single Metric Viewer." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3312,7 +3530,8 @@ "string | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3328,7 +3547,8 @@ " | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3343,7 +3563,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3358,7 +3579,8 @@ "number | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3370,7 +3592,8 @@ "\nIndicates whether the job is currently awaiting assignment to a node before opening." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3386,7 +3609,8 @@ "[] | undefined" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3401,7 +3625,8 @@ "{ [x: string]: string; }" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3413,7 +3638,8 @@ "\nThe size of the interval that the analysis is aggregated into, typically between 5m and 1h." ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3428,7 +3654,8 @@ "any" ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3446,6 +3673,7 @@ ], "path": "x-pack/plugins/ml/common/constants/anomalies.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3459,6 +3687,7 @@ ], "path": "x-pack/plugins/ml/common/constants/anomalies.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3472,6 +3701,7 @@ ], "path": "x-pack/plugins/ml/common/constants/states.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3485,6 +3715,7 @@ ], "path": "x-pack/plugins/ml/common/constants/states.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3505,6 +3736,7 @@ ], "path": "x-pack/plugins/ml/common/types/field_histograms.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3523,6 +3755,7 @@ ], "path": "x-pack/plugins/ml/common/types/fields.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3545,6 +3778,7 @@ ], "path": "x-pack/plugins/ml/common/constants/anomalies.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3561,6 +3795,7 @@ ], "path": "x-pack/plugins/ml/common/types/anomaly_detection_jobs/summary_job.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3581,6 +3816,7 @@ ], "path": "x-pack/plugins/ml/common/types/es_client.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3594,6 +3830,7 @@ ], "path": "x-pack/plugins/ml/common/constants/anomalies.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ml", @@ -3605,7 +3842,8 @@ "/**\n * Color used in the UI to indicate a critical anomaly, with a score greater than or equal to 75.\n */" ], "path": "x-pack/plugins/ml/common/constants/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3617,7 +3855,8 @@ "/**\n * Color used in the UI to indicate a major anomaly, with a score greater than or equal to 50 and less than 75 .\n */" ], "path": "x-pack/plugins/ml/common/constants/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3629,7 +3868,8 @@ "/**\n * Color used in the UI to indicate a minor anomaly, with a score greater than or equal to 25 and less than 50.\n */" ], "path": "x-pack/plugins/ml/common/constants/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3641,7 +3881,8 @@ "/**\n * Color used in the UI to indicate a warning anomaly, with a score greater than or equal to 3 and less than 25.\n * Note in some parts of the UI, warning severity is used when the score is greater than or equal to 0.\n */" ], "path": "x-pack/plugins/ml/common/constants/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3653,7 +3894,8 @@ "/**\n * Color used in some parts of the UI to indicate a low severity anomaly, with a score greater than or equal to 0 and less than 3.\n */" ], "path": "x-pack/plugins/ml/common/constants/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ml", @@ -3665,7 +3907,8 @@ "/**\n * Color used in the UI to indicate an anomaly for which the score is unknown.\n */" ], "path": "x-pack/plugins/ml/common/constants/anomalies.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/ml.mdx b/api_docs/ml.mdx index 5db609bd87d0b..a97b25d34c3b1 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ml'] --- import mlObj from './ml.devdocs.json'; diff --git a/api_docs/monitoring.devdocs.json b/api_docs/monitoring.devdocs.json index 062040d8a3490..64ac00cd99ad1 100644 --- a/api_docs/monitoring.devdocs.json +++ b/api_docs/monitoring.devdocs.json @@ -21,6 +21,7 @@ "description": [], "path": "x-pack/plugins/monitoring/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "monitoring", @@ -34,6 +35,7 @@ ], "path": "x-pack/plugins/monitoring/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -49,6 +51,7 @@ ], "path": "x-pack/plugins/monitoring/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -66,6 +69,7 @@ ], "path": "x-pack/plugins/monitoring/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "monitoring", @@ -79,6 +83,7 @@ ], "path": "x-pack/plugins/monitoring/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -96,6 +101,7 @@ ], "path": "x-pack/plugins/monitoring/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -123,6 +129,7 @@ ], "path": "x-pack/plugins/monitoring/server/config.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "monitoring", @@ -137,7 +144,8 @@ "MonitoringConfigTypeOverriddenUIElasticsearch" ], "path": "x-pack/plugins/monitoring/server/config.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -165,6 +173,7 @@ ], "path": "x-pack/plugins/monitoring/server/kibana_monitoring/collectors/get_settings_collector.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -178,6 +187,7 @@ "description": [], "path": "x-pack/plugins/monitoring/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "monitoring", @@ -191,6 +201,7 @@ ], "path": "x-pack/plugins/monitoring/server/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/monitoring.mdx b/api_docs/monitoring.mdx index 4e4bad6bf5c87..61c9858dabfd4 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'monitoring'] --- import monitoringObj from './monitoring.devdocs.json'; diff --git a/api_docs/monitoring_collection.devdocs.json b/api_docs/monitoring_collection.devdocs.json index 00992e0736f7f..dd6b8b549fecf 100644 --- a/api_docs/monitoring_collection.devdocs.json +++ b/api_docs/monitoring_collection.devdocs.json @@ -31,6 +31,7 @@ ], "path": "x-pack/plugins/monitoring_collection/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "monitoringCollection", @@ -40,7 +41,8 @@ "label": "type", "description": [], "path": "x-pack/plugins/monitoring_collection/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "monitoringCollection", @@ -57,7 +59,8 @@ "[Key]>; }" ], "path": "x-pack/plugins/monitoring_collection/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "monitoringCollection", @@ -87,6 +90,7 @@ ], "path": "x-pack/plugins/monitoring_collection/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -109,6 +113,7 @@ ], "path": "x-pack/plugins/monitoring_collection/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -123,6 +128,7 @@ ], "path": "x-pack/plugins/monitoring_collection/server/config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -136,6 +142,7 @@ "description": [], "path": "x-pack/plugins/monitoring_collection/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "monitoringCollection", @@ -157,6 +164,7 @@ ], "path": "x-pack/plugins/monitoring_collection/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "monitoringCollection", @@ -177,6 +185,7 @@ ], "path": "x-pack/plugins/monitoring_collection/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/monitoring_collection.mdx b/api_docs/monitoring_collection.mdx index ea699661c7b36..1c108a0ab43d8 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'monitoringCollection'] --- import monitoringCollectionObj from './monitoring_collection.devdocs.json'; diff --git a/api_docs/navigation.devdocs.json b/api_docs/navigation.devdocs.json index 2e6c408e26aca..126d56260f8a3 100644 --- a/api_docs/navigation.devdocs.json +++ b/api_docs/navigation.devdocs.json @@ -45,6 +45,7 @@ ], "path": "src/plugins/navigation/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "navigation", @@ -58,6 +59,7 @@ ], "path": "src/plugins/navigation/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "navigation", @@ -78,6 +80,7 @@ ], "path": "src/plugins/navigation/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -110,6 +113,7 @@ ], "path": "src/plugins/navigation/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "navigation", @@ -130,6 +134,7 @@ ], "path": "src/plugins/navigation/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -164,6 +169,7 @@ ], "path": "src/plugins/navigation/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "navigation", @@ -183,6 +189,7 @@ ], "path": "src/plugins/navigation/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -197,6 +204,7 @@ ], "path": "src/plugins/navigation/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -214,6 +222,7 @@ ], "path": "src/plugins/navigation/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -242,6 +251,7 @@ ], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "navigation", @@ -262,6 +272,7 @@ ], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -279,6 +290,7 @@ "description": [], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu_data.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "navigation", @@ -291,7 +303,8 @@ "string | undefined" ], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu_data.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "navigation", @@ -301,7 +314,8 @@ "label": "label", "description": [], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu_data.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "navigation", @@ -315,6 +329,7 @@ ], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu_data.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -328,7 +343,8 @@ "HTMLElement" ], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu_data.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -343,7 +359,8 @@ "string | undefined" ], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu_data.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "navigation", @@ -356,7 +373,8 @@ "string | undefined" ], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu_data.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "navigation", @@ -369,7 +387,8 @@ "string | undefined" ], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu_data.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "navigation", @@ -382,7 +401,8 @@ "boolean | (() => boolean) | undefined" ], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu_data.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "navigation", @@ -395,7 +415,8 @@ "string | (() => string | undefined) | undefined" ], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu_data.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "navigation", @@ -558,7 +579,8 @@ "<{ tooltipContent: React.ReactNode; title?: string | undefined; }, { title: string; tooltipContent?: React.ReactNode; }> & { title: string; tooltipContent?: React.ReactNode; } & { label: React.ReactNode; }) | undefined" ], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu_data.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "navigation", @@ -571,7 +593,8 @@ "boolean | undefined" ], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu_data.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "navigation", @@ -584,7 +607,8 @@ "boolean | undefined" ], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu_data.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "navigation", @@ -597,7 +621,8 @@ "string | undefined" ], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu_data.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "navigation", @@ -611,7 +636,8 @@ " | undefined" ], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu_data.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "navigation", @@ -624,7 +650,8 @@ "string | undefined" ], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu_data.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "navigation", @@ -637,7 +664,8 @@ "string | undefined" ], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu_data.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -686,6 +714,7 @@ ], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -699,6 +728,7 @@ "description": [], "path": "src/plugins/navigation/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "navigation", @@ -714,6 +744,7 @@ ], "path": "src/plugins/navigation/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -727,7 +758,8 @@ "RegisteredTopNavMenuData" ], "path": "src/plugins/navigation/public/top_nav_menu/top_nav_menu_extensions_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -744,6 +776,7 @@ "description": [], "path": "src/plugins/navigation/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "navigation", @@ -776,7 +809,8 @@ ">) => React.ReactElement>; }" ], "path": "src/plugins/navigation/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", diff --git a/api_docs/navigation.mdx b/api_docs/navigation.mdx index 87341a3ab0b57..d54a3cbd58486 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'navigation'] --- import navigationObj from './navigation.devdocs.json'; diff --git a/api_docs/newsfeed.devdocs.json b/api_docs/newsfeed.devdocs.json index f2e87c104c25e..fa239f7ccc9e7 100644 --- a/api_docs/newsfeed.devdocs.json +++ b/api_docs/newsfeed.devdocs.json @@ -13,6 +13,7 @@ "description": [], "path": "src/plugins/newsfeed/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "newsfeed", @@ -22,7 +23,8 @@ "label": "kibanaVersion", "description": [], "path": "src/plugins/newsfeed/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "newsfeed", @@ -32,7 +34,8 @@ "label": "hasNew", "description": [], "path": "src/plugins/newsfeed/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "newsfeed", @@ -52,7 +55,8 @@ "[]" ], "path": "src/plugins/newsfeed/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "newsfeed", @@ -65,7 +69,8 @@ "Error | null" ], "path": "src/plugins/newsfeed/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -79,6 +84,7 @@ "description": [], "path": "src/plugins/newsfeed/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "newsfeed", @@ -88,7 +94,8 @@ "label": "title", "description": [], "path": "src/plugins/newsfeed/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "newsfeed", @@ -98,7 +105,8 @@ "label": "description", "description": [], "path": "src/plugins/newsfeed/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "newsfeed", @@ -111,7 +119,8 @@ "string | null" ], "path": "src/plugins/newsfeed/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "newsfeed", @@ -121,7 +130,8 @@ "label": "linkUrl", "description": [], "path": "src/plugins/newsfeed/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "newsfeed", @@ -134,7 +144,8 @@ "string | null" ], "path": "src/plugins/newsfeed/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "newsfeed", @@ -147,7 +158,8 @@ "moment.Moment" ], "path": "src/plugins/newsfeed/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "newsfeed", @@ -160,7 +172,8 @@ "moment.Moment" ], "path": "src/plugins/newsfeed/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "newsfeed", @@ -170,7 +183,8 @@ "label": "hash", "description": [], "path": "src/plugins/newsfeed/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -186,6 +200,7 @@ "description": [], "path": "src/plugins/newsfeed/public/lib/api.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -203,6 +218,7 @@ ], "path": "src/plugins/newsfeed/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "lifecycle": "setup", "initialIsOpen": true }, @@ -236,6 +252,7 @@ ], "path": "src/plugins/newsfeed/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } diff --git a/api_docs/newsfeed.mdx b/api_docs/newsfeed.mdx index f29d5f5b672d9..5bcbade38769b 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'newsfeed'] --- import newsfeedObj from './newsfeed.devdocs.json'; diff --git a/api_docs/observability.devdocs.json b/api_docs/observability.devdocs.json index 514e9d2af0390..680c70e75c060 100644 --- a/api_docs/observability.devdocs.json +++ b/api_docs/observability.devdocs.json @@ -15,6 +15,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/action_menu/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -28,6 +29,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/action_menu/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -46,6 +48,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/action_menu/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -62,6 +65,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_es_search.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -75,6 +79,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_es_search.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -103,6 +108,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/exploratory_view_url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -113,6 +119,7 @@ "description": [], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/exploratory_view_url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -125,7 +132,8 @@ "\"data-distribution\" | \"kpi-over-time\" | \"core-web-vitals\" | \"device-data-distribution\" | \"single-metric\"" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/exploratory_view_url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -145,7 +153,8 @@ "[]" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/exploratory_view_url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -161,6 +170,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/exploratory_view_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -175,6 +185,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/exploratory_view_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -209,6 +220,7 @@ ], "path": "x-pack/plugins/observability/public/rules/observability_rule_type_registry_mock.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -228,6 +240,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/create_use_rules_link.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -246,6 +259,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -259,6 +273,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -277,6 +292,7 @@ ], "path": "x-pack/plugins/observability/public/context/date_picker_context.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -287,6 +303,7 @@ "description": [], "path": "x-pack/plugins/observability/public/context/date_picker_context.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -299,7 +316,8 @@ "React.ReactElement>" ], "path": "x-pack/plugins/observability/public/context/date_picker_context.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -321,6 +339,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -334,6 +353,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -352,6 +372,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/contexts/exploratory_view_config.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -365,6 +386,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/contexts/exploratory_view_config.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -385,6 +407,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -398,6 +421,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -418,6 +442,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -431,6 +456,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -451,6 +477,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -464,6 +491,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -482,6 +510,7 @@ ], "path": "x-pack/plugins/observability/public/utils/url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -495,6 +524,7 @@ ], "path": "x-pack/plugins/observability/public/utils/url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -513,6 +543,7 @@ ], "path": "x-pack/plugins/observability/public/utils/get_apm_trace_url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -523,6 +554,7 @@ "description": [], "path": "x-pack/plugins/observability/public/utils/get_apm_trace_url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -532,7 +564,8 @@ "label": "traceId", "description": [], "path": "x-pack/plugins/observability/public/utils/get_apm_trace_url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -542,7 +575,8 @@ "label": "rangeFrom", "description": [], "path": "x-pack/plugins/observability/public/utils/get_apm_trace_url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -552,7 +586,8 @@ "label": "rangeTo", "description": [], "path": "x-pack/plugins/observability/public/utils/get_apm_trace_url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -574,6 +609,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -587,6 +623,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -607,6 +644,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -620,6 +658,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -638,6 +677,7 @@ ], "path": "x-pack/plugins/observability/public/context/inspector/inspector_context.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -648,6 +688,7 @@ "description": [], "path": "x-pack/plugins/observability/public/context/inspector/inspector_context.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -660,7 +701,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "x-pack/plugins/observability/public/context/inspector/inspector_context.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -704,6 +746,7 @@ ], "path": "x-pack/plugins/observability/public/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -717,7 +760,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -734,6 +778,7 @@ ], "path": "x-pack/plugins/observability/public/utils/navigation_warning_prompt/context.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -747,6 +792,7 @@ ], "path": "x-pack/plugins/observability/public/utils/navigation_warning_prompt/context.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -765,6 +811,7 @@ ], "path": "x-pack/plugins/observability/public/utils/navigation_warning_prompt/prompt.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -778,6 +825,7 @@ ], "path": "x-pack/plugins/observability/public/utils/navigation_warning_prompt/prompt.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -800,6 +848,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/action_menu/index.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -816,6 +865,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/action_menu/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -829,6 +879,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/action_menu/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -851,6 +902,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/action_menu/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -868,6 +920,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/action_menu/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -886,6 +939,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/action_menu/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -902,6 +956,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/action_menu/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -912,6 +967,7 @@ "description": [], "path": "x-pack/plugins/observability/public/components/shared/action_menu/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -924,7 +980,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/action_menu/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -944,6 +1001,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/action_menu/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -954,6 +1012,7 @@ "description": [], "path": "x-pack/plugins/observability/public/components/shared/action_menu/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -966,7 +1025,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/action_menu/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -988,6 +1048,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1001,6 +1062,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1019,6 +1081,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_link_props.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1032,6 +1095,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_link_props.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1052,6 +1116,7 @@ ], "path": "x-pack/plugins/observability/public/utils/url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1065,6 +1130,7 @@ ], "path": "x-pack/plugins/observability/public/utils/url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1085,6 +1151,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_breadcrumbs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1099,6 +1166,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_breadcrumbs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1110,6 +1178,7 @@ "description": [], "path": "x-pack/plugins/observability/public/hooks/use_breadcrumbs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1119,7 +1188,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/observability/public/hooks/use_breadcrumbs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -1129,7 +1199,8 @@ "label": "label", "description": [], "path": "x-pack/plugins/observability/public/hooks/use_breadcrumbs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1153,6 +1224,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_chart_theme.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -1181,6 +1253,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_es_search.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1194,6 +1267,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_es_search.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1208,6 +1282,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_es_search.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1219,6 +1294,7 @@ "description": [], "path": "x-pack/plugins/observability/public/hooks/use_es_search.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1238,7 +1314,8 @@ " | undefined" ], "path": "x-pack/plugins/observability/public/hooks/use_es_search.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -1248,7 +1325,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/observability/public/hooks/use_es_search.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1270,6 +1348,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_fetcher.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1283,6 +1362,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_fetcher.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1297,6 +1377,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_fetcher.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1308,6 +1389,7 @@ "description": [], "path": "x-pack/plugins/observability/public/hooks/use_fetcher.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1320,7 +1402,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/observability/public/hooks/use_fetcher.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1341,6 +1424,7 @@ ], "path": "x-pack/plugins/observability/public/context/inspector/use_inspector_context.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -1368,6 +1452,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_link_props.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1387,6 +1472,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_link_props.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1401,6 +1487,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_link_props.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1426,6 +1513,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_theme.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -1450,6 +1538,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_track_metric.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1469,6 +1558,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_track_metric.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1483,6 +1573,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_track_metric.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1501,6 +1592,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_track_metric.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1514,6 +1606,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_track_metric.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1528,6 +1621,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_track_metric.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1549,6 +1643,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_track_metric.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1559,6 +1654,7 @@ "description": [], "path": "x-pack/plugins/observability/public/hooks/use_track_metric.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1572,7 +1668,8 @@ " | undefined" ], "path": "x-pack/plugins/observability/public/hooks/use_track_metric.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1608,6 +1705,7 @@ ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1636,7 +1734,8 @@ "; }" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -1657,7 +1756,8 @@ "; }" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1671,6 +1771,7 @@ "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1680,7 +1781,8 @@ "label": "hasData", "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -1693,7 +1795,8 @@ "ApmIndicesConfig" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1707,6 +1810,7 @@ "description": [], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1726,7 +1830,8 @@ " | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -1746,7 +1851,8 @@ " | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1760,6 +1866,7 @@ "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1769,7 +1876,8 @@ "label": "x", "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -1782,7 +1890,8 @@ "number | null | undefined" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1806,6 +1915,7 @@ ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1835,6 +1945,7 @@ ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1854,7 +1965,8 @@ } ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1886,6 +1998,7 @@ ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1906,7 +2019,8 @@ " | undefined" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1922,6 +2036,7 @@ "description": [], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -1934,7 +2049,8 @@ "\"observability\" | \"securitySolutionUI\" | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -1947,7 +2063,8 @@ "JSX.Element | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -1967,7 +2084,8 @@ " | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -1987,7 +2105,8 @@ " | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2000,7 +2119,8 @@ "string | number | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2013,7 +2133,8 @@ "any" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2026,7 +2147,8 @@ "{ from: string; to: string; } | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2041,7 +2163,8 @@ ", string>> | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2054,7 +2177,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2067,7 +2191,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2081,7 +2206,8 @@ " | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2094,7 +2220,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2108,6 +2235,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -2118,6 +2246,7 @@ "description": [], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -2130,7 +2259,8 @@ "number[]" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2148,7 +2278,8 @@ "string | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2162,7 +2293,8 @@ " | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2175,7 +2307,8 @@ "\"data-distribution\" | \"kpi-over-time\" | \"core-web-vitals\" | \"device-data-distribution\" | \"single-metric\"" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2188,7 +2321,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2202,7 +2336,8 @@ " | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2215,7 +2350,8 @@ "string | JSX.Element | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2230,7 +2366,8 @@ "[] | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2243,7 +2380,8 @@ "\"left\" | \"right\" | \"center\" | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/embeddable/embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2257,6 +2395,7 @@ "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -2269,7 +2408,8 @@ "{ start: number; end: number; }" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2282,7 +2422,8 @@ "{ start: string; end: string; }" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2295,7 +2436,8 @@ "string | undefined" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2305,7 +2447,8 @@ "label": "bucketSize", "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2315,7 +2458,8 @@ "label": "intervalString", "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2329,6 +2473,7 @@ "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -2338,7 +2483,8 @@ "label": "appLink", "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2352,6 +2498,7 @@ "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -2364,7 +2511,8 @@ "{ start: number; end: number; }" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2378,6 +2526,7 @@ "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -2387,7 +2536,8 @@ "label": "hasData", "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2401,6 +2551,7 @@ "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -2410,7 +2561,8 @@ "label": "hasData", "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2420,7 +2572,8 @@ "label": "indices", "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2434,6 +2587,7 @@ "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -2443,7 +2597,8 @@ "label": "hasData", "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2453,7 +2608,8 @@ "label": "indices", "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2467,6 +2623,7 @@ "description": [], "path": "x-pack/plugins/observability/public/hooks/use_link_props.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -2476,7 +2633,8 @@ "label": "app", "description": [], "path": "x-pack/plugins/observability/public/hooks/use_link_props.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2489,7 +2647,8 @@ "string | undefined" ], "path": "x-pack/plugins/observability/public/hooks/use_link_props.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2502,7 +2661,8 @@ "string | undefined" ], "path": "x-pack/plugins/observability/public/hooks/use_link_props.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2515,7 +2675,8 @@ "Search | undefined" ], "path": "x-pack/plugins/observability/public/hooks/use_link_props.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2546,6 +2707,7 @@ ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -2566,7 +2728,8 @@ " & { label: string; }; }" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2587,7 +2750,8 @@ " & { label: string; }; }" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2618,6 +2782,7 @@ ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -2639,6 +2804,7 @@ ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -2652,6 +2818,7 @@ ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2666,6 +2833,7 @@ ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2689,7 +2857,8 @@ "[]" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2703,6 +2872,7 @@ "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -2712,7 +2882,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2725,7 +2896,8 @@ "string | null" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2738,7 +2910,8 @@ "string | null" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2751,7 +2924,8 @@ "string | null" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2764,7 +2938,8 @@ "number | null" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2777,7 +2952,8 @@ "number | null" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2790,7 +2966,8 @@ "number | null" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2803,7 +2980,8 @@ "number | null" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2816,7 +2994,8 @@ "number | null" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2829,7 +3008,8 @@ "number | null" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2882,7 +3062,8 @@ "; }[]" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2896,6 +3077,7 @@ "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -2914,7 +3096,8 @@ } ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2933,7 +3116,8 @@ } ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2952,7 +3136,8 @@ } ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2971,7 +3156,8 @@ } ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -2990,7 +3176,8 @@ } ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3004,6 +3191,7 @@ "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -3022,7 +3210,8 @@ } ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3041,7 +3230,8 @@ } ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3060,7 +3250,8 @@ } ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3079,7 +3270,8 @@ } ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3098,7 +3290,8 @@ } ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3112,6 +3305,7 @@ "description": [], "path": "x-pack/plugins/observability/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -3130,7 +3324,8 @@ } ], "path": "x-pack/plugins/observability/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3149,7 +3344,8 @@ } ], "path": "x-pack/plugins/observability/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3169,7 +3365,8 @@ " | undefined" ], "path": "x-pack/plugins/observability/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3188,7 +3385,8 @@ } ], "path": "x-pack/plugins/observability/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3202,6 +3400,7 @@ "description": [], "path": "x-pack/plugins/observability/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -3220,7 +3419,8 @@ } ], "path": "x-pack/plugins/observability/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3239,7 +3439,8 @@ } ], "path": "x-pack/plugins/observability/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3258,7 +3459,8 @@ } ], "path": "x-pack/plugins/observability/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3278,7 +3480,8 @@ " | undefined" ], "path": "x-pack/plugins/observability/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3297,7 +3500,8 @@ } ], "path": "x-pack/plugins/observability/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3316,7 +3520,8 @@ } ], "path": "x-pack/plugins/observability/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3335,7 +3540,8 @@ } ], "path": "x-pack/plugins/observability/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3354,7 +3560,8 @@ } ], "path": "x-pack/plugins/observability/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3373,7 +3580,8 @@ } ], "path": "x-pack/plugins/observability/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3434,7 +3642,8 @@ ">) => void; has: (id: string) => boolean; }" ], "path": "x-pack/plugins/observability/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3453,7 +3662,8 @@ ") => void; has: (id: string) => boolean; }" ], "path": "x-pack/plugins/observability/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3472,7 +3682,8 @@ } ], "path": "x-pack/plugins/observability/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3504,6 +3715,7 @@ ], "path": "x-pack/plugins/observability/public/rules/create_observability_rule_type_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -3521,6 +3733,7 @@ ], "path": "x-pack/plugins/observability/public/rules/create_observability_rule_type_registry.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3538,7 +3751,8 @@ ", denominator: number | undefined, fallbackResult?: string) => string; }; }" ], "path": "x-pack/plugins/observability/public/rules/create_observability_rule_type_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -3554,6 +3768,7 @@ "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -3573,7 +3788,8 @@ "[]" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3587,6 +3803,7 @@ "description": [], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -3596,7 +3813,8 @@ "label": "reportType", "description": [], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3625,7 +3843,8 @@ ">" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3646,7 +3865,8 @@ ">[]" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3659,7 +3879,8 @@ "string[]" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3672,7 +3893,8 @@ "\"bar\" | \"line\" | \"area\" | \"bar_stacked\" | \"area_stacked\" | \"bar_horizontal\" | \"bar_percentage_stacked\" | \"bar_horizontal_stacked\" | \"area_percentage_stacked\" | \"bar_horizontal_percentage_stacked\"" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3685,7 +3907,8 @@ "(string | { field: string; nested?: string | undefined; isNegated?: boolean | undefined; })[]" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3705,7 +3928,8 @@ "[]" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3730,7 +3954,8 @@ ")[] | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3755,7 +3980,8 @@ ")[] | undefined; })[]" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3768,7 +3994,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3782,7 +4009,8 @@ "[] | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3795,7 +4023,8 @@ "{ [x: string]: string; }" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3805,7 +4034,8 @@ "label": "hasOperationType", "description": [], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3819,7 +4049,8 @@ "<{ [key: string]: unknown; }> | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3832,7 +4063,8 @@ "string | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3852,7 +4084,8 @@ "[] | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3865,7 +4098,8 @@ "{ query: string; language: \"kuery\"; } | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3879,6 +4113,7 @@ "description": [], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -3888,7 +4123,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3901,7 +4137,8 @@ "{ to: string; from: string; }" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3914,7 +4151,8 @@ "string | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3934,7 +4172,8 @@ "[] | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3954,7 +4193,8 @@ " | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3967,7 +4207,8 @@ "string | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3980,7 +4221,8 @@ "\"mobile\" | \"apm\" | \"synthetics\" | \"ux\" | \"infra_logs\" | \"infra_metrics\"" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -3994,7 +4236,8 @@ " | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4008,7 +4251,8 @@ " | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4021,7 +4265,8 @@ "string | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4034,7 +4279,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4047,7 +4293,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4060,7 +4307,8 @@ "string | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4074,6 +4322,7 @@ "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -4086,7 +4335,8 @@ "\"number\" | \"percent\" | \"bytesPerSecond\"" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4096,7 +4346,8 @@ "label": "value", "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4127,6 +4378,7 @@ ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -4136,7 +4388,8 @@ "label": "indices", "description": [], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4167,6 +4420,7 @@ ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -4203,7 +4457,8 @@ "; }" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4232,7 +4487,8 @@ "; }" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4246,6 +4502,7 @@ "description": [], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -4255,7 +4512,8 @@ "label": "field", "description": [], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4268,7 +4526,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4281,7 +4540,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4294,7 +4554,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4307,7 +4568,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4338,6 +4600,7 @@ ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -4356,7 +4619,8 @@ } ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4387,6 +4651,7 @@ ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -4399,7 +4664,8 @@ "string | number | undefined" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4412,7 +4678,8 @@ "string | undefined" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4426,6 +4693,7 @@ "description": [], "path": "x-pack/plugins/observability/public/components/shared/core_web_vitals/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -4438,7 +4706,8 @@ "number | null" ], "path": "x-pack/plugins/observability/public/components/shared/core_web_vitals/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4451,7 +4720,8 @@ "number | null | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/core_web_vitals/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4464,7 +4734,8 @@ "number | null | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/core_web_vitals/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4474,7 +4745,8 @@ "label": "tbt", "description": [], "path": "x-pack/plugins/observability/public/components/shared/core_web_vitals/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4487,7 +4759,8 @@ "number | null | undefined" ], "path": "x-pack/plugins/observability/public/components/shared/core_web_vitals/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4497,7 +4770,8 @@ "label": "coreVitalPages", "description": [], "path": "x-pack/plugins/observability/public/components/shared/core_web_vitals/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4510,7 +4784,8 @@ "number[]" ], "path": "x-pack/plugins/observability/public/components/shared/core_web_vitals/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4523,7 +4798,8 @@ "number[]" ], "path": "x-pack/plugins/observability/public/components/shared/core_web_vitals/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -4536,7 +4812,8 @@ "number[]" ], "path": "x-pack/plugins/observability/public/components/shared/core_web_vitals/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4552,6 +4829,7 @@ "description": [], "path": "x-pack/plugins/observability/public/hooks/use_fetcher.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4566,6 +4844,7 @@ ], "path": "node_modules/@types/kbn__analytics/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4577,6 +4856,7 @@ "description": [], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/constants/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -4599,6 +4879,7 @@ ], "path": "x-pack/plugins/observability/public/context/inspector/inspector_context.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4617,7 +4898,8 @@ " | undefined; }>" ], "path": "x-pack/plugins/observability/public/context/inspector/inspector_context.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4634,6 +4916,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/constants/url_constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4655,6 +4938,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/hooks/use_series_storage.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4669,6 +4953,7 @@ ], "path": "x-pack/plugins/observability/common/ui_settings_keys.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4684,6 +4969,7 @@ ], "path": "x-pack/plugins/observability/public/typings/eui_draggable/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4698,6 +4984,7 @@ ], "path": "x-pack/plugins/observability/public/typings/eui_draggable/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4712,6 +4999,7 @@ ], "path": "x-pack/plugins/observability/common/ui_settings_keys.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4726,6 +5014,7 @@ ], "path": "x-pack/plugins/observability/common/ui_settings_keys.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4740,6 +5029,7 @@ ], "path": "x-pack/plugins/observability/common/ui_settings_keys.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4754,6 +5044,7 @@ ], "path": "x-pack/plugins/observability/common/ui_settings_keys.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4768,6 +5059,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/constants/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4790,6 +5082,7 @@ ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4809,7 +5102,8 @@ } ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4826,6 +5120,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/constants/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4856,6 +5151,7 @@ ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4876,7 +5172,8 @@ " | undefined" ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4891,10 +5188,15 @@ "signature": [ "Pick<", "KibanaPageTemplateProps", - ", \"children\" | \"data-test-subj\" | \"paddingSize\" | \"restrictWidth\" | \"template\" | \"noDataConfig\" | \"pageHeader\" | \"pageBodyProps\" | \"pageContentProps\" | \"pageContentBodyProps\" | \"isEmptyState\"> & { showSolutionNav?: boolean | undefined; isPageDataLoaded?: boolean | undefined; }" + ", \"children\" | \"data-test-subj\" | \"paddingSize\" | \"restrictWidth\" | \"noDataConfig\" | \"pageHeader\" | \"isEmptyState\"> & { showSolutionNav?: boolean | undefined; isPageDataLoaded?: boolean | undefined; pageSectionProps?: ", + "EuiPageSectionProps", + " | undefined; bottomBar?: React.ReactNode; bottomBarProps?: ", + "_EuiPageBottomBarProps", + " | undefined; }" ], "path": "x-pack/plugins/observability/public/components/shared/page_template/lazy_page_template.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4909,6 +5211,7 @@ ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4923,6 +5226,7 @@ ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4941,6 +5245,7 @@ ], "path": "x-pack/plugins/observability/public/rules/create_observability_rule_type_registry.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4958,7 +5263,8 @@ ", denominator: number | undefined, fallbackResult?: string) => string; }; }" ], "path": "x-pack/plugins/observability/public/rules/create_observability_rule_type_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4991,6 +5297,7 @@ ], "path": "x-pack/plugins/observability/public/rules/create_observability_rule_type_registry.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5005,6 +5312,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/constants/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5019,6 +5327,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/constants/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5033,6 +5342,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/constants/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5047,6 +5357,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/constants/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5084,6 +5395,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/action_menu/index.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5098,6 +5410,7 @@ ], "path": "x-pack/plugins/observability/public/typings/fetch_overview_data/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5112,6 +5425,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/constants/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5126,6 +5440,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_track_metric.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5148,6 +5463,7 @@ ], "path": "x-pack/plugins/observability/public/hooks/use_track_metric.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -5161,7 +5477,8 @@ "TrackOptions & { metric: string; }" ], "path": "x-pack/plugins/observability/public/hooks/use_track_metric.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5178,6 +5495,7 @@ ], "path": "x-pack/plugins/observability/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5192,6 +5510,7 @@ ], "path": "x-pack/plugins/observability/public/components/shared/exploratory_view/configurations/constants/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -5248,6 +5567,7 @@ ], "path": "x-pack/plugins/observability/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "setup", "initialIsOpen": true }, @@ -5297,6 +5617,7 @@ ], "path": "x-pack/plugins/observability/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -5316,6 +5637,7 @@ ], "path": "x-pack/plugins/observability/common/utils/unwrap_es_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -5328,7 +5650,8 @@ "ElasticsearchClientError" ], "path": "x-pack/plugins/observability/common/utils/unwrap_es_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -5342,6 +5665,7 @@ ], "path": "x-pack/plugins/observability/common/utils/unwrap_es_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -5355,6 +5679,7 @@ ], "path": "x-pack/plugins/observability/common/utils/unwrap_es_response.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5401,6 +5726,7 @@ ], "path": "x-pack/plugins/observability/server/utils/create_or_update_index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -5411,6 +5737,7 @@ "description": [], "path": "x-pack/plugins/observability/server/utils/create_or_update_index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -5420,7 +5747,8 @@ "label": "index", "description": [], "path": "x-pack/plugins/observability/server/utils/create_or_update_index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -5452,7 +5780,8 @@ " | undefined; }" ], "path": "x-pack/plugins/observability/server/utils/create_or_update_index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -6653,7 +6982,8 @@ "; }" ], "path": "x-pack/plugins/observability/server/utils/create_or_update_index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -6666,7 +6996,8 @@ "Logger" ], "path": "x-pack/plugins/observability/server/utils/create_or_update_index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -6707,6 +7038,7 @@ ], "path": "x-pack/plugins/observability/common/utils/get_inspect_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -6717,6 +7049,7 @@ "description": [], "path": "x-pack/plugins/observability/common/utils/get_inspect_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -6730,7 +7063,8 @@ " | null" ], "path": "x-pack/plugins/observability/common/utils/get_inspect_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -6743,7 +7077,8 @@ "{ [x: string]: any; }" ], "path": "x-pack/plugins/observability/common/utils/get_inspect_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -6762,7 +7097,8 @@ } ], "path": "x-pack/plugins/observability/common/utils/get_inspect_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -6775,7 +7111,8 @@ "any" ], "path": "x-pack/plugins/observability/common/utils/get_inspect_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -6789,7 +7126,8 @@ "" ], "path": "x-pack/plugins/observability/common/utils/get_inspect_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -6799,7 +7137,8 @@ "label": "operationName", "description": [], "path": "x-pack/plugins/observability/common/utils/get_inspect_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -6809,7 +7148,8 @@ "label": "startTime", "description": [], "path": "x-pack/plugins/observability/common/utils/get_inspect_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -6831,6 +7171,7 @@ ], "path": "x-pack/plugins/observability/server/utils/queries.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -6844,6 +7185,7 @@ ], "path": "x-pack/plugins/observability/server/utils/queries.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6864,6 +7206,7 @@ ], "path": "x-pack/plugins/observability/server/utils/queries.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -6877,6 +7220,7 @@ ], "path": "x-pack/plugins/observability/server/utils/queries.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -6891,6 +7235,7 @@ ], "path": "x-pack/plugins/observability/server/utils/queries.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -6905,6 +7250,7 @@ ], "path": "x-pack/plugins/observability/server/utils/queries.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6925,6 +7271,7 @@ ], "path": "x-pack/plugins/observability/server/utils/queries.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -6938,6 +7285,7 @@ ], "path": "x-pack/plugins/observability/server/utils/queries.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6952,6 +7300,7 @@ ], "path": "x-pack/plugins/observability/server/utils/queries.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -6972,6 +7321,7 @@ ], "path": "x-pack/plugins/observability/server/utils/queries.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -6985,6 +7335,7 @@ ], "path": "x-pack/plugins/observability/server/utils/queries.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6999,6 +7350,7 @@ ], "path": "x-pack/plugins/observability/server/utils/queries.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7017,6 +7369,7 @@ ], "path": "x-pack/plugins/observability/common/utils/unwrap_es_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -7030,6 +7383,7 @@ ], "path": "x-pack/plugins/observability/common/utils/unwrap_es_response.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7047,6 +7401,7 @@ "description": [], "path": "x-pack/plugins/observability/server/routes/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -7059,7 +7414,8 @@ "{ tags: string[]; }" ], "path": "x-pack/plugins/observability/server/routes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7073,6 +7429,7 @@ "description": [], "path": "x-pack/plugins/observability/server/routes/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -7101,7 +7458,8 @@ "; }" ], "path": "x-pack/plugins/observability/server/routes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -7120,7 +7478,28 @@ } ], "path": "x-pack/plugins/observability/server/routes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "observability", + "id": "def-server.ObservabilityRouteHandlerResources.spacesService", + "type": "Object", + "tags": [], + "label": "spacesService", + "description": [], + "signature": [ + { + "pluginId": "spaces", + "scope": "server", + "docId": "kibSpacesPluginApi", + "section": "def-server.SpacesServiceStart", + "text": "SpacesServiceStart" + } + ], + "path": "x-pack/plugins/observability/server/routes/types.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -7134,7 +7513,8 @@ "" ], "path": "x-pack/plugins/observability/server/routes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -7178,7 +7558,8 @@ ">; }" ], "path": "x-pack/plugins/observability/server/routes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -7191,7 +7572,8 @@ "Logger" ], "path": "x-pack/plugins/observability/server/routes/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7215,6 +7597,7 @@ ], "path": "x-pack/plugins/observability/server/routes/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7248,6 +7631,7 @@ ], "path": "x-pack/plugins/observability/server/utils/create_or_update_index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7263,6 +7647,8 @@ "<\"POST /api/observability/slos\", ", "TypeC", "<{ body: ", + "IntersectionC", + "<[", "TypeC", "<{ name: ", "StringC", @@ -7360,7 +7746,13 @@ "TypeC", "<{ target: ", "NumberC", - "; }>; }>; }>, ", + "; }>; }>, ", + "PartialC", + "<{ settings: ", + "PartialC", + "<{ destination_index: ", + "StringC", + "; }>; }>]>; }>, ", { "pluginId": "observability", "scope": "server", @@ -7412,6 +7804,7 @@ ], "path": "x-pack/plugins/observability/server/routes/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7422,10 +7815,11 @@ "label": "ObservabilityConfig", "description": [], "signature": [ - "{ readonly unsafe: Readonly<{} & { slo: Readonly<{} & { enabled: boolean; }>; }>; readonly annotations: Readonly<{} & { index: string; enabled: boolean; }>; }" + "{ readonly unsafe: Readonly<{} & { slo: Readonly<{} & { enabled: boolean; }>; alertDetails: Readonly<{} & { enabled: boolean; }>; }>; readonly annotations: Readonly<{} & { index: string; enabled: boolean; }>; }" ], "path": "x-pack/plugins/observability/server/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7441,6 +7835,8 @@ "<\"POST /api/observability/slos\", ", "TypeC", "<{ body: ", + "IntersectionC", + "<[", "TypeC", "<{ name: ", "StringC", @@ -7538,7 +7934,13 @@ "TypeC", "<{ target: ", "NumberC", - "; }>; }>; }>, ", + "; }>; }>, ", + "PartialC", + "<{ settings: ", + "PartialC", + "<{ destination_index: ", + "StringC", + "; }>; }>]>; }>, ", { "pluginId": "observability", "scope": "server", @@ -7586,6 +7988,7 @@ ], "path": "x-pack/plugins/observability/server/routes/get_global_observability_server_route_repository.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7606,6 +8009,7 @@ ], "path": "x-pack/plugins/observability/server/lib/annotations/bootstrap_annotations.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -7646,6 +8050,7 @@ ], "path": "x-pack/plugins/observability/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "setup", "initialIsOpen": true } @@ -7673,6 +8078,7 @@ ], "path": "x-pack/plugins/observability/common/utils/formatters/duration.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -7686,6 +8092,7 @@ ], "path": "x-pack/plugins/observability/common/utils/formatters/duration.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7706,6 +8113,7 @@ ], "path": "x-pack/plugins/observability/common/utils/formatters/duration.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7732,6 +8140,7 @@ ], "path": "x-pack/plugins/observability/common/progressive_loading.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "observability", @@ -7751,6 +8160,7 @@ ], "path": "x-pack/plugins/observability/common/progressive_loading.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7769,6 +8179,7 @@ "description": [], "path": "x-pack/plugins/observability/common/processor_event.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7780,6 +8191,7 @@ "description": [], "path": "x-pack/plugins/observability/common/progressive_loading.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -7796,6 +8208,7 @@ ], "path": "x-pack/plugins/observability/common/ui_settings_keys.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7810,6 +8223,7 @@ ], "path": "x-pack/plugins/observability/common/ui_settings_keys.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7824,6 +8238,7 @@ ], "path": "x-pack/plugins/observability/common/ui_settings_keys.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7838,6 +8253,7 @@ ], "path": "x-pack/plugins/observability/common/ui_settings_keys.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7852,6 +8268,7 @@ ], "path": "x-pack/plugins/observability/common/ui_settings_keys.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7868,6 +8285,7 @@ ], "path": "x-pack/plugins/observability/common/utils/formatters/duration.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7881,7 +8299,8 @@ "number | null | undefined" ], "path": "x-pack/plugins/observability/common/utils/formatters/duration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -7894,7 +8313,8 @@ "FormatterOptions" ], "path": "x-pack/plugins/observability/common/utils/formatters/duration.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7913,6 +8333,7 @@ ], "path": "x-pack/plugins/observability/common/utils/formatters/formatters.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7926,7 +8347,8 @@ "number | null | undefined" ], "path": "x-pack/plugins/observability/common/utils/formatters/formatters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -7939,7 +8361,8 @@ "number | undefined" ], "path": "x-pack/plugins/observability/common/utils/formatters/formatters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "observability", @@ -7949,7 +8372,8 @@ "label": "fallbackResult", "description": [], "path": "x-pack/plugins/observability/common/utils/formatters/formatters.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7966,6 +8390,7 @@ ], "path": "x-pack/plugins/observability/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7980,6 +8405,7 @@ ], "path": "x-pack/plugins/observability/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7994,6 +8420,7 @@ ], "path": "x-pack/plugins/observability/common/ui_settings_keys.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8008,6 +8435,7 @@ ], "path": "x-pack/plugins/observability/common/ui_settings_keys.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8022,6 +8450,7 @@ ], "path": "x-pack/plugins/observability/common/ui_settings_keys.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8036,6 +8465,7 @@ ], "path": "x-pack/plugins/observability/common/ui_settings_keys.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8050,6 +8480,7 @@ ], "path": "x-pack/plugins/observability/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8064,6 +8495,7 @@ ], "path": "x-pack/plugins/observability/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8078,6 +8510,7 @@ ], "path": "x-pack/plugins/observability/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8092,6 +8525,7 @@ ], "path": "x-pack/plugins/observability/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8106,6 +8540,7 @@ ], "path": "x-pack/plugins/observability/common/utils/formatters/duration.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -8120,6 +8555,7 @@ ], "path": "x-pack/plugins/observability/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/observability.mdx b/api_docs/observability.mdx index b29d510fb5cd0..346c966d5b617 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'observability'] --- import observabilityObj from './observability.devdocs.json'; @@ -21,7 +21,7 @@ Contact [Observability UI](https://github.com/orgs/elastic/teams/observability-u | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 396 | 2 | 393 | 30 | +| 397 | 2 | 394 | 30 | ## Client diff --git a/api_docs/osquery.devdocs.json b/api_docs/osquery.devdocs.json index 43ce59b764ca8..f217e15c771ef 100644 --- a/api_docs/osquery.devdocs.json +++ b/api_docs/osquery.devdocs.json @@ -16,6 +16,7 @@ "description": [], "path": "x-pack/plugins/osquery/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -29,6 +30,7 @@ "description": [], "path": "x-pack/plugins/osquery/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "osquery", @@ -41,7 +43,8 @@ "((props: any) => JSX.Element) | undefined" ], "path": "x-pack/plugins/osquery/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "osquery", @@ -55,6 +58,7 @@ ], "path": "x-pack/plugins/osquery/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "osquery", @@ -65,6 +69,7 @@ "description": [], "path": "x-pack/plugins/osquery/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "osquery", @@ -74,7 +79,8 @@ "label": "agentId", "description": [], "path": "x-pack/plugins/osquery/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -102,6 +108,7 @@ "description": [], "path": "x-pack/plugins/osquery/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -115,6 +122,7 @@ "description": [], "path": "x-pack/plugins/osquery/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true @@ -138,6 +146,7 @@ ], "path": "x-pack/plugins/osquery/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -152,6 +161,7 @@ ], "path": "x-pack/plugins/osquery/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -166,6 +176,7 @@ ], "path": "x-pack/plugins/osquery/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -180,6 +191,7 @@ ], "path": "x-pack/plugins/osquery/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -194,6 +206,7 @@ ], "path": "x-pack/plugins/osquery/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/osquery.mdx b/api_docs/osquery.mdx index c9f6dc7219810..cca97c6fe10be 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'osquery'] --- import osqueryObj from './osquery.devdocs.json'; diff --git a/api_docs/plugin_directory.mdx b/api_docs/plugin_directory.mdx index 9b6047bf3b073..6dfa0eb3a39c1 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: 2022-09-05 +date: 2022-09-08 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 | |--------------|----------|------------------------| -| 440 | 366 | 36 | +| 444 | 369 | 36 | ### Public API health stats | API Count | Any Count | Missing comments | Missing exports | |--------------|----------|-----------------|--------| -| 30537 | 180 | 20393 | 970 | +| 30582 | 180 | 20435 | 973 | ## Plugin Directory @@ -31,7 +31,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 23 | 0 | 19 | 1 | | | [Machine Learning UI](https://github.com/orgs/elastic/teams/ml-ui) | AIOps plugin maintained by ML team. | 9 | 0 | 0 | 1 | | | [Response Ops](https://github.com/orgs/elastic/teams/response-ops) | - | 368 | 0 | 359 | 21 | -| | [APM UI](https://github.com/orgs/elastic/teams/apm-ui) | The user interface for Elastic APM | 39 | 0 | 39 | 53 | +| | [APM UI](https://github.com/orgs/elastic/teams/apm-ui) | The user interface for Elastic APM | 39 | 0 | 39 | 54 | | | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 9 | 0 | 9 | 0 | | | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | Considering using bfetch capabilities when fetching large amounts of data. This services supports batching HTTP requests and streaming responses back. | 80 | 1 | 71 | 2 | | | [Kibana Presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds Canvas application to Kibana | 9 | 0 | 8 | 3 | @@ -40,11 +40,11 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 29 | 0 | 24 | 0 | | | [Cloud Security Posture](https://github.com/orgs/elastic/teams/cloud-posture-security) | The cloud security posture plugin | 18 | 0 | 2 | 3 | | | [Stack Management](https://github.com/orgs/elastic/teams/kibana-stack-management) | - | 13 | 0 | 13 | 1 | -| | [Kibana Presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | The Controls Plugin contains embeddable components intended to create a simple query interface for end users, and a powerful editing suite that allows dashboard authors to build controls | 204 | 0 | 196 | 7 | -| | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 2655 | 1 | 61 | 2 | +| | [Kibana Presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | The Controls Plugin contains embeddable components intended to create a simple query interface for end users, and a powerful editing suite that allows dashboard authors to build controls | 212 | 0 | 204 | 7 | +| | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 2657 | 1 | 61 | 2 | | crossClusterReplication | [Stack Management](https://github.com/orgs/elastic/teams/kibana-stack-management) | - | 0 | 0 | 0 | 0 | | | [Fleet](https://github.com/orgs/elastic/teams/fleet) | Add custom data integrations so they can be displayed in the Fleet integrations app | 102 | 0 | 83 | 1 | -| | [Kibana Presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds the Dashboard app to Kibana | 146 | 0 | 141 | 12 | +| | [Kibana Presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds the Dashboard app to Kibana | 147 | 0 | 142 | 12 | | | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | - | 52 | 0 | 51 | 0 | | | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | Data services are useful for searching and querying data from Elasticsearch. Helpful utilities include: a re-usable react query bar, KQL autocomplete, async search, Data Views (Index Patterns) and field formatters. | 3131 | 34 | 2441 | 23 | | | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | This plugin provides the ability to create data views via a modal flyout inside Kibana apps | 15 | 0 | 7 | 0 | @@ -53,9 +53,9 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | Data services are useful for searching and querying data from Elasticsearch. Helpful utilities include: a re-usable react query bar, KQL autocomplete, async search, Data Views (Index Patterns) and field formatters. | 963 | 0 | 206 | 1 | | | [Machine Learning UI](https://github.com/orgs/elastic/teams/ml-ui) | The Data Visualizer tools help you understand your data, by analyzing the metrics and fields in a log file or an existing Elasticsearch index. | 28 | 3 | 24 | 1 | | | [Stack Management](https://github.com/orgs/elastic/teams/kibana-stack-management) | - | 10 | 0 | 8 | 2 | -| | [Data Discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | This plugin contains the Discover application and the saved search embeddable. | 94 | 0 | 77 | 4 | +| | [Data Discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | This plugin contains the Discover application and the saved search embeddable. | 95 | 0 | 78 | 4 | | | [Data Discovery](https://github.com/orgs/elastic/teams/kibana-data-discovery) | - | 37 | 0 | 35 | 2 | -| | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | Adds embeddables service to Kibana | 514 | 0 | 414 | 4 | +| | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | Adds embeddables service to Kibana | 515 | 0 | 415 | 4 | | | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | Extends embeddable plugin with more functionality | 14 | 0 | 14 | 0 | | | [Platform Security](https://github.com/orgs/elastic/teams/kibana-security) | This plugin provides encryption and decryption utilities for saved objects containing sensitive information. | 51 | 0 | 42 | 0 | | | [Enterprise Search](https://github.com/orgs/elastic/teams/enterprise-search-frontend) | Adds dashboards for discovering and managing Enterprise Search products. | 8 | 0 | 8 | 0 | @@ -79,7 +79,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 222 | 0 | 95 | 2 | | | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | Index pattern fields and ambiguous values formatters | 288 | 5 | 249 | 3 | | | [Machine Learning UI](https://github.com/orgs/elastic/teams/ml-ui) | 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. | 62 | 0 | 62 | 2 | -| | [@elastic/kibana-app-services](https://github.com/orgs/elastic/teams/team:AppServicesUx) | File upload, download, sharing, and serving over HTTP implementation in Kibana. | 243 | 0 | 6 | 2 | +| | [@elastic/kibana-app-services](https://github.com/orgs/elastic/teams/team:AppServicesUx) | File upload, download, sharing, and serving over HTTP implementation in Kibana. | 240 | 0 | 6 | 2 | | | [Fleet](https://github.com/orgs/elastic/teams/fleet) | - | 969 | 3 | 873 | 10 | | | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 68 | 0 | 14 | 5 | | globalSearchBar | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 0 | 0 | 0 | 0 | @@ -99,7 +99,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | kibanaUsageCollection | [Kibana Telemetry](https://github.com/orgs/elastic/teams/kibana-telemetry) | - | 0 | 0 | 0 | 0 | | | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | - | 615 | 3 | 418 | 9 | | | [Security Team](https://github.com/orgs/elastic/teams/security-team) | - | 3 | 0 | 3 | 1 | -| | [Vis Editors](https://github.com/orgs/elastic/teams/kibana-vis-editors) | 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. | 613 | 0 | 527 | 41 | +| | [Vis Editors](https://github.com/orgs/elastic/teams/kibana-vis-editors) | 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. | 619 | 0 | 533 | 41 | | | [Stack Management](https://github.com/orgs/elastic/teams/kibana-stack-management) | - | 8 | 0 | 8 | 0 | | | [Stack Management](https://github.com/orgs/elastic/teams/kibana-stack-management) | - | 3 | 0 | 3 | 0 | | | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 117 | 0 | 42 | 10 | @@ -113,7 +113,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [Stack Monitoring](https://github.com/orgs/elastic/teams/stack-monitoring-ui) | - | 9 | 0 | 9 | 0 | | | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | - | 34 | 0 | 34 | 2 | | | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 17 | 0 | 17 | 0 | -| | [Observability UI](https://github.com/orgs/elastic/teams/observability-ui) | - | 396 | 2 | 393 | 30 | +| | [Observability UI](https://github.com/orgs/elastic/teams/observability-ui) | - | 397 | 2 | 394 | 30 | | | [Security asset management](https://github.com/orgs/elastic/teams/security-asset-management) | - | 13 | 0 | 13 | 0 | | painlessLab | [Stack Management](https://github.com/orgs/elastic/teams/kibana-stack-management) | - | 0 | 0 | 0 | 0 | | | [Kibana Presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | The Presentation Utility Plugin is a set of common, shared components and toolkits for solutions within the Presentation space, (e.g. Dashboards, Canvas). | 243 | 2 | 187 | 12 | @@ -171,7 +171,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [Vis Editors](https://github.com/orgs/elastic/teams/kibana-vis-editors) | Registers the vega visualization. Is the elastic version of vega and vega-lite libraries. | 2 | 0 | 2 | 0 | | | [Vis Editors](https://github.com/orgs/elastic/teams/kibana-vis-editors) | Contains the vislib visualizations. These are the classical area/line/bar, pie, gauge/goal and heatmap charts. We want to replace them with elastic-charts. | 26 | 0 | 25 | 1 | | | [Vis Editors](https://github.com/orgs/elastic/teams/kibana-vis-editors) | Contains the new xy-axis chart using the elastic-charts library, which will eventually replace the vislib xy-axis charts including bar, area, and line. | 53 | 0 | 50 | 5 | -| | [Vis Editors](https://github.com/orgs/elastic/teams/kibana-vis-editors) | Contains the shared architecture among all the legacy visualizations, e.g. the visualization type registry or the visualization embeddable. | 416 | 12 | 388 | 15 | +| | [Vis Editors](https://github.com/orgs/elastic/teams/kibana-vis-editors) | Contains the shared architecture among all the legacy visualizations, e.g. the visualization type registry or the visualization embeddable. | 417 | 12 | 389 | 15 | | watcher | [Stack Management](https://github.com/orgs/elastic/teams/kibana-stack-management) | - | 0 | 0 | 0 | 0 | ## Package Directory @@ -189,7 +189,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | Kibana Core | - | 18 | 0 | 0 | 0 | | | Kibana Core | - | 20 | 0 | 0 | 0 | | | [Owner missing] | - | 16 | 0 | 16 | 0 | -| | [Owner missing] | Elastic APM trace data generator | 75 | 0 | 75 | 12 | +| | [Owner missing] | Elastic APM trace data generator | 76 | 0 | 76 | 12 | | | [Owner missing] | - | 11 | 0 | 11 | 0 | | | [Owner missing] | - | 10 | 0 | 10 | 0 | | | [Owner missing] | - | 76 | 0 | 76 | 0 | @@ -219,7 +219,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | Kibana Core | - | 5 | 0 | 0 | 0 | | | Kibana Core | - | 16 | 0 | 7 | 0 | | | Kibana Core | - | 6 | 0 | 6 | 0 | -| | Kibana Core | - | 112 | 0 | 40 | 0 | +| | Kibana Core | - | 114 | 0 | 41 | 0 | | | Kibana Core | - | 3 | 0 | 3 | 0 | | | Kibana Core | - | 4 | 0 | 4 | 0 | | | Kibana Core | - | 9 | 0 | 3 | 0 | @@ -288,6 +288,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | Kibana Core | - | 3 | 0 | 3 | 0 | | | Kibana Core | - | 5 | 0 | 0 | 0 | | | Kibana Core | - | 6 | 0 | 6 | 0 | +| | Kibana Core | - | 2 | 0 | 2 | 0 | | | Kibana Core | - | 94 | 1 | 66 | 0 | | | Kibana Core | - | 289 | 1 | 126 | 0 | | | Kibana Core | - | 68 | 0 | 49 | 0 | @@ -316,6 +317,8 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | Kibana Core | - | 4 | 0 | 4 | 0 | | | Kibana Core | - | 23 | 0 | 3 | 0 | | | Kibana Core | - | 146 | 0 | 135 | 0 | +| | Kibana Core | - | 8 | 0 | 8 | 2 | +| | Kibana Core | - | 7 | 0 | 7 | 0 | | | [Owner missing] | - | 13 | 0 | 7 | 0 | | | [Owner missing] | - | 10 | 0 | 10 | 0 | | | [Owner missing] | elasticsearch datemath parser, used in kibana | 44 | 0 | 43 | 0 | @@ -387,7 +390,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [Owner missing] | - | 12 | 0 | 12 | 0 | | | [Owner missing] | - | 8 | 0 | 3 | 0 | | | [Owner missing] | - | 25 | 0 | 24 | 0 | -| | [Owner missing] | - | 10 | 0 | 4 | 0 | +| | [Owner missing] | - | 11 | 0 | 2 | 0 | | | [Owner missing] | - | 43 | 5 | 43 | 2 | | | [Owner missing] | - | 13 | 0 | 4 | 0 | | | [Owner missing] | - | 11 | 0 | 5 | 0 | @@ -401,11 +404,11 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana'] | | [Owner missing] | - | 9 | 0 | 3 | 0 | | | [Owner missing] | - | 20 | 0 | 12 | 0 | | | [Owner missing] | - | 2 | 0 | 2 | 0 | -| | Kibana Core | - | 92 | 1 | 59 | 1 | +| | Kibana Core | - | 97 | 1 | 64 | 1 | | | [Owner missing] | - | 4 | 0 | 2 | 0 | | | Operations | - | 38 | 2 | 21 | 0 | | | Kibana Core | - | 2 | 0 | 2 | 0 | -| | Operations | - | 252 | 5 | 211 | 11 | +| | Operations | - | 253 | 5 | 212 | 11 | | | [Owner missing] | - | 135 | 8 | 103 | 2 | | | [Owner missing] | - | 72 | 0 | 55 | 0 | | | [Owner missing] | - | 8 | 0 | 2 | 0 | diff --git a/api_docs/presentation_util.devdocs.json b/api_docs/presentation_util.devdocs.json index ef5bb872aa3e3..9b7ad8146afc9 100644 --- a/api_docs/presentation_util.devdocs.json +++ b/api_docs/presentation_util.devdocs.json @@ -23,6 +23,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/provider.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -36,6 +37,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/provider.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -49,6 +51,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/provider.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -66,6 +69,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/provider.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -88,6 +92,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/provider.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -102,6 +107,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/provider.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -121,6 +127,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/provider.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -140,6 +147,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/provider.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -155,6 +163,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/provider.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -170,6 +179,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/provider.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -189,6 +199,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/provider.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -206,6 +217,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/provider.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -220,7 +232,8 @@ "never[] | NonNullable" ], "path": "src/plugins/presentation_util/public/services/create/provider.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -246,6 +259,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/registry.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -259,6 +273,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/registry.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -279,6 +294,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/registry.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -298,6 +314,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/registry.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -323,6 +340,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/registry.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -340,6 +358,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/registry.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -357,6 +376,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/registry.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -372,6 +392,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/registry.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -391,6 +412,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/registry.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -418,6 +440,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -441,6 +464,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -463,6 +487,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -482,6 +507,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -499,6 +525,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -516,6 +543,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -531,6 +559,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -553,6 +582,7 @@ ], "path": "src/plugins/presentation_util/public/components/solution_toolbar/items/add_from_library.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -566,6 +596,7 @@ ], "path": "src/plugins/presentation_util/public/components/solution_toolbar/items/add_from_library.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -584,6 +615,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/dataurl.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -597,6 +629,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/dataurl.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -611,6 +644,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/dataurl.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -647,6 +681,7 @@ ], "path": "src/plugins/presentation_util/common/lib/test_helpers/function_wrapper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -660,6 +695,7 @@ ], "path": "src/plugins/presentation_util/common/lib/test_helpers/function_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -680,6 +716,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -698,6 +735,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -721,6 +759,7 @@ ], "path": "src/plugins/presentation_util/public/services/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -737,6 +776,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/dataurl.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -750,6 +790,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/dataurl.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -768,6 +809,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/httpurl.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -781,6 +823,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/httpurl.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -799,6 +842,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -812,6 +856,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -834,6 +879,7 @@ ], "path": "src/plugins/presentation_util/public/components/index.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -847,7 +893,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -888,6 +935,7 @@ ], "path": "src/plugins/presentation_util/public/components/index.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -901,7 +949,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -936,6 +985,7 @@ ], "path": "src/plugins/presentation_util/public/components/index.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -949,7 +999,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -970,6 +1021,7 @@ ], "path": "src/plugins/presentation_util/public/components/index.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -983,7 +1035,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1006,6 +1059,7 @@ ], "path": "src/plugins/presentation_util/public/components/index.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1019,7 +1073,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1040,6 +1095,7 @@ ], "path": "src/plugins/presentation_util/public/components/index.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1053,7 +1109,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1078,6 +1135,7 @@ ], "path": "src/plugins/presentation_util/public/redux_embeddables/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -1110,6 +1168,7 @@ ], "path": "src/plugins/presentation_util/public/components/index.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1123,7 +1182,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1140,6 +1200,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/dataurl.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -1153,6 +1214,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/dataurl.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1167,6 +1229,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/dataurl.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1187,6 +1250,7 @@ ], "path": "src/plugins/presentation_util/public/components/solution_toolbar/items/primary_button.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -1200,6 +1264,7 @@ ], "path": "src/plugins/presentation_util/public/components/solution_toolbar/items/primary_button.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1220,6 +1285,7 @@ ], "path": "src/plugins/presentation_util/public/components/solution_toolbar/items/primary_popover.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -1235,6 +1301,7 @@ ], "path": "src/plugins/presentation_util/public/components/solution_toolbar/items/primary_popover.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1255,6 +1322,7 @@ ], "path": "src/plugins/presentation_util/public/components/solution_toolbar/items/quick_group.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -1268,6 +1336,7 @@ ], "path": "src/plugins/presentation_util/public/components/solution_toolbar/items/quick_group.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1296,6 +1365,7 @@ ], "path": "src/plugins/presentation_util/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -1318,6 +1388,7 @@ ], "path": "src/plugins/presentation_util/public/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1336,6 +1407,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/resolve_dataurl.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -1349,6 +1421,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/resolve_dataurl.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1363,6 +1436,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/resolve_dataurl.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1381,6 +1455,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/resolve_dataurl.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -1394,6 +1469,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/resolve_dataurl.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1408,6 +1484,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/resolve_dataurl.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1428,6 +1505,7 @@ ], "path": "src/plugins/presentation_util/public/components/solution_toolbar/solution_toolbar.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -1441,6 +1519,7 @@ ], "path": "src/plugins/presentation_util/public/components/solution_toolbar/solution_toolbar.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1461,6 +1540,7 @@ ], "path": "src/plugins/presentation_util/public/components/solution_toolbar/items/button.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -1474,6 +1554,7 @@ ], "path": "src/plugins/presentation_util/public/components/solution_toolbar/items/button.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1494,6 +1575,7 @@ ], "path": "src/plugins/presentation_util/public/components/solution_toolbar/items/popover.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -1507,6 +1589,7 @@ ], "path": "src/plugins/presentation_util/public/components/solution_toolbar/items/popover.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1532,6 +1615,7 @@ ], "path": "src/plugins/presentation_util/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -1604,6 +1688,7 @@ ], "path": "src/plugins/presentation_util/public/redux_embeddables/use_redux_embeddable_context.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -1676,6 +1761,7 @@ ], "path": "src/plugins/presentation_util/public/redux_embeddables/use_redux_embeddable_context.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -1694,6 +1780,7 @@ ], "path": "src/plugins/presentation_util/public/components/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -1709,6 +1796,7 @@ ], "path": "src/plugins/presentation_util/public/components/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1725,6 +1813,7 @@ ], "path": "src/plugins/presentation_util/public/components/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1754,6 +1843,7 @@ ], "path": "src/plugins/presentation_util/public/components/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -1775,7 +1865,8 @@ "[]" ], "path": "src/plugins/presentation_util/public/components/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -1787,7 +1878,8 @@ "Value of expression" ], "path": "src/plugins/presentation_util/public/components/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -1803,6 +1895,7 @@ ], "path": "src/plugins/presentation_util/public/components/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -1816,6 +1909,7 @@ ], "path": "src/plugins/presentation_util/public/components/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1834,7 +1928,8 @@ "boolean | undefined" ], "path": "src/plugins/presentation_util/public/components/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -1850,7 +1945,8 @@ ".Height | undefined" ], "path": "src/plugins/presentation_util/public/components/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -1872,7 +1968,8 @@ " | undefined" ], "path": "src/plugins/presentation_util/public/components/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -1892,7 +1989,8 @@ " | undefined" ], "path": "src/plugins/presentation_util/public/components/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1918,6 +2016,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -1936,7 +2035,8 @@ } ], "path": "src/plugins/presentation_util/public/services/create/factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -1949,7 +2049,8 @@ "Start" ], "path": "src/plugins/presentation_util/public/services/create/factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -1965,7 +2066,8 @@ "> | undefined" ], "path": "src/plugins/presentation_util/public/services/create/factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -1985,7 +2087,8 @@ " | undefined" ], "path": "src/plugins/presentation_util/public/services/create/factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1999,6 +2102,7 @@ "description": [], "path": "src/plugins/presentation_util/public/services/capabilities.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -2012,6 +2116,7 @@ ], "path": "src/plugins/presentation_util/public/services/capabilities.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2027,6 +2132,7 @@ ], "path": "src/plugins/presentation_util/public/services/capabilities.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2042,6 +2148,7 @@ ], "path": "src/plugins/presentation_util/public/services/capabilities.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2057,6 +2164,7 @@ ], "path": "src/plugins/presentation_util/public/services/capabilities.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2072,6 +2180,7 @@ "description": [], "path": "src/plugins/presentation_util/public/services/dashboards.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -2089,6 +2198,7 @@ ], "path": "src/plugins/presentation_util/public/services/dashboards.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -2102,6 +2212,7 @@ ], "path": "src/plugins/presentation_util/public/services/dashboards.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2116,6 +2227,7 @@ ], "path": "src/plugins/presentation_util/public/services/dashboards.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2137,6 +2249,7 @@ ], "path": "src/plugins/presentation_util/public/services/dashboards.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -2150,6 +2263,7 @@ ], "path": "src/plugins/presentation_util/public/services/dashboards.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2167,6 +2281,7 @@ "description": [], "path": "src/plugins/presentation_util/public/services/labs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -2180,6 +2295,7 @@ ], "path": "src/plugins/presentation_util/public/services/labs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -2193,6 +2309,7 @@ ], "path": "src/plugins/presentation_util/public/services/labs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2210,6 +2327,7 @@ ], "path": "src/plugins/presentation_util/public/services/labs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2232,6 +2350,7 @@ ], "path": "src/plugins/presentation_util/public/services/labs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -2245,6 +2364,7 @@ ], "path": "src/plugins/presentation_util/public/services/labs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2270,6 +2390,7 @@ ], "path": "src/plugins/presentation_util/public/services/labs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -2283,6 +2404,7 @@ ], "path": "src/plugins/presentation_util/public/services/labs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2300,6 +2422,7 @@ ], "path": "src/plugins/presentation_util/public/services/labs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -2313,6 +2436,7 @@ ], "path": "src/plugins/presentation_util/public/services/labs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2327,6 +2451,7 @@ ], "path": "src/plugins/presentation_util/public/services/labs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2341,6 +2466,7 @@ ], "path": "src/plugins/presentation_util/public/services/labs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2358,6 +2484,7 @@ ], "path": "src/plugins/presentation_util/public/services/labs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2385,6 +2512,7 @@ ], "path": "src/plugins/presentation_util/public/components/solution_toolbar/items/quick_group.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -2394,7 +2522,8 @@ "label": "createType", "description": [], "path": "src/plugins/presentation_util/public/components/solution_toolbar/items/quick_group.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -2408,6 +2537,7 @@ ], "path": "src/plugins/presentation_util/public/components/solution_toolbar/items/quick_group.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2425,6 +2555,7 @@ ], "path": "src/plugins/presentation_util/public/redux_embeddables/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -2532,6 +2663,7 @@ ], "path": "src/plugins/presentation_util/public/redux_embeddables/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2579,7 +2711,8 @@ ", unknown>> | undefined; reducers: ReducerType; }" ], "path": "src/plugins/presentation_util/public/redux_embeddables/create_redux_embeddable_tools.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2607,6 +2740,7 @@ ], "path": "src/plugins/presentation_util/public/redux_embeddables/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -2619,7 +2753,8 @@ "InputType" ], "path": "src/plugins/presentation_util/public/redux_embeddables/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -2632,7 +2767,8 @@ "OutputType" ], "path": "src/plugins/presentation_util/public/redux_embeddables/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -2645,7 +2781,8 @@ "StateType" ], "path": "src/plugins/presentation_util/public/redux_embeddables/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2671,6 +2808,7 @@ ], "path": "src/plugins/presentation_util/public/redux_embeddables/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -2684,6 +2822,7 @@ ], "path": "src/plugins/presentation_util/public/redux_embeddables/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2699,6 +2838,7 @@ ], "path": "src/plugins/presentation_util/public/redux_embeddables/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2712,7 +2852,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -2725,7 +2866,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2744,6 +2886,7 @@ ], "path": "src/plugins/presentation_util/public/redux_embeddables/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2757,7 +2900,8 @@ "T" ], "path": "node_modules/redux/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2773,6 +2917,7 @@ ], "path": "src/plugins/presentation_util/public/redux_embeddables/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -2793,7 +2938,8 @@ ", string>; }" ], "path": "src/plugins/presentation_util/public/redux_embeddables/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2807,6 +2953,7 @@ "description": [], "path": "src/plugins/presentation_util/public/components/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -2819,7 +2966,8 @@ "SaveModalDocumentInfo" ], "path": "src/plugins/presentation_util/public/components/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -2829,7 +2977,8 @@ "label": "canSaveByReference", "description": [], "path": "src/plugins/presentation_util/public/components/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -2839,7 +2988,8 @@ "label": "objectType", "description": [], "path": "src/plugins/presentation_util/public/components/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -2853,6 +3003,7 @@ ], "path": "src/plugins/presentation_util/public/components/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2876,6 +3027,7 @@ ], "path": "src/plugins/presentation_util/public/components/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -2896,6 +3048,7 @@ ], "path": "src/plugins/presentation_util/public/components/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2920,7 +3073,8 @@ ") => React.ReactNode)" ], "path": "src/plugins/presentation_util/public/components/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2944,6 +3098,7 @@ ], "path": "src/plugins/presentation_util/public/components/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2958,6 +3113,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/dataurl.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2982,6 +3138,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/factory.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3002,7 +3159,8 @@ "" ], "path": "src/plugins/presentation_util/public/services/create/factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3015,7 +3173,8 @@ "RequiredServices" ], "path": "src/plugins/presentation_util/public/services/create/factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3034,6 +3193,7 @@ ], "path": "src/plugins/presentation_util/public/components/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3048,7 +3208,8 @@ ".IStandaloneCodeEditor | null" ], "path": "src/plugins/presentation_util/public/components/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3067,6 +3228,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/factory.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3080,7 +3242,8 @@ "Parameters" ], "path": "src/plugins/presentation_util/public/services/create/factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3093,7 +3256,8 @@ "RequiredServices" ], "path": "src/plugins/presentation_util/public/services/create/factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3120,6 +3284,7 @@ ], "path": "src/plugins/presentation_util/public/services/create/provider.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3149,6 +3314,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3163,6 +3329,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3182,6 +3349,7 @@ ], "path": "src/plugins/presentation_util/common/lib/utils/default_theme.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3193,6 +3361,7 @@ "description": [], "path": "src/plugins/presentation_util/common/lib/test_helpers/test_styles.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -3202,7 +3371,8 @@ "label": "type", "description": [], "path": "src/plugins/presentation_util/common/lib/test_helpers/test_styles.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3213,6 +3383,7 @@ "description": [], "path": "src/plugins/presentation_util/common/lib/test_helpers/test_styles.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -3222,7 +3393,8 @@ "label": "fontFamily", "description": [], "path": "src/plugins/presentation_util/common/lib/test_helpers/test_styles.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3232,7 +3404,8 @@ "label": "fontWeight", "description": [], "path": "src/plugins/presentation_util/common/lib/test_helpers/test_styles.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3242,7 +3415,8 @@ "label": "fontStyle", "description": [], "path": "src/plugins/presentation_util/common/lib/test_helpers/test_styles.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3252,7 +3426,8 @@ "label": "textDecoration", "description": [], "path": "src/plugins/presentation_util/common/lib/test_helpers/test_styles.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3262,7 +3437,8 @@ "label": "color", "description": [], "path": "src/plugins/presentation_util/common/lib/test_helpers/test_styles.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3272,7 +3448,8 @@ "label": "textAlign", "description": [], "path": "src/plugins/presentation_util/common/lib/test_helpers/test_styles.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3282,7 +3459,8 @@ "label": "fontSize", "description": [], "path": "src/plugins/presentation_util/common/lib/test_helpers/test_styles.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3292,7 +3470,8 @@ "label": "lineHeight", "description": [], "path": "src/plugins/presentation_util/common/lib/test_helpers/test_styles.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3304,7 +3483,8 @@ "label": "css", "description": [], "path": "src/plugins/presentation_util/common/lib/test_helpers/test_styles.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3321,6 +3501,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3333,6 +3514,7 @@ "description": [], "path": "src/plugins/presentation_util/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -3346,6 +3528,7 @@ "description": [], "path": "src/plugins/presentation_util/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -3359,6 +3542,7 @@ ], "path": "src/plugins/presentation_util/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3372,7 +3556,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3385,7 +3570,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3406,7 +3592,8 @@ } ], "path": "src/plugins/presentation_util/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3428,6 +3615,7 @@ ], "path": "src/plugins/presentation_util/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3448,7 +3636,8 @@ "[]" ], "path": "src/plugins/presentation_util/public/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -3475,6 +3664,7 @@ ], "path": "src/plugins/presentation_util/server/ui_settings.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3495,6 +3685,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -3519,6 +3710,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -3532,6 +3724,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3552,6 +3745,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3569,6 +3763,7 @@ "description": [], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -3581,7 +3776,8 @@ "\"labs:dashboard:deferBelowFold\" | \"labs:dashboard:dashboardControls\" | \"labs:canvas:byValueEmbeddable\"" ], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3591,7 +3787,8 @@ "label": "name", "description": [], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3601,7 +3798,8 @@ "label": "isActive", "description": [], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3611,7 +3809,8 @@ "label": "isDisplayed", "description": [], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3624,7 +3823,8 @@ "(\"kibana\" | \"browser\" | \"session\")[]" ], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3634,7 +3834,8 @@ "label": "description", "description": [], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3647,7 +3848,8 @@ "(\"dashboard\" | \"canvas\" | \"presentation\")[]" ], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3667,6 +3869,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3681,6 +3884,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3695,6 +3899,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3709,6 +3914,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3723,6 +3929,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3739,6 +3946,7 @@ ], "path": "src/plugins/presentation_util/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3753,6 +3961,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3767,6 +3976,7 @@ ], "path": "src/plugins/presentation_util/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3781,6 +3991,7 @@ ], "path": "src/plugins/presentation_util/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3810,6 +4021,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3824,6 +4036,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3845,6 +4058,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3859,6 +4073,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3875,6 +4090,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3889,6 +4105,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3902,6 +4119,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -3912,6 +4130,7 @@ "description": [], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -3924,7 +4143,8 @@ "\"labs:dashboard:deferBelowFold\"" ], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3937,7 +4157,8 @@ "false" ], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3950,7 +4171,8 @@ "true" ], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3963,7 +4185,8 @@ "(\"kibana\" | \"browser\" | \"session\")[]" ], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3973,7 +4196,8 @@ "label": "name", "description": [], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3983,7 +4207,8 @@ "label": "description", "description": [], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -3996,7 +4221,8 @@ "\"dashboard\"[]" ], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -4009,6 +4235,7 @@ "description": [], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -4021,7 +4248,8 @@ "\"labs:dashboard:dashboardControls\"" ], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -4034,7 +4262,8 @@ "true" ], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -4047,7 +4276,8 @@ "true" ], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -4060,7 +4290,8 @@ "(\"kibana\" | \"browser\" | \"session\")[]" ], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -4070,7 +4301,8 @@ "label": "name", "description": [], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -4080,7 +4312,8 @@ "label": "description", "description": [], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -4093,7 +4326,8 @@ "\"dashboard\"[]" ], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -4106,6 +4340,7 @@ "description": [], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "presentationUtil", @@ -4118,7 +4353,8 @@ "\"labs:canvas:byValueEmbeddable\"" ], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -4131,7 +4367,8 @@ "true" ], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -4144,7 +4381,8 @@ "true" ], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -4157,7 +4395,8 @@ "(\"kibana\" | \"browser\" | \"session\")[]" ], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -4167,7 +4406,8 @@ "label": "name", "description": [], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -4177,7 +4417,8 @@ "label": "description", "description": [], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "presentationUtil", @@ -4190,7 +4431,8 @@ "\"canvas\"[]" ], "path": "src/plugins/presentation_util/common/labs.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -4209,6 +4451,7 @@ ], "path": "src/plugins/presentation_util/common/labs.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/presentation_util.mdx b/api_docs/presentation_util.mdx index d5400c3d0eae6..3ea342705aa79 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'presentationUtil'] --- import presentationUtilObj from './presentation_util.devdocs.json'; diff --git a/api_docs/remote_clusters.devdocs.json b/api_docs/remote_clusters.devdocs.json index 51afd269eec6c..eec38edb3e2ed 100644 --- a/api_docs/remote_clusters.devdocs.json +++ b/api_docs/remote_clusters.devdocs.json @@ -16,6 +16,7 @@ "description": [], "path": "x-pack/plugins/remote_clusters/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "remoteClusters", @@ -25,7 +26,8 @@ "label": "isUiEnabled", "description": [], "path": "x-pack/plugins/remote_clusters/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -48,6 +50,7 @@ "description": [], "path": "x-pack/plugins/remote_clusters/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "remoteClusters", @@ -57,7 +60,8 @@ "label": "isUiEnabled", "description": [], "path": "x-pack/plugins/remote_clusters/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", diff --git a/api_docs/remote_clusters.mdx b/api_docs/remote_clusters.mdx index ce14622834d01..a3f07005a4347 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'remoteClusters'] --- import remoteClustersObj from './remote_clusters.devdocs.json'; diff --git a/api_docs/reporting.devdocs.json b/api_docs/reporting.devdocs.json index d256af7da9a0a..73904f6beaab9 100644 --- a/api_docs/reporting.devdocs.json +++ b/api_docs/reporting.devdocs.json @@ -15,6 +15,7 @@ ], "path": "x-pack/plugins/reporting/public/shared/get_shared_components.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "reporting", @@ -40,6 +41,7 @@ ], "path": "x-pack/plugins/reporting/public/shared/get_shared_components.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -53,7 +55,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/reporting/public/share_context_menu/reporting_panel_content/reporting_panel_content.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -70,7 +73,8 @@ "\"canvas\" | \"print\" | undefined" ], "path": "x-pack/plugins/reporting/public/shared/get_shared_components.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "reporting", @@ -85,7 +89,8 @@ "string | undefined" ], "path": "x-pack/plugins/reporting/public/shared/get_shared_components.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "reporting", @@ -101,6 +106,7 @@ ], "path": "x-pack/plugins/reporting/public/shared/get_shared_components.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -118,6 +124,7 @@ ], "path": "x-pack/plugins/reporting/public/shared/get_shared_components.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "reporting", @@ -143,6 +150,7 @@ ], "path": "x-pack/plugins/reporting/public/shared/get_shared_components.tsx", "deprecated": true, + "trackAdoption": false, "references": [], "children": [ { @@ -163,6 +171,7 @@ ], "path": "x-pack/plugins/reporting/public/shared/get_shared_components.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -190,6 +199,7 @@ ], "path": "x-pack/plugins/reporting/public/shared/get_shared_components.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "reporting", @@ -209,6 +219,7 @@ ], "path": "x-pack/plugins/reporting/public/shared/get_shared_components.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -236,6 +247,7 @@ ], "path": "x-pack/plugins/reporting/public/shared/get_shared_components.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "reporting", @@ -255,6 +267,7 @@ ], "path": "x-pack/plugins/reporting/public/shared/get_shared_components.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -287,6 +300,7 @@ ], "path": "x-pack/plugins/reporting/public/index.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -318,6 +332,7 @@ ], "path": "x-pack/plugins/reporting/server/types.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -357,6 +372,7 @@ ], "path": "x-pack/plugins/reporting/common/types/base.ts", "deprecated": true, + "trackAdoption": false, "references": [], "children": [ { @@ -367,7 +383,8 @@ "label": "headers", "description": [], "path": "x-pack/plugins/reporting/common/types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "reporting", @@ -380,7 +397,8 @@ "string | undefined" ], "path": "x-pack/plugins/reporting/common/types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "reporting", @@ -393,7 +411,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/reporting/common/types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -426,6 +445,7 @@ ], "path": "x-pack/plugins/reporting/common/types/base.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "reporting", @@ -435,7 +455,8 @@ "label": "headers", "description": [], "path": "x-pack/plugins/reporting/common/types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "reporting", @@ -448,7 +469,8 @@ "string | undefined" ], "path": "x-pack/plugins/reporting/common/types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "reporting", @@ -461,7 +483,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/reporting/common/types/base.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -485,6 +508,7 @@ ], "path": "x-pack/plugins/reporting/common/types/url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "reporting", @@ -494,7 +518,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/reporting/common/types/url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "reporting", @@ -506,7 +531,8 @@ "\nKibana version used to create the params" ], "path": "x-pack/plugins/reporting/common/types/url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "reporting", @@ -521,7 +547,8 @@ "P" ], "path": "x-pack/plugins/reporting/common/types/url.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -553,6 +580,7 @@ ], "path": "x-pack/plugins/reporting/common/types/base.ts", "deprecated": true, + "trackAdoption": false, "references": [], "initialIsOpen": false }, @@ -590,6 +618,7 @@ ], "path": "x-pack/plugins/reporting/common/types/base.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -616,6 +645,7 @@ ], "path": "x-pack/plugins/reporting/common/types/export_types/printable_pdf.ts", "deprecated": true, + "trackAdoption": false, "references": [], "initialIsOpen": false }, @@ -651,6 +681,7 @@ ], "path": "x-pack/plugins/reporting/common/types/export_types/printable_pdf_v2.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/reporting.mdx b/api_docs/reporting.mdx index bcccf4ec1dc95..d29a5518fd4dd 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'reporting'] --- import reportingObj from './reporting.devdocs.json'; diff --git a/api_docs/rollup.devdocs.json b/api_docs/rollup.devdocs.json index d129747977185..455e264f6ee57 100644 --- a/api_docs/rollup.devdocs.json +++ b/api_docs/rollup.devdocs.json @@ -34,6 +34,7 @@ ], "path": "x-pack/plugins/rollup/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48,6 +49,7 @@ ], "path": "x-pack/plugins/rollup/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -62,6 +64,7 @@ ], "path": "x-pack/plugins/rollup/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -76,6 +79,7 @@ ], "path": "x-pack/plugins/rollup/common/ui_metric.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -90,6 +94,7 @@ ], "path": "x-pack/plugins/rollup/common/ui_metric.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -104,6 +109,7 @@ ], "path": "x-pack/plugins/rollup/common/ui_metric.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -118,6 +124,7 @@ ], "path": "x-pack/plugins/rollup/common/ui_metric.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -132,6 +139,7 @@ ], "path": "x-pack/plugins/rollup/common/ui_metric.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -146,6 +154,7 @@ ], "path": "x-pack/plugins/rollup/common/ui_metric.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -160,6 +169,7 @@ ], "path": "x-pack/plugins/rollup/common/ui_metric.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -174,6 +184,7 @@ ], "path": "x-pack/plugins/rollup/common/ui_metric.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -188,6 +199,7 @@ ], "path": "x-pack/plugins/rollup/common/ui_metric.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -202,6 +214,7 @@ ], "path": "x-pack/plugins/rollup/common/ui_metric.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -216,6 +229,7 @@ ], "path": "x-pack/plugins/rollup/common/ui_metric.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -230,6 +244,7 @@ ], "path": "x-pack/plugins/rollup/common/ui_metric.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -244,6 +259,7 @@ ], "path": "x-pack/plugins/rollup/common/ui_metric.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -258,6 +274,7 @@ ], "path": "x-pack/plugins/rollup/common/ui_metric.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -272,6 +289,7 @@ ], "path": "x-pack/plugins/rollup/common/ui_metric.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -285,6 +303,7 @@ "description": [], "path": "x-pack/plugins/rollup/common/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "rollup", @@ -294,7 +313,8 @@ "label": "ID", "description": [], "path": "x-pack/plugins/rollup/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "rollup", @@ -307,7 +327,8 @@ "\"basic\"" ], "path": "x-pack/plugins/rollup/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/rollup.mdx b/api_docs/rollup.mdx index ae1b00f5dd7b7..b7b0340b07665 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'rollup'] --- import rollupObj from './rollup.devdocs.json'; diff --git a/api_docs/rule_registry.devdocs.json b/api_docs/rule_registry.devdocs.json index e2ef0bd007a6b..dff8ff4faf897 100644 --- a/api_docs/rule_registry.devdocs.json +++ b/api_docs/rule_registry.devdocs.json @@ -21,6 +21,7 @@ ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -34,6 +35,7 @@ ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -47,6 +49,7 @@ ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -64,6 +67,7 @@ ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -77,6 +81,7 @@ ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -110,6 +115,7 @@ ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -124,6 +130,7 @@ ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -155,6 +162,7 @@ ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -169,6 +177,7 @@ ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -198,6 +207,7 @@ ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -208,6 +218,7 @@ "description": [], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -220,7 +231,8 @@ "object | undefined" ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -233,7 +245,8 @@ "object | undefined" ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -246,7 +259,8 @@ "string | undefined" ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -259,7 +273,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -272,7 +287,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -285,7 +301,8 @@ "number | undefined" ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -299,7 +316,8 @@ "[] | undefined" ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -312,7 +330,8 @@ "(string | number)[] | undefined" ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -331,6 +350,7 @@ ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -344,6 +364,7 @@ ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -361,6 +382,7 @@ ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -374,6 +396,7 @@ ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/alerts_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -408,6 +431,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -421,6 +445,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -440,6 +465,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -453,7 +479,8 @@ "label": "indexName", "description": [], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -463,7 +490,8 @@ "label": "kibanaVersion", "description": [], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -477,6 +505,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -490,6 +519,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -507,6 +537,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -529,6 +560,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -539,6 +571,7 @@ "description": [], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -551,7 +584,8 @@ "string | undefined" ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -578,6 +612,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -588,6 +623,7 @@ "description": [], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -600,7 +636,8 @@ "string | undefined" ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -636,6 +673,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -649,6 +687,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -662,6 +701,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -679,6 +719,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -694,6 +735,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -707,6 +749,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -724,6 +767,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -737,6 +781,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -754,6 +799,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -767,6 +813,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -786,6 +833,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -803,6 +851,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -833,6 +882,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -852,6 +902,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -879,6 +930,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -892,6 +944,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -912,6 +965,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -929,6 +983,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -942,6 +997,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -971,6 +1027,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -984,6 +1041,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1004,6 +1062,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1031,6 +1090,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -1044,6 +1104,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -1054,6 +1115,7 @@ "description": [], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -1066,7 +1128,8 @@ "\"error\" | \"config\"" ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/errors.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -1079,7 +1142,8 @@ "string | undefined" ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/errors.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -1092,7 +1156,8 @@ "string | undefined" ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/errors.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1121,6 +1186,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -1134,6 +1200,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -1147,6 +1214,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1161,6 +1229,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1175,6 +1244,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1212,6 +1282,7 @@ ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/audit_events.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -1231,6 +1302,7 @@ ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/audit_events.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1297,6 +1369,7 @@ ], "path": "x-pack/plugins/rule_registry/server/utils/create_lifecycle_executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -1310,6 +1383,7 @@ ], "path": "x-pack/plugins/rule_registry/server/utils/create_lifecycle_executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1333,6 +1407,7 @@ ], "path": "x-pack/plugins/rule_registry/server/utils/create_lifecycle_executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1393,6 +1468,7 @@ ], "path": "x-pack/plugins/rule_registry/server/utils/create_lifecycle_rule_type_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -1403,6 +1479,7 @@ "description": [], "path": "x-pack/plugins/rule_registry/server/utils/create_lifecycle_rule_type_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -1415,7 +1492,8 @@ "Logger" ], "path": "x-pack/plugins/rule_registry/server/utils/create_lifecycle_rule_type_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -1434,7 +1512,8 @@ } ], "path": "x-pack/plugins/rule_registry/server/utils/create_lifecycle_rule_type_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1556,6 +1635,7 @@ ], "path": "x-pack/plugins/rule_registry/server/utils/create_persistence_rule_type_wrapper.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -1579,6 +1659,7 @@ ], "path": "x-pack/plugins/rule_registry/server/utils/create_persistence_rule_type_wrapper.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1596,6 +1677,7 @@ "description": [], "path": "x-pack/plugins/rule_registry/server/alert_data_client/audit_events.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -1614,7 +1696,8 @@ } ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/audit_events.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -1628,7 +1711,8 @@ " | undefined" ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/audit_events.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -1641,7 +1725,8 @@ "string | undefined" ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/audit_events.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -1654,7 +1739,8 @@ "Error | undefined" ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/audit_events.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1670,6 +1756,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -1679,7 +1766,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -1693,7 +1781,8 @@ " | undefined" ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -1707,7 +1796,8 @@ " | undefined" ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -1721,7 +1811,8 @@ " | undefined" ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1737,6 +1828,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -1751,7 +1843,8 @@ "\"logs\" | \"apm\" | \"uptime\" | \"siem\" | \"infrastructure\" | \"observability\"" ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -1763,7 +1856,8 @@ "\nRegistration context which defines a solution or an app within a solution." ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -1784,7 +1878,8 @@ } ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -1799,7 +1894,8 @@ "string[]" ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -1821,7 +1917,8 @@ "[]" ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -1843,7 +1940,8 @@ " | undefined" ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -1865,7 +1963,8 @@ " | undefined" ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -1880,7 +1979,8 @@ "string | undefined" ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -1895,7 +1995,8 @@ "string | undefined" ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1911,6 +2012,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -1924,7 +2026,8 @@ " | undefined" ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1938,6 +2041,7 @@ "description": [], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -1947,7 +2051,8 @@ "label": "indexName", "description": [], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -1961,6 +2066,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -1974,6 +2080,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1987,7 +2094,8 @@ "label": "kibanaVersion", "description": [], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -2001,6 +2109,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2023,6 +2132,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2033,6 +2143,7 @@ "description": [], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2045,7 +2156,8 @@ "string | undefined" ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2072,6 +2184,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2082,6 +2195,7 @@ "description": [], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2094,7 +2208,8 @@ "string | undefined" ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2113,6 +2228,7 @@ "description": [], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2130,6 +2246,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2143,6 +2260,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2168,6 +2286,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2181,6 +2300,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -2200,6 +2320,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2215,6 +2336,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2232,6 +2354,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2245,6 +2368,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2266,6 +2390,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2279,6 +2404,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2298,6 +2424,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2315,6 +2442,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2347,6 +2475,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2368,6 +2497,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2399,6 +2529,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2412,6 +2543,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2432,6 +2564,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2463,6 +2596,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2476,6 +2610,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2496,6 +2631,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2515,6 +2651,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2528,6 +2665,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2545,6 +2683,7 @@ "description": [], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2564,6 +2703,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2578,6 +2718,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2605,6 +2746,7 @@ ], "path": "x-pack/plugins/rule_registry/server/utils/create_lifecycle_executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2626,6 +2768,7 @@ ], "path": "x-pack/plugins/rule_registry/server/utils/create_lifecycle_executor.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2639,7 +2782,8 @@ "{ id: string; fields: ExplicitAlertFields; }" ], "path": "x-pack/plugins/rule_registry/server/utils/create_lifecycle_executor.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2655,6 +2799,7 @@ ], "path": "x-pack/plugins/rule_registry/server/utils/create_lifecycle_executor.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2668,6 +2813,7 @@ ], "path": "x-pack/plugins/rule_registry/server/utils/create_lifecycle_executor.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2695,6 +2841,7 @@ ], "path": "x-pack/plugins/rule_registry/server/utils/persistence_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2709,7 +2856,8 @@ " & { _id: string; _index: string; })[]" ], "path": "x-pack/plugins/rule_registry/server/utils/persistence_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -2722,7 +2870,8 @@ "{ [x: string]: { count: number; statusCode: number; }; }" ], "path": "x-pack/plugins/rule_registry/server/utils/persistence_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -2732,7 +2881,8 @@ "label": "alertsWereTruncated", "description": [], "path": "x-pack/plugins/rule_registry/server/utils/persistence_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2746,6 +2896,7 @@ "description": [], "path": "x-pack/plugins/rule_registry/server/utils/persistence_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2767,6 +2918,7 @@ ], "path": "x-pack/plugins/rule_registry/server/utils/persistence_types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2780,7 +2932,8 @@ "{ _id: string; _source: T; }[]" ], "path": "x-pack/plugins/rule_registry/server/utils/persistence_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -2793,7 +2946,8 @@ "boolean | \"wait_for\"" ], "path": "x-pack/plugins/rule_registry/server/utils/persistence_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -2806,7 +2960,8 @@ "number | undefined" ], "path": "x-pack/plugins/rule_registry/server/utils/persistence_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2822,6 +2977,7 @@ "description": [], "path": "x-pack/plugins/rule_registry/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2843,6 +2999,7 @@ ], "path": "x-pack/plugins/rule_registry/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2858,6 +3015,7 @@ "description": [], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -2870,7 +3028,8 @@ "IndexInfo" ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -2887,7 +3046,8 @@ ", namespace: string) => Promise; }" ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -2897,7 +3057,8 @@ "label": "isWriteEnabled", "description": [], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -2907,7 +3068,8 @@ "label": "isWriterCacheEnabled", "description": [], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -2928,7 +3090,8 @@ ">" ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -2949,7 +3112,8 @@ ">" ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -2962,7 +3126,8 @@ "Logger" ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2978,6 +3143,7 @@ "description": [], "path": "x-pack/plugins/rule_registry/server/alert_data_client/audit_events.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2991,6 +3157,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3017,6 +3184,7 @@ ], "path": "x-pack/plugins/rule_registry/server/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3073,6 +3241,7 @@ ], "path": "x-pack/plugins/rule_registry/server/utils/persistence_types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3096,7 +3265,8 @@ "; }" ], "path": "x-pack/plugins/rule_registry/server/utils/persistence_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3117,6 +3287,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3131,6 +3302,7 @@ ], "path": "x-pack/plugins/rule_registry/server/config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3153,6 +3325,7 @@ ], "path": "x-pack/plugins/rule_registry/server/utils/create_lifecycle_executor.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3166,7 +3339,8 @@ "{ id: string; fields: ExplicitAlertFields; }" ], "path": "x-pack/plugins/rule_registry/server/utils/create_lifecycle_executor.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3193,6 +3367,7 @@ ], "path": "x-pack/plugins/rule_registry/server/utils/create_lifecycle_executor.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3230,7 +3405,8 @@ "; }" ], "path": "x-pack/plugins/rule_registry/server/utils/create_lifecycle_executor.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3247,6 +3423,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3261,6 +3438,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3283,6 +3461,7 @@ ], "path": "x-pack/plugins/rule_registry/server/utils/persistence_types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3296,7 +3475,8 @@ "{ _id: string; _source: T; }[]" ], "path": "x-pack/plugins/rule_registry/server/utils/persistence_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -3309,7 +3489,8 @@ "boolean | \"wait_for\"" ], "path": "x-pack/plugins/rule_registry/server/utils/persistence_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -3322,7 +3503,8 @@ "number | undefined" ], "path": "x-pack/plugins/rule_registry/server/utils/persistence_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3371,6 +3553,7 @@ ], "path": "x-pack/plugins/rule_registry/server/utils/persistence_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3391,6 +3574,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/rule_data_plugin_service.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3405,6 +3589,7 @@ ], "path": "x-pack/plugins/rule_registry/server/config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3419,6 +3604,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3433,6 +3619,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_plugin_service/index_options.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3452,6 +3639,7 @@ ], "path": "x-pack/plugins/rule_registry/server/rule_data_client/rule_data_client.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3465,6 +3653,7 @@ "description": [], "path": "x-pack/plugins/rule_registry/server/alert_data_client/audit_events.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -3483,7 +3672,8 @@ } ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/audit_events.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -3502,7 +3692,8 @@ } ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/audit_events.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -3521,7 +3712,8 @@ } ], "path": "x-pack/plugins/rule_registry/server/alert_data_client/audit_events.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3536,6 +3728,7 @@ "description": [], "path": "x-pack/plugins/rule_registry/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -3554,7 +3747,8 @@ } ], "path": "x-pack/plugins/rule_registry/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -3569,6 +3763,7 @@ "description": [], "path": "x-pack/plugins/rule_registry/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -3592,6 +3787,7 @@ ], "path": "x-pack/plugins/rule_registry/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -3606,6 +3802,7 @@ ], "path": "x-pack/plugins/rule_registry/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3628,7 +3825,8 @@ } ], "path": "x-pack/plugins/rule_registry/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", @@ -3650,6 +3848,7 @@ ], "path": "x-pack/plugins/rule_registry/common/parse_technical_fields.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -3663,6 +3862,7 @@ ], "path": "x-pack/plugins/rule_registry/common/parse_technical_fields.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3677,6 +3877,7 @@ ], "path": "x-pack/plugins/rule_registry/common/parse_technical_fields.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3694,6 +3895,7 @@ "description": [], "path": "x-pack/plugins/rule_registry/common/search_strategy/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "ruleRegistry", @@ -3703,7 +3905,8 @@ "label": "pageIndex", "description": [], "path": "x-pack/plugins/rule_registry/common/search_strategy/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "ruleRegistry", @@ -3713,7 +3916,8 @@ "label": "pageSize", "description": [], "path": "x-pack/plugins/rule_registry/common/search_strategy/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3733,6 +3937,7 @@ ], "path": "x-pack/plugins/rule_registry/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3747,6 +3952,7 @@ ], "path": "x-pack/plugins/rule_registry/common/parse_technical_fields.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3784,6 +3990,7 @@ ], "path": "x-pack/plugins/rule_registry/common/search_strategy/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3811,6 +4018,7 @@ ], "path": "x-pack/plugins/rule_registry/common/search_strategy/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/rule_registry.mdx b/api_docs/rule_registry.mdx index 9a81cc141a22f..086a42a7c8e6c 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ruleRegistry'] --- import ruleRegistryObj from './rule_registry.devdocs.json'; diff --git a/api_docs/runtime_fields.devdocs.json b/api_docs/runtime_fields.devdocs.json index 8826b34795475..d88ed8f52aef0 100644 --- a/api_docs/runtime_fields.devdocs.json +++ b/api_docs/runtime_fields.devdocs.json @@ -23,6 +23,7 @@ ], "path": "x-pack/plugins/runtime_fields/public/components/runtime_field_editor/runtime_field_editor.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "runtimeFields", @@ -42,6 +43,7 @@ ], "path": "x-pack/plugins/runtime_fields/public/components/runtime_field_editor/runtime_field_editor.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -68,6 +70,7 @@ ], "path": "x-pack/plugins/runtime_fields/public/components/runtime_field_editor_flyout_content/runtime_field_editor_flyout_content.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "runtimeFields", @@ -87,6 +90,7 @@ ], "path": "x-pack/plugins/runtime_fields/public/components/runtime_field_editor_flyout_content/runtime_field_editor_flyout_content.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -104,6 +108,7 @@ "description": [], "path": "x-pack/plugins/runtime_fields/public/components/runtime_field_form/runtime_field_form.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "runtimeFields", @@ -116,7 +121,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/runtime_fields/public/components/runtime_field_form/runtime_field_form.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "runtimeFields", @@ -126,7 +132,8 @@ "label": "isSubmitted", "description": [], "path": "x-pack/plugins/runtime_fields/public/components/runtime_field_form/runtime_field_form.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "runtimeFields", @@ -148,6 +155,7 @@ ], "path": "x-pack/plugins/runtime_fields/public/components/runtime_field_form/runtime_field_form.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -161,7 +169,8 @@ "React.MouseEvent | React.FormEvent | undefined" ], "path": "src/plugins/es_ui_shared/static/forms/hook_form_lib/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -177,6 +186,7 @@ "description": [], "path": "x-pack/plugins/runtime_fields/public/components/runtime_field_editor_flyout_content/runtime_field_editor_flyout_content.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "runtimeFields", @@ -200,6 +210,7 @@ ], "path": "x-pack/plugins/runtime_fields/public/components/runtime_field_editor_flyout_content/runtime_field_editor_flyout_content.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "runtimeFields", @@ -219,6 +230,7 @@ ], "path": "x-pack/plugins/runtime_fields/public/components/runtime_field_editor_flyout_content/runtime_field_editor_flyout_content.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -238,6 +250,7 @@ ], "path": "x-pack/plugins/runtime_fields/public/components/runtime_field_editor_flyout_content/runtime_field_editor_flyout_content.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -254,7 +267,8 @@ "DocLinksStart" ], "path": "x-pack/plugins/runtime_fields/public/components/runtime_field_editor_flyout_content/runtime_field_editor_flyout_content.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "runtimeFields", @@ -276,7 +290,8 @@ " | undefined" ], "path": "x-pack/plugins/runtime_fields/public/components/runtime_field_editor_flyout_content/runtime_field_editor_flyout_content.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "runtimeFields", @@ -291,7 +306,8 @@ "{ namesNotAllowed?: string[] | undefined; existingConcreteFields?: Field[] | undefined; } | undefined" ], "path": "x-pack/plugins/runtime_fields/public/components/runtime_field_editor_flyout_content/runtime_field_editor_flyout_content.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -305,6 +321,7 @@ "description": [], "path": "x-pack/plugins/runtime_fields/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "runtimeFields", @@ -314,7 +331,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/runtime_fields/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "runtimeFields", @@ -327,7 +345,8 @@ "\"boolean\" | \"date\" | \"keyword\" | \"ip\" | \"long\" | \"double\"" ], "path": "x-pack/plugins/runtime_fields/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "runtimeFields", @@ -340,7 +359,8 @@ "{ source: string; }" ], "path": "x-pack/plugins/runtime_fields/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -361,6 +381,7 @@ ], "path": "x-pack/plugins/runtime_fields/public/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -375,6 +396,7 @@ ], "path": "x-pack/plugins/runtime_fields/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -388,6 +410,7 @@ "description": [], "path": "x-pack/plugins/runtime_fields/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "runtimeFields", @@ -403,6 +426,7 @@ ], "path": "x-pack/plugins/runtime_fields/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } diff --git a/api_docs/runtime_fields.mdx b/api_docs/runtime_fields.mdx index 95a2a9a38f9e4..4b03559bc8d9c 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'runtimeFields'] --- import runtimeFieldsObj from './runtime_fields.devdocs.json'; diff --git a/api_docs/saved_objects.devdocs.json b/api_docs/saved_objects.devdocs.json index 4dabcf40e6742..31a0d6adba0d9 100644 --- a/api_docs/saved_objects.devdocs.json +++ b/api_docs/saved_objects.devdocs.json @@ -29,6 +29,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -39,6 +40,7 @@ "description": [], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -53,6 +55,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -66,7 +69,8 @@ "{ [key: string]: any; }" ], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -76,7 +80,8 @@ "label": "propName", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -86,7 +91,8 @@ "label": "componentName", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -96,7 +102,8 @@ "label": "location", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -106,7 +113,8 @@ "label": "propFullName", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -125,6 +133,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -138,7 +147,8 @@ "{ [key: string]: any; }" ], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -148,7 +158,8 @@ "label": "propName", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -158,7 +169,8 @@ "label": "componentName", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -168,7 +180,8 @@ "label": "location", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -178,7 +191,8 @@ "label": "propFullName", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -195,6 +209,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -208,7 +223,8 @@ "{ [key: string]: any; }" ], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -218,7 +234,8 @@ "label": "propName", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -228,7 +245,8 @@ "label": "componentName", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -238,7 +256,8 @@ "label": "location", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -248,7 +267,8 @@ "label": "propFullName", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -265,6 +285,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -278,7 +299,8 @@ "{ [key: string]: any; }" ], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -288,7 +310,8 @@ "label": "propName", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -298,7 +321,8 @@ "label": "componentName", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -308,7 +332,8 @@ "label": "location", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -318,7 +343,8 @@ "label": "propFullName", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -335,6 +361,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -348,7 +375,8 @@ "{ [key: string]: any; }" ], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -358,7 +386,8 @@ "label": "propName", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -368,7 +397,8 @@ "label": "componentName", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -378,7 +408,8 @@ "label": "location", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -388,7 +419,8 @@ "label": "propFullName", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -405,6 +437,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -418,7 +451,8 @@ "{ [key: string]: any; }" ], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -428,7 +462,8 @@ "label": "propName", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -438,7 +473,8 @@ "label": "componentName", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -448,7 +484,8 @@ "label": "location", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -458,7 +495,8 @@ "label": "propFullName", "description": [], "path": "node_modules/@types/prop-types/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -476,6 +514,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -495,6 +534,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -512,6 +552,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -527,6 +568,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -542,6 +584,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -578,6 +621,7 @@ "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [ { "plugin": "embeddable", @@ -634,6 +678,7 @@ "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -643,7 +688,8 @@ "label": "title", "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -653,7 +699,8 @@ "label": "copyOnSave", "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -663,7 +710,8 @@ "label": "isTitleDuplicateConfirmed", "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -673,7 +721,8 @@ "label": "hasTitleDuplicate", "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -683,7 +732,8 @@ "label": "isLoading", "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -693,7 +743,8 @@ "label": "visualizationDescription", "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -709,6 +760,7 @@ ], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -741,6 +793,7 @@ ], "path": "src/plugins/saved_objects/public/saved_object/helpers/check_for_duplicate_title.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -762,6 +815,7 @@ ], "path": "src/plugins/saved_objects/public/saved_object/helpers/check_for_duplicate_title.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -776,6 +830,7 @@ ], "path": "src/plugins/saved_objects/public/saved_object/helpers/check_for_duplicate_title.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -790,6 +845,7 @@ ], "path": "src/plugins/saved_objects/public/saved_object/helpers/check_for_duplicate_title.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -806,6 +862,7 @@ ], "path": "src/plugins/saved_objects/public/saved_object/helpers/check_for_duplicate_title.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -830,6 +887,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -843,6 +901,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -857,6 +916,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -877,6 +937,7 @@ ], "path": "src/plugins/saved_objects/public/saved_object/helpers/save_saved_object.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -887,6 +948,7 @@ "description": [], "path": "src/plugins/saved_objects/public/saved_object/helpers/save_saved_object.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -896,7 +958,8 @@ "label": "message", "description": [], "path": "src/plugins/saved_objects/public/saved_object/helpers/save_saved_object.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -924,6 +987,7 @@ ], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal_origin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -943,6 +1007,7 @@ ], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal_origin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -977,6 +1042,7 @@ ], "path": "src/plugins/saved_objects/public/saved_object/helpers/save_with_confirmation.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -992,6 +1058,7 @@ ], "path": "src/plugins/saved_objects/public/saved_object/helpers/save_with_confirmation.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1003,6 +1070,7 @@ "description": [], "path": "src/plugins/saved_objects/public/saved_object/helpers/save_with_confirmation.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -1016,6 +1084,7 @@ ], "path": "src/plugins/saved_objects/public/saved_object/helpers/save_with_confirmation.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1027,7 +1096,8 @@ "label": "title", "description": [], "path": "src/plugins/saved_objects/public/saved_object/helpers/save_with_confirmation.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1037,7 +1107,8 @@ "label": "displayName", "description": [], "path": "src/plugins/saved_objects/public/saved_object/helpers/save_with_confirmation.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1055,6 +1126,7 @@ ], "path": "src/plugins/saved_objects/public/saved_object/helpers/save_with_confirmation.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1066,6 +1138,7 @@ "description": [], "path": "src/plugins/saved_objects/public/saved_object/helpers/save_with_confirmation.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -1078,7 +1151,8 @@ "SavedObjectsClientContract" ], "path": "src/plugins/saved_objects/public/saved_object/helpers/save_with_confirmation.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1091,7 +1165,8 @@ "OverlayStart" ], "path": "src/plugins/saved_objects/public/saved_object/helpers/save_with_confirmation.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1113,6 +1188,7 @@ ], "path": "src/plugins/saved_objects/public/save_modal/show_saved_object_save_modal.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -1126,6 +1202,7 @@ ], "path": "src/plugins/saved_objects/public/save_modal/show_saved_object_save_modal.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1140,6 +1217,7 @@ ], "path": "src/plugins/saved_objects/public/save_modal/show_saved_object_save_modal.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1154,6 +1232,7 @@ ], "path": "src/plugins/saved_objects/public/save_modal/show_saved_object_save_modal.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1171,6 +1250,7 @@ "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -1180,7 +1260,8 @@ "label": "newTitle", "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1190,7 +1271,8 @@ "label": "newCopyOnSave", "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1200,7 +1282,8 @@ "label": "isTitleDuplicateConfirmed", "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1214,6 +1297,7 @@ ], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1225,7 +1309,8 @@ "label": "newDescription", "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1239,6 +1324,7 @@ "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal_origin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -1251,7 +1337,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal_origin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1265,6 +1352,7 @@ ], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal_origin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -1278,6 +1366,7 @@ ], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal_origin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1294,7 +1383,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal_origin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1307,7 +1397,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal_origin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1320,7 +1411,8 @@ "SaveModalDocumentInfo" ], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal_origin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1330,7 +1422,8 @@ "label": "objectType", "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal_origin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1344,6 +1437,7 @@ ], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal_origin.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1366,7 +1460,8 @@ ") => React.ReactNode)" ], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal_origin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1388,6 +1483,7 @@ ], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal_origin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -1408,6 +1504,7 @@ ], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal_origin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1428,6 +1525,7 @@ "path": "src/plugins/saved_objects/public/types.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [ { "plugin": "savedObjectsTaggingOss", @@ -1511,6 +1609,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1525,7 +1624,8 @@ "{ [x: string]: unknown; }" ], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1549,6 +1649,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -1562,6 +1663,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1575,7 +1677,8 @@ "label": "copyOnSave", "description": [], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1591,6 +1694,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -1604,6 +1708,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1620,7 +1725,8 @@ "any" ], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1634,6 +1740,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1649,6 +1756,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1664,6 +1772,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1679,6 +1788,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1694,6 +1804,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1717,6 +1828,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -1730,6 +1842,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1746,7 +1859,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1768,6 +1882,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1779,7 +1894,8 @@ "label": "isSaving", "description": [], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1793,6 +1909,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1804,7 +1921,8 @@ "label": "lastSavedTitle", "description": [], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1817,7 +1935,8 @@ "Record | undefined" ], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1839,6 +1958,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -1858,6 +1978,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1881,7 +2002,8 @@ " | undefined" ], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1901,7 +2023,8 @@ " | undefined" ], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1911,7 +2034,8 @@ "label": "showInRecentlyAccessed", "description": [], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1921,7 +2045,8 @@ "label": "title", "description": [], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -1935,7 +2060,8 @@ " | undefined" ], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1949,6 +2075,7 @@ "description": [], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -1978,6 +2105,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -1997,6 +2125,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2013,7 +2142,8 @@ "any" ], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -2031,6 +2161,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -2044,6 +2175,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2071,6 +2203,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -2084,6 +2217,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2099,6 +2233,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2115,7 +2250,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -2129,6 +2265,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2150,7 +2287,8 @@ " | undefined" ], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -2163,7 +2301,8 @@ "Record | undefined" ], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -2176,7 +2315,8 @@ "Record | undefined" ], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -2189,7 +2329,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -2210,7 +2351,8 @@ " | undefined" ], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -2223,7 +2365,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2247,6 +2390,7 @@ ], "path": "src/plugins/saved_objects/public/saved_object/decorators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -2262,6 +2406,7 @@ ], "path": "src/plugins/saved_objects/public/saved_object/decorators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2287,6 +2432,7 @@ ], "path": "src/plugins/saved_objects/public/saved_object/decorators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -2306,6 +2452,7 @@ ], "path": "src/plugins/saved_objects/public/saved_object/decorators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2325,6 +2472,7 @@ ], "path": "src/plugins/saved_objects/public/saved_object/decorators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -2338,6 +2486,7 @@ ], "path": "src/plugins/saved_objects/public/saved_object/decorators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2365,6 +2514,7 @@ ], "path": "src/plugins/saved_objects/public/saved_object/decorators/registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -2376,7 +2526,8 @@ "\nThe id of the decorator" ], "path": "src/plugins/saved_objects/public/saved_object/decorators/registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -2388,7 +2539,8 @@ "\nHighest priority will be called **last**\n(the decoration will be at the highest level)" ], "path": "src/plugins/saved_objects/public/saved_object/decorators/registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -2414,6 +2566,7 @@ ], "path": "src/plugins/saved_objects/public/saved_object/decorators/registry.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2427,7 +2580,8 @@ "SavedObjectKibanaServices" ], "path": "src/plugins/saved_objects/public/saved_object/decorators/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2453,6 +2607,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -2462,7 +2617,8 @@ "label": "type", "description": [], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -2472,7 +2628,8 @@ "label": "name", "description": [], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -2489,6 +2646,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -2503,6 +2661,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2522,6 +2681,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -2536,6 +2696,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2555,6 +2716,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -2569,6 +2731,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2588,6 +2751,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -2602,6 +2766,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2618,7 +2783,8 @@ "string[] | undefined" ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -2631,7 +2797,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2645,6 +2812,7 @@ "description": [], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -2657,7 +2825,8 @@ "boolean | undefined" ], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -2670,7 +2839,8 @@ "boolean | undefined" ], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -2684,6 +2854,7 @@ ], "path": "src/plugins/saved_objects/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2698,7 +2869,8 @@ "boolean | undefined" ], "path": "src/plugins/saved_objects/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2712,6 +2884,7 @@ "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -2721,7 +2894,8 @@ "label": "title", "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -2731,7 +2905,8 @@ "label": "copyOnSave", "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -2741,7 +2916,8 @@ "label": "isTitleDuplicateConfirmed", "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -2751,7 +2927,8 @@ "label": "hasTitleDuplicate", "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -2761,7 +2938,8 @@ "label": "isLoading", "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjects", @@ -2771,7 +2949,8 @@ "label": "visualizationDescription", "description": [], "path": "src/plugins/saved_objects/public/save_modal/saved_object_save_modal.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2791,6 +2970,7 @@ ], "path": "src/plugins/saved_objects/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2805,6 +2985,7 @@ ], "path": "src/plugins/saved_objects/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2829,6 +3010,7 @@ ], "path": "src/plugins/saved_objects/public/saved_object/decorators/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2842,7 +3024,8 @@ "SavedObjectKibanaServices" ], "path": "src/plugins/saved_objects/public/saved_object/decorators/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2864,6 +3047,7 @@ ], "path": "src/plugins/saved_objects/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2880,6 +3064,7 @@ ], "path": "src/plugins/saved_objects/public/save_modal/show_saved_object_save_modal.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -2893,6 +3078,7 @@ "description": [], "path": "src/plugins/saved_objects/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -2916,6 +3102,7 @@ "path": "src/plugins/saved_objects/public/plugin.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [ { "plugin": "dashboard", @@ -2938,6 +3125,7 @@ "path": "src/plugins/saved_objects/public/plugin.ts", "deprecated": true, "removeBy": "8.8.0", + "trackAdoption": false, "references": [] } ], @@ -2953,6 +3141,7 @@ "description": [], "path": "src/plugins/saved_objects/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -2974,6 +3163,7 @@ ], "path": "src/plugins/saved_objects/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjects", @@ -2994,6 +3184,7 @@ ], "path": "src/plugins/saved_objects/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3030,6 +3221,7 @@ ], "path": "src/plugins/saved_objects/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3044,6 +3236,7 @@ ], "path": "src/plugins/saved_objects/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/saved_objects.mdx b/api_docs/saved_objects.mdx index 8dc8d6422f9dd..581e5be0e084f 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjects'] --- import savedObjectsObj from './saved_objects.devdocs.json'; diff --git a/api_docs/saved_objects_finder.devdocs.json b/api_docs/saved_objects_finder.devdocs.json index e64b6f25499a6..1ab97efddadfb 100644 --- a/api_docs/saved_objects_finder.devdocs.json +++ b/api_docs/saved_objects_finder.devdocs.json @@ -23,6 +23,7 @@ ], "path": "src/plugins/saved_objects_finder/public/finder/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsFinder", @@ -42,6 +43,7 @@ ], "path": "src/plugins/saved_objects_finder/public/finder/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -69,6 +71,7 @@ ], "path": "src/plugins/saved_objects_finder/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsFinder", @@ -78,7 +81,8 @@ "label": "type", "description": [], "path": "src/plugins/saved_objects_finder/public/finder/saved_object_finder.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsFinder", @@ -88,7 +92,8 @@ "label": "name", "description": [], "path": "src/plugins/saved_objects_finder/public/finder/saved_object_finder.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsFinder", @@ -105,6 +110,7 @@ ], "path": "src/plugins/saved_objects_finder/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsFinder", @@ -119,6 +125,7 @@ ], "path": "src/plugins/saved_objects_finder/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -138,6 +145,7 @@ ], "path": "src/plugins/saved_objects_finder/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsFinder", @@ -152,6 +160,7 @@ ], "path": "src/plugins/saved_objects_finder/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -171,6 +180,7 @@ ], "path": "src/plugins/saved_objects_finder/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsFinder", @@ -185,6 +195,7 @@ ], "path": "src/plugins/saved_objects_finder/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -204,6 +215,7 @@ ], "path": "src/plugins/saved_objects_finder/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsFinder", @@ -218,6 +230,7 @@ ], "path": "src/plugins/saved_objects_finder/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -234,7 +247,8 @@ "string[] | undefined" ], "path": "src/plugins/saved_objects_finder/public/finder/saved_object_finder.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsFinder", @@ -247,7 +261,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects_finder/public/finder/saved_object_finder.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -267,6 +282,7 @@ ], "path": "src/plugins/saved_objects_finder/public/finder/saved_object_finder.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/saved_objects_finder.mdx b/api_docs/saved_objects_finder.mdx index 452dc0234d866..d76a6d9879ca8 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsFinder'] --- import savedObjectsFinderObj from './saved_objects_finder.devdocs.json'; diff --git a/api_docs/saved_objects_management.devdocs.json b/api_docs/saved_objects_management.devdocs.json index a2946c15d50dd..f148fcdfe865f 100644 --- a/api_docs/saved_objects_management.devdocs.json +++ b/api_docs/saved_objects_management.devdocs.json @@ -11,6 +11,7 @@ "description": [], "path": "src/plugins/saved_objects_management/public/services/types/action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -24,6 +25,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/types/action.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -35,7 +37,8 @@ "label": "id", "description": [], "path": "src/plugins/saved_objects_management/public/services/types/action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -80,7 +83,8 @@ ") => any) | undefined; }" ], "path": "src/plugins/saved_objects_management/public/services/types/action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -93,7 +97,8 @@ "(() => { type: string; id: string; }[]) | undefined" ], "path": "src/plugins/saved_objects_management/public/services/types/action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -106,7 +111,8 @@ "ActionContext | null" ], "path": "src/plugins/saved_objects_management/public/services/types/action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -126,7 +132,8 @@ " | null" ], "path": "src/plugins/saved_objects_management/public/services/types/action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -140,6 +147,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/types/action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -153,6 +161,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/types/action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -170,6 +179,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/types/action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -183,6 +193,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/types/action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -208,6 +219,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/types/action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -227,6 +239,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/types/action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -244,6 +257,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/types/action.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -259,6 +273,7 @@ "description": [], "path": "src/plugins/saved_objects_management/public/services/types/column.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -268,7 +283,8 @@ "label": "id", "description": [], "path": "src/plugins/saved_objects_management/public/services/types/column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -321,7 +337,8 @@ ") => React.ReactNode) | undefined; }) | undefined; }" ], "path": "src/plugins/saved_objects_management/public/services/types/column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -334,7 +351,8 @@ "(() => { type: string; id: string; }[]) | undefined" ], "path": "src/plugins/saved_objects_management/public/services/types/column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -347,7 +365,8 @@ "ColumnContext | null" ], "path": "src/plugins/saved_objects_management/public/services/types/column.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -361,6 +380,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/types/column.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -374,6 +394,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/types/column.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -391,6 +412,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/types/column.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -404,6 +426,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/types/column.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -421,6 +444,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/types/column.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -450,6 +474,7 @@ ], "path": "src/plugins/saved_objects_management/public/lib/process_import_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -463,6 +488,7 @@ ], "path": "src/plugins/saved_objects_management/public/lib/process_import_response.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -480,6 +506,7 @@ "description": [], "path": "src/plugins/saved_objects_management/public/lib/process_import_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -492,7 +519,8 @@ "{ type: string; id: string; meta: { title?: string | undefined; icon?: string | undefined; }; overwrite?: boolean | undefined; }" ], "path": "src/plugins/saved_objects_management/public/lib/process_import_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -513,7 +541,8 @@ "SavedObjectsImportUnknownError" ], "path": "src/plugins/saved_objects_management/public/lib/process_import_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -527,6 +556,7 @@ "description": [], "path": "src/plugins/saved_objects_management/public/lib/process_import_response.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -546,7 +576,8 @@ "[]" ], "path": "src/plugins/saved_objects_management/public/lib/process_import_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -560,7 +591,8 @@ "[]" ], "path": "src/plugins/saved_objects_management/public/lib/process_import_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -573,7 +605,8 @@ "UnmatchedReference[]" ], "path": "src/plugins/saved_objects_management/public/lib/process_import_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -586,7 +619,8 @@ "\"success\" | \"idle\"" ], "path": "src/plugins/saved_objects_management/public/lib/process_import_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -596,7 +630,8 @@ "label": "importCount", "description": [], "path": "src/plugins/saved_objects_management/public/lib/process_import_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -610,7 +645,8 @@ "[]" ], "path": "src/plugins/saved_objects_management/public/lib/process_import_response.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -624,6 +660,7 @@ "description": [], "path": "src/plugins/saved_objects_management/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -633,7 +670,8 @@ "label": "name", "description": [], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -646,7 +684,8 @@ "\"single\" | \"multiple\" | \"multiple-isolated\" | \"agnostic\"" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -656,7 +695,8 @@ "label": "hidden", "description": [], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -666,7 +706,8 @@ "label": "displayName", "description": [], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -682,6 +723,7 @@ ], "path": "src/plugins/saved_objects_management/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -694,7 +736,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -707,7 +750,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -720,7 +764,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -733,7 +778,8 @@ "{ path: string; uiCapabilitiesPath: string; } | undefined" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -747,7 +793,8 @@ " | undefined" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -760,7 +807,8 @@ "boolean | undefined" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -776,6 +824,7 @@ ], "path": "src/plugins/saved_objects_management/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -785,7 +834,8 @@ "label": "id", "description": [], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -795,7 +845,8 @@ "label": "type", "description": [], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -808,7 +859,8 @@ "\"parent\" | \"child\"" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -827,7 +879,8 @@ } ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -841,6 +894,7 @@ "description": [], "path": "src/plugins/saved_objects_management/public/services/action_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -864,6 +918,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/action_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -883,6 +938,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/action_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -900,6 +956,7 @@ "description": [], "path": "src/plugins/saved_objects_management/public/services/action_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -915,6 +972,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/action_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -928,6 +986,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/action_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -955,6 +1014,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/action_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -970,6 +1030,7 @@ "description": [], "path": "src/plugins/saved_objects_management/public/services/column_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -993,6 +1054,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/column_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -1012,6 +1074,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/column_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1029,6 +1092,7 @@ "description": [], "path": "src/plugins/saved_objects_management/public/services/column_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -1052,6 +1116,7 @@ ], "path": "src/plugins/saved_objects_management/public/services/column_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1067,6 +1132,7 @@ "description": [], "path": "src/plugins/saved_objects_management/public/services/types/record.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -1076,7 +1142,8 @@ "label": "type", "description": [], "path": "src/plugins/saved_objects_management/public/services/types/record.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1086,7 +1153,8 @@ "label": "id", "description": [], "path": "src/plugins/saved_objects_management/public/services/types/record.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1101,7 +1169,8 @@ "; hiddenType: boolean; }" ], "path": "src/plugins/saved_objects_management/public/services/types/record.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1115,7 +1184,8 @@ "[]" ], "path": "src/plugins/saved_objects_management/public/services/types/record.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1128,7 +1198,8 @@ "string[] | undefined" ], "path": "src/plugins/saved_objects_management/public/services/types/record.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1159,6 +1230,7 @@ ], "path": "src/plugins/saved_objects_management/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1172,6 +1244,7 @@ "description": [], "path": "src/plugins/saved_objects_management/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -1190,7 +1263,8 @@ } ], "path": "src/plugins/saved_objects_management/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1209,7 +1283,8 @@ } ], "path": "src/plugins/saved_objects_management/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -1224,6 +1299,7 @@ "description": [], "path": "src/plugins/saved_objects_management/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -1242,7 +1318,8 @@ } ], "path": "src/plugins/saved_objects_management/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1261,7 +1338,8 @@ } ], "path": "src/plugins/saved_objects_management/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1283,6 +1361,7 @@ ], "path": "src/plugins/saved_objects_management/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1306,6 +1385,7 @@ ], "path": "src/plugins/saved_objects_management/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -1319,6 +1399,7 @@ ], "path": "src/plugins/saved_objects_management/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1333,6 +1414,7 @@ ], "path": "src/plugins/saved_objects_management/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1347,6 +1429,7 @@ ], "path": "src/plugins/saved_objects_management/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1372,6 +1455,7 @@ ], "path": "src/plugins/saved_objects_management/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1382,7 +1466,8 @@ "label": "type", "description": [], "path": "src/plugins/saved_objects_management/public/lib/get_saved_object_label.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1402,7 +1487,8 @@ "[]" ], "path": "src/plugins/saved_objects_management/public/lib/get_saved_object_label.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1418,6 +1504,7 @@ ], "path": "src/plugins/saved_objects_management/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1431,7 +1518,8 @@ "{ id: string; type: string; }" ], "path": "src/plugins/saved_objects_management/public/lib/get_default_title.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1457,6 +1545,7 @@ ], "path": "src/plugins/saved_objects_management/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1470,7 +1559,8 @@ "Query" ], "path": "src/plugins/saved_objects_management/public/lib/parse_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1490,7 +1580,8 @@ "[]" ], "path": "src/plugins/saved_objects_management/public/lib/parse_query.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1516,6 +1607,7 @@ ], "path": "src/plugins/saved_objects_management/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1537,7 +1629,8 @@ " | undefined; }" ], "path": "src/plugins/saved_objects_management/public/lib/get_tag_references.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1561,6 +1654,7 @@ ], "path": "src/plugins/saved_objects_management/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -1573,7 +1667,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1586,7 +1681,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1599,7 +1695,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1612,7 +1709,8 @@ "{ path: string; uiCapabilitiesPath: string; } | undefined" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1626,7 +1724,8 @@ " | undefined" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1639,7 +1738,8 @@ "boolean | undefined" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1670,6 +1770,7 @@ ], "path": "src/plugins/saved_objects_management/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1683,6 +1784,7 @@ "description": [], "path": "src/plugins/saved_objects_management/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -1696,6 +1798,7 @@ "description": [], "path": "src/plugins/saved_objects_management/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true @@ -1714,6 +1817,7 @@ "description": [], "path": "src/plugins/saved_objects_management/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -1733,7 +1837,8 @@ "[]" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1753,7 +1858,8 @@ "[]" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1767,6 +1873,7 @@ "description": [], "path": "src/plugins/saved_objects_management/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -1776,7 +1883,8 @@ "label": "id", "description": [], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1786,7 +1894,8 @@ "label": "type", "description": [], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1799,7 +1908,8 @@ "\"parent\" | \"child\"" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1809,7 +1919,8 @@ "label": "error", "description": [], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1823,6 +1934,7 @@ "description": [], "path": "src/plugins/saved_objects_management/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -1832,7 +1944,8 @@ "label": "name", "description": [], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1845,7 +1958,8 @@ "\"single\" | \"multiple\" | \"multiple-isolated\" | \"agnostic\"" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1855,7 +1969,8 @@ "label": "hidden", "description": [], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1865,7 +1980,8 @@ "label": "displayName", "description": [], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1881,6 +1997,7 @@ ], "path": "src/plugins/saved_objects_management/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -1893,7 +2010,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1906,7 +2024,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1919,7 +2038,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1932,7 +2052,8 @@ "{ path: string; uiCapabilitiesPath: string; } | undefined" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1946,7 +2067,8 @@ " | undefined" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1959,7 +2081,8 @@ "boolean | undefined" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1975,6 +2098,7 @@ ], "path": "src/plugins/saved_objects_management/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsManagement", @@ -1984,7 +2108,8 @@ "label": "id", "description": [], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -1994,7 +2119,8 @@ "label": "type", "description": [], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -2007,7 +2133,8 @@ "\"parent\" | \"child\"" ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsManagement", @@ -2026,7 +2153,8 @@ } ], "path": "src/plugins/saved_objects_management/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2046,6 +2174,7 @@ ], "path": "src/plugins/saved_objects_management/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2071,6 +2200,7 @@ ], "path": "src/plugins/saved_objects_management/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/saved_objects_management.mdx b/api_docs/saved_objects_management.mdx index 47f9040a3cd73..002ea2800bd02 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsManagement'] --- import savedObjectsManagementObj from './saved_objects_management.devdocs.json'; diff --git a/api_docs/saved_objects_tagging.devdocs.json b/api_docs/saved_objects_tagging.devdocs.json index 0ed05dcb1409e..7b3c3512e7e03 100644 --- a/api_docs/saved_objects_tagging.devdocs.json +++ b/api_docs/saved_objects_tagging.devdocs.json @@ -13,6 +13,7 @@ "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -22,7 +23,8 @@ "label": "id", "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTagging", @@ -32,7 +34,8 @@ "label": "name", "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTagging", @@ -42,7 +45,8 @@ "label": "description", "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTagging", @@ -52,7 +56,8 @@ "label": "color", "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -79,6 +84,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/public/types.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -96,6 +102,7 @@ "description": [], "path": "x-pack/plugins/saved_objects_tagging/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -108,7 +115,8 @@ "SavedObjectsClientContract" ], "path": "x-pack/plugins/saved_objects_tagging/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -122,6 +130,7 @@ "description": [], "path": "x-pack/plugins/saved_objects_tagging/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -134,7 +143,8 @@ "SavedObjectsClientContract" ], "path": "x-pack/plugins/saved_objects_tagging/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -148,6 +158,7 @@ "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -179,6 +190,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -198,6 +210,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -213,6 +226,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -238,6 +252,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -251,6 +266,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -284,6 +300,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -304,6 +321,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -321,6 +339,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -334,6 +353,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -367,6 +387,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -380,6 +401,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -400,6 +422,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -429,6 +452,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/server/services/assignments/assignment_service.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -442,6 +466,7 @@ "description": [], "path": "x-pack/plugins/saved_objects_tagging/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -472,6 +497,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -491,6 +517,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -525,6 +552,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -544,6 +572,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -578,6 +607,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/common/capabilities.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -591,6 +621,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/common/capabilities.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -609,6 +640,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/common/validation.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -622,6 +654,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/common/validation.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -640,6 +673,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/common/validation.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -653,6 +687,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/common/validation.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -671,6 +706,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/common/validation.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -684,6 +720,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/common/validation.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -701,6 +738,7 @@ "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -732,6 +770,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -751,6 +790,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -766,6 +806,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -791,6 +832,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -804,6 +846,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -837,6 +880,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -857,6 +901,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -874,6 +919,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -887,6 +933,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -920,6 +967,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -933,6 +981,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -953,6 +1002,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -970,6 +1020,7 @@ "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -979,7 +1030,8 @@ "label": "id", "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTagging", @@ -989,7 +1041,8 @@ "label": "name", "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTagging", @@ -999,7 +1052,8 @@ "label": "description", "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTagging", @@ -1009,7 +1063,8 @@ "label": "color", "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1023,6 +1078,7 @@ "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -1032,7 +1088,8 @@ "label": "name", "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTagging", @@ -1042,7 +1099,8 @@ "label": "description", "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTagging", @@ -1052,7 +1110,8 @@ "label": "color", "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1068,6 +1127,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/common/capabilities.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -1077,7 +1137,8 @@ "label": "view", "description": [], "path": "x-pack/plugins/saved_objects_tagging/common/capabilities.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTagging", @@ -1087,7 +1148,8 @@ "label": "create", "description": [], "path": "x-pack/plugins/saved_objects_tagging/common/capabilities.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTagging", @@ -1097,7 +1159,8 @@ "label": "edit", "description": [], "path": "x-pack/plugins/saved_objects_tagging/common/capabilities.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTagging", @@ -1107,7 +1170,8 @@ "label": "delete", "description": [], "path": "x-pack/plugins/saved_objects_tagging/common/capabilities.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTagging", @@ -1117,7 +1181,8 @@ "label": "assign", "description": [], "path": "x-pack/plugins/saved_objects_tagging/common/capabilities.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTagging", @@ -1127,7 +1192,8 @@ "label": "viewConnections", "description": [], "path": "x-pack/plugins/saved_objects_tagging/common/capabilities.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1141,6 +1207,7 @@ "description": [], "path": "x-pack/plugins/saved_objects_tagging/common/validation.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTagging", @@ -1150,7 +1217,8 @@ "label": "valid", "description": [], "path": "x-pack/plugins/saved_objects_tagging/common/validation.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTagging", @@ -1163,7 +1231,8 @@ "string[]" ], "path": "x-pack/plugins/saved_objects_tagging/common/validation.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTagging", @@ -1176,7 +1245,8 @@ "{ color?: string | undefined; id?: string | undefined; description?: string | undefined; name?: string | undefined; }" ], "path": "x-pack/plugins/saved_objects_tagging/common/validation.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1196,6 +1266,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/common/validation.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1212,6 +1283,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1228,6 +1300,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1242,6 +1315,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/common/validation.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1256,6 +1330,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/common/validation.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1279,6 +1354,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1295,6 +1371,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1316,6 +1393,7 @@ ], "path": "x-pack/plugins/saved_objects_tagging/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/saved_objects_tagging.mdx b/api_docs/saved_objects_tagging.mdx index cf4eeeb7902bf..d94db5cfbcfc3 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsTagging'] --- import savedObjectsTaggingObj from './saved_objects_tagging.devdocs.json'; diff --git a/api_docs/saved_objects_tagging_oss.devdocs.json b/api_docs/saved_objects_tagging_oss.devdocs.json index 0e4cf22775209..82be777e2094a 100644 --- a/api_docs/saved_objects_tagging_oss.devdocs.json +++ b/api_docs/saved_objects_tagging_oss.devdocs.json @@ -15,6 +15,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -29,7 +30,8 @@ "boolean | undefined" ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTaggingOss", @@ -44,7 +46,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -58,6 +61,7 @@ "description": [], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -81,6 +85,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -108,6 +113,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -123,6 +129,7 @@ "description": [], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -132,7 +139,8 @@ "label": "searchTerm", "description": [], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTaggingOss", @@ -146,7 +154,8 @@ "[]" ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTaggingOss", @@ -156,7 +165,8 @@ "label": "valid", "description": [], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -172,6 +182,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -186,7 +197,8 @@ "boolean | undefined" ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTaggingOss", @@ -201,7 +213,8 @@ "string | undefined" ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -217,6 +230,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -231,7 +245,8 @@ "string[]" ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTaggingOss", @@ -247,6 +262,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -260,6 +276,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -277,6 +294,7 @@ "description": [], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -297,7 +315,8 @@ } ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTaggingOss", @@ -318,7 +337,8 @@ } ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTaggingOss", @@ -339,7 +359,8 @@ } ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -355,6 +376,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -378,6 +400,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -391,6 +414,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -425,6 +449,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -444,6 +469,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -472,6 +498,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -492,6 +519,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -515,6 +543,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -534,6 +563,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -547,6 +577,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -581,6 +612,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -596,6 +628,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -619,6 +652,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -642,6 +676,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -659,6 +694,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -678,6 +714,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -691,6 +728,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -714,6 +752,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -728,6 +767,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -742,6 +782,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -766,7 +807,8 @@ } ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -782,6 +824,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -805,6 +848,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -818,7 +862,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTaggingOss", @@ -831,7 +876,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -857,6 +903,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -870,7 +917,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTaggingOss", @@ -883,7 +931,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -909,6 +958,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -922,7 +972,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTaggingOss", @@ -935,7 +986,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -953,6 +1005,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -968,7 +1021,8 @@ "" ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -984,6 +1038,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -998,7 +1053,8 @@ "string[]" ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTaggingOss", @@ -1014,6 +1070,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -1027,6 +1084,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1065,6 +1123,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1084,7 +1143,8 @@ } ], "path": "src/plugins/saved_objects_tagging_oss/public/api.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1108,6 +1168,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/decorator/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1121,6 +1182,7 @@ "description": [], "path": "src/plugins/saved_objects_tagging_oss/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -1144,6 +1206,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -1165,6 +1228,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1183,6 +1247,7 @@ "description": [], "path": "src/plugins/saved_objects_tagging_oss/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -1198,6 +1263,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1223,6 +1289,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1252,6 +1319,7 @@ "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -1264,7 +1332,8 @@ "boolean | undefined" ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1278,6 +1347,7 @@ "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -1309,6 +1379,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -1328,6 +1399,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1343,6 +1415,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1368,6 +1441,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -1381,6 +1455,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1414,6 +1489,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -1434,6 +1510,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1451,6 +1528,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -1464,6 +1542,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1497,6 +1576,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -1510,6 +1590,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1530,6 +1611,7 @@ ], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1547,6 +1629,7 @@ "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -1556,7 +1639,8 @@ "label": "id", "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTaggingOss", @@ -1566,7 +1650,8 @@ "label": "name", "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTaggingOss", @@ -1576,7 +1661,8 @@ "label": "description", "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTaggingOss", @@ -1586,7 +1672,8 @@ "label": "color", "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1600,6 +1687,7 @@ "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedObjectsTaggingOss", @@ -1609,7 +1697,8 @@ "label": "name", "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTaggingOss", @@ -1619,7 +1708,8 @@ "label": "description", "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedObjectsTaggingOss", @@ -1629,7 +1719,8 @@ "label": "color", "description": [], "path": "src/plugins/saved_objects_tagging_oss/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/saved_objects_tagging_oss.mdx b/api_docs/saved_objects_tagging_oss.mdx index 8410b8fac9e46..a2df3e4349d08 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedObjectsTaggingOss'] --- import savedObjectsTaggingOssObj from './saved_objects_tagging_oss.devdocs.json'; diff --git a/api_docs/saved_search.devdocs.json b/api_docs/saved_search.devdocs.json index c4c6187deedad..df52fe959fea2 100644 --- a/api_docs/saved_search.devdocs.json +++ b/api_docs/saved_search.devdocs.json @@ -23,6 +23,7 @@ ], "path": "src/plugins/saved_search/public/services/saved_searches/get_saved_searches.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedSearch", @@ -36,6 +37,7 @@ ], "path": "src/plugins/saved_search/public/services/saved_searches/get_saved_searches.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -50,6 +52,7 @@ ], "path": "src/plugins/saved_search/public/services/saved_searches/get_saved_searches.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -68,6 +71,7 @@ ], "path": "src/plugins/saved_search/common/saved_searches_url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedSearch", @@ -81,6 +85,7 @@ ], "path": "src/plugins/saved_search/common/saved_searches_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -99,6 +104,7 @@ ], "path": "src/plugins/saved_search/common/saved_searches_url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedSearch", @@ -112,6 +118,7 @@ ], "path": "src/plugins/saved_search/common/saved_searches_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -138,6 +145,7 @@ ], "path": "src/plugins/saved_search/public/services/saved_searches/saved_searches_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedSearch", @@ -157,6 +165,7 @@ ], "path": "src/plugins/saved_search/public/services/saved_searches/saved_searches_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -183,6 +192,7 @@ ], "path": "src/plugins/saved_search/public/services/saved_searches/saved_searches_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedSearch", @@ -202,6 +212,7 @@ ], "path": "src/plugins/saved_search/public/services/saved_searches/saved_searches_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -219,6 +230,7 @@ "description": [], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedSearch", @@ -239,7 +251,8 @@ "> | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -253,6 +266,7 @@ "description": [], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedSearch", @@ -265,7 +279,8 @@ "number | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -279,6 +294,7 @@ "description": [], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedSearch", @@ -513,7 +529,8 @@ "; parseActiveIndexPatternFromQueryString: (queryString: string) => string[]; }" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedSearch", @@ -526,7 +543,8 @@ "string | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedSearch", @@ -539,7 +557,8 @@ "string | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedSearch", @@ -553,7 +572,8 @@ "[] | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedSearch", @@ -566,7 +586,8 @@ "string[] | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedSearch", @@ -579,7 +600,8 @@ "string | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedSearch", @@ -592,7 +614,8 @@ "string[] | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedSearch", @@ -613,7 +636,8 @@ "> | undefined; } | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedSearch", @@ -626,7 +650,8 @@ "boolean | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedSearch", @@ -639,7 +664,8 @@ "{ outcome?: \"exactMatch\" | \"aliasMatch\" | \"conflict\" | undefined; aliasTargetId?: string | undefined; aliasPurpose?: \"savedObjectConversion\" | \"savedObjectImport\" | undefined; errorJSON?: string | undefined; } | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedSearch", @@ -659,7 +685,8 @@ " | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedSearch", @@ -672,7 +699,8 @@ "boolean | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedSearch", @@ -685,7 +713,8 @@ "number | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedSearch", @@ -698,7 +727,8 @@ "boolean | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedSearch", @@ -711,7 +741,8 @@ "boolean | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedSearch", @@ -731,7 +762,8 @@ " | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedSearch", @@ -751,7 +783,8 @@ " | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedSearch", @@ -764,7 +797,8 @@ "number | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -778,6 +812,7 @@ "description": [], "path": "src/plugins/saved_search/public/services/saved_searches/save_saved_searches.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedSearch", @@ -791,6 +826,7 @@ ], "path": "src/plugins/saved_search/public/services/saved_searches/save_saved_searches.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -805,7 +841,8 @@ "boolean | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/save_saved_searches.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "savedSearch", @@ -818,7 +855,8 @@ "boolean | undefined" ], "path": "src/plugins/saved_search/public/services/saved_searches/save_saved_searches.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -834,6 +872,7 @@ "description": [], "path": "src/plugins/saved_search/public/services/saved_searches/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -863,6 +902,7 @@ ], "path": "src/plugins/saved_search/common/saved_searches_url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedSearch", @@ -876,6 +916,7 @@ ], "path": "src/plugins/saved_search/common/saved_searches_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -894,6 +935,7 @@ ], "path": "src/plugins/saved_search/common/saved_searches_url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "savedSearch", @@ -907,6 +949,7 @@ ], "path": "src/plugins/saved_search/common/saved_searches_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], diff --git a/api_docs/saved_search.mdx b/api_docs/saved_search.mdx index 618334dacae51..b5e7da8db8850 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'savedSearch'] --- import savedSearchObj from './saved_search.devdocs.json'; diff --git a/api_docs/screenshot_mode.devdocs.json b/api_docs/screenshot_mode.devdocs.json index a988c4737f06b..c6be83e928479 100644 --- a/api_docs/screenshot_mode.devdocs.json +++ b/api_docs/screenshot_mode.devdocs.json @@ -17,6 +17,7 @@ ], "path": "src/plugins/screenshot_mode/common/mode.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -37,6 +38,7 @@ ], "path": "src/plugins/screenshot_mode/common/mode.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -48,6 +50,7 @@ "description": [], "path": "src/plugins/screenshot_mode/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -70,6 +73,7 @@ ], "path": "src/plugins/screenshot_mode/public/types.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "setup", "initialIsOpen": true } @@ -91,6 +95,7 @@ ], "path": "src/plugins/screenshot_mode/common/mode.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -111,6 +116,7 @@ ], "path": "src/plugins/screenshot_mode/common/mode.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -122,6 +128,7 @@ "description": [], "path": "src/plugins/screenshot_mode/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -143,6 +150,7 @@ ], "path": "src/plugins/screenshot_mode/server/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -173,6 +181,7 @@ ], "path": "src/plugins/screenshot_mode/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "screenshotMode", @@ -188,6 +197,7 @@ ], "path": "src/plugins/screenshot_mode/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "screenshotMode", @@ -203,6 +213,7 @@ ], "path": "src/plugins/screenshot_mode/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -219,6 +230,7 @@ ], "path": "src/plugins/screenshot_mode/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -238,6 +250,7 @@ ], "path": "src/plugins/screenshot_mode/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -254,6 +267,7 @@ "description": [], "path": "src/plugins/screenshot_mode/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "screenshotMode", @@ -271,6 +285,7 @@ ], "path": "src/plugins/screenshot_mode/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "screenshotMode", @@ -285,6 +300,7 @@ ], "path": "src/plugins/screenshot_mode/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -314,6 +330,7 @@ ], "path": "src/plugins/screenshot_mode/common/context.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "screenshotMode", @@ -329,6 +346,7 @@ ], "path": "src/plugins/screenshot_mode/common/context.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -345,6 +363,7 @@ ], "path": "src/plugins/screenshot_mode/common/context.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -367,6 +386,7 @@ ], "path": "src/plugins/screenshot_mode/common/mode.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -385,6 +405,7 @@ ], "path": "src/plugins/screenshot_mode/common/context.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "screenshotMode", @@ -400,6 +421,7 @@ ], "path": "src/plugins/screenshot_mode/common/context.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -416,6 +438,7 @@ ], "path": "src/plugins/screenshot_mode/common/context.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -434,6 +457,7 @@ ], "path": "src/plugins/screenshot_mode/common/mode.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -452,6 +476,7 @@ ], "path": "src/plugins/screenshot_mode/common/mode.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -472,6 +497,7 @@ ], "path": "src/plugins/screenshot_mode/common/mode.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -483,6 +509,7 @@ "description": [], "path": "src/plugins/screenshot_mode/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/screenshot_mode.mdx b/api_docs/screenshot_mode.mdx index 66b60801f9e34..38322a98b6898 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'screenshotMode'] --- import screenshotModeObj from './screenshot_mode.devdocs.json'; diff --git a/api_docs/screenshotting.devdocs.json b/api_docs/screenshotting.devdocs.json index d2fbf0545d8be..86da8b6cb1a3a 100644 --- a/api_docs/screenshotting.devdocs.json +++ b/api_docs/screenshotting.devdocs.json @@ -28,6 +28,7 @@ ], "path": "x-pack/plugins/screenshotting/common/layout.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -59,6 +60,7 @@ ], "path": "x-pack/plugins/screenshotting/server/formats/pdf/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "screenshotting", @@ -73,7 +75,8 @@ "\"pdf\"" ], "path": "x-pack/plugins/screenshotting/server/formats/pdf/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "screenshotting", @@ -88,7 +91,8 @@ "string | undefined" ], "path": "x-pack/plugins/screenshotting/server/formats/pdf/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "screenshotting", @@ -103,7 +107,8 @@ "string | undefined" ], "path": "x-pack/plugins/screenshotting/server/formats/pdf/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "screenshotting", @@ -128,7 +133,8 @@ "> | undefined; zoom?: number | undefined; } | undefined" ], "path": "x-pack/plugins/screenshotting/server/formats/pdf/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -144,6 +150,7 @@ ], "path": "x-pack/plugins/screenshotting/server/formats/pdf/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "screenshotting", @@ -158,7 +165,8 @@ "PdfScreenshotMetrics" ], "path": "x-pack/plugins/screenshotting/server/formats/pdf/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "screenshotting", @@ -173,7 +181,8 @@ "Buffer" ], "path": "x-pack/plugins/screenshotting/server/formats/pdf/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "screenshotting", @@ -188,7 +197,8 @@ "Error[]" ], "path": "x-pack/plugins/screenshotting/server/formats/pdf/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "screenshotting", @@ -203,7 +213,8 @@ "string[]" ], "path": "x-pack/plugins/screenshotting/server/formats/pdf/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -230,6 +241,7 @@ ], "path": "x-pack/plugins/screenshotting/server/formats/png.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "screenshotting", @@ -246,7 +258,8 @@ "\"png\" | undefined" ], "path": "x-pack/plugins/screenshotting/server/formats/png.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "screenshotting", @@ -261,7 +274,8 @@ "> | undefined; zoom?: number | undefined; } | undefined" ], "path": "x-pack/plugins/screenshotting/server/formats/png.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -283,6 +297,7 @@ ], "path": "x-pack/plugins/screenshotting/server/formats/png.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -311,6 +326,7 @@ ], "path": "x-pack/plugins/screenshotting/server/screenshots/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -333,6 +349,7 @@ ], "path": "x-pack/plugins/screenshotting/server/screenshots/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -348,6 +365,7 @@ ], "path": "x-pack/plugins/screenshotting/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "screenshotting", @@ -365,6 +383,7 @@ ], "path": "x-pack/plugins/screenshotting/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [ "Observable with output messages." ], @@ -380,7 +399,8 @@ "string[]" ], "path": "x-pack/plugins/screenshotting/server/browsers/chromium/driver_factory/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -445,7 +465,8 @@ ">; }" ], "path": "x-pack/plugins/screenshotting/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", @@ -480,6 +501,7 @@ ], "path": "x-pack/plugins/screenshotting/common/layout.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -496,6 +518,7 @@ ], "path": "x-pack/plugins/screenshotting/common/layout.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -510,6 +533,7 @@ ], "path": "x-pack/plugins/screenshotting/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -524,6 +548,7 @@ ], "path": "x-pack/plugins/screenshotting/common/expression.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -538,6 +563,7 @@ ], "path": "x-pack/plugins/screenshotting/common/expression.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -552,6 +578,7 @@ ], "path": "x-pack/plugins/screenshotting/common/expression.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/screenshotting.mdx b/api_docs/screenshotting.mdx index 8e3fb91fc41fa..390350e543409 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'screenshotting'] --- import screenshottingObj from './screenshotting.devdocs.json'; diff --git a/api_docs/security.devdocs.json b/api_docs/security.devdocs.json index 5362de7240ce4..4dc4b7e085144 100644 --- a/api_docs/security.devdocs.json +++ b/api_docs/security.devdocs.json @@ -32,6 +32,7 @@ ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -52,7 +53,8 @@ } ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -73,7 +75,8 @@ } ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -94,7 +97,8 @@ } ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -106,7 +110,8 @@ "\nThe AuthenticationType used by ES to authenticate the user.\n" ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -118,7 +123,8 @@ "\nIndicates whether user is authenticated via Elastic Cloud built-in SAML realm." ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -132,6 +138,7 @@ "description": [], "path": "x-pack/plugins/security/public/authentication/authentication_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -155,6 +162,7 @@ ], "path": "x-pack/plugins/security/public/authentication/authentication_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -172,6 +180,7 @@ ], "path": "x-pack/plugins/security/public/authentication/authentication_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -187,6 +196,7 @@ "description": [], "path": "x-pack/plugins/security/public/ui_api/change_password/change_password.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -205,7 +215,8 @@ } ], "path": "x-pack/plugins/security/public/ui_api/change_password/change_password.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -219,6 +230,7 @@ "description": [], "path": "x-pack/plugins/security/public/ui_api/personal_info/personal_info.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -237,7 +249,8 @@ } ], "path": "x-pack/plugins/security/public/ui_api/personal_info/personal_info.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -251,6 +264,7 @@ "description": [], "path": "x-pack/plugins/security/common/licensing/license_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -264,6 +278,7 @@ ], "path": "x-pack/plugins/security/common/licensing/license_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -279,6 +294,7 @@ ], "path": "x-pack/plugins/security/common/licensing/license_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -301,6 +317,7 @@ ], "path": "x-pack/plugins/security/common/licensing/license_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -316,6 +333,7 @@ ], "path": "x-pack/plugins/security/common/licensing/license_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -329,6 +347,7 @@ ], "path": "x-pack/plugins/security/common/licensing/license_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -354,7 +373,8 @@ ">" ], "path": "x-pack/plugins/security/common/licensing/license_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -370,6 +390,7 @@ ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -381,7 +402,8 @@ "\nIndicates whether we show login page or skip it." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -393,7 +415,8 @@ "\nIndicates whether we allow login or disable it on the login page." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -405,7 +428,8 @@ "\nIndicates whether we show security links throughout the kibana app." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -417,7 +441,8 @@ "\nIndicates whether we show the Role Mappings UI." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -429,7 +454,8 @@ "\nIndicates whether we allow users to access agreement UI and acknowledge it." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -441,7 +467,8 @@ "\nIndicates whether we allow logging of audit events." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -453,7 +480,8 @@ "\nIndicates whether we allow users to define document level security in roles." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -465,7 +493,8 @@ "\nIndicates whether we allow users to define field level security in roles." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -477,7 +506,8 @@ "\nIndicates whether we allow Role-based access control (RBAC)." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -489,7 +519,8 @@ "\nIndicates whether we allow sub-feature privileges." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -511,7 +542,8 @@ " | undefined" ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -525,6 +557,7 @@ "description": [], "path": "x-pack/plugins/security/public/nav_control/nav_control_service.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -550,6 +583,7 @@ ], "path": "x-pack/plugins/security/public/nav_control/nav_control_service.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -575,6 +609,7 @@ ], "path": "x-pack/plugins/security/public/nav_control/nav_control_service.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -595,6 +630,7 @@ ], "path": "x-pack/plugins/security/public/nav_control/nav_control_service.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -612,6 +648,7 @@ "description": [], "path": "x-pack/plugins/security/public/ui_api/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -640,7 +677,8 @@ ">; }" ], "path": "x-pack/plugins/security/public/ui_api/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -654,6 +692,7 @@ "description": [], "path": "x-pack/plugins/security/public/nav_control/nav_control_component.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -663,7 +702,8 @@ "label": "label", "description": [], "path": "x-pack/plugins/security/public/nav_control/nav_control_component.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -676,7 +716,8 @@ "string | React.ComponentType<{}>" ], "path": "x-pack/plugins/security/public/nav_control/nav_control_component.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -686,7 +727,8 @@ "label": "href", "description": [], "path": "x-pack/plugins/security/public/nav_control/nav_control_component.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -699,7 +741,8 @@ "number | undefined" ], "path": "x-pack/plugins/security/public/nav_control/nav_control_component.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -712,7 +755,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/security/public/nav_control/nav_control_component.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -728,6 +772,7 @@ ], "path": "x-pack/plugins/security/public/account_management/user_profile/user_profile_api_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -742,7 +787,8 @@ "Set" ], "path": "x-pack/plugins/security/public/account_management/user_profile/user_profile_api_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -757,7 +803,8 @@ "string | undefined" ], "path": "x-pack/plugins/security/public/account_management/user_profile/user_profile_api_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -773,6 +820,7 @@ ], "path": "x-pack/plugins/security/public/account_management/user_profile/user_profile_api_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -784,7 +832,8 @@ "\nBy default, get API returns user information, but does not return any user data. The optional \"dataPath\"\nparameter can be used to return personal data for this user (within `kibana` namespace only)." ], "path": "x-pack/plugins/security/public/account_management/user_profile/user_profile_api_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -800,6 +849,7 @@ ], "path": "x-pack/plugins/security/public/account_management/user_profile/user_profile_api_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -811,7 +861,8 @@ "\nQuery string used to match name-related fields in user profiles. The following fields are treated as\nname-related: username, full_name and email." ], "path": "x-pack/plugins/security/public/account_management/user_profile/user_profile_api_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -826,7 +877,8 @@ "number | undefined" ], "path": "x-pack/plugins/security/public/account_management/user_profile/user_profile_api_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -841,7 +893,8 @@ "string | undefined" ], "path": "x-pack/plugins/security/public/account_management/user_profile/user_profile_api_client.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -869,6 +922,7 @@ ], "path": "x-pack/plugins/security/public/authentication/authentication_service.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -882,6 +936,7 @@ "description": [], "path": "x-pack/plugins/security/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -902,7 +957,8 @@ } ], "path": "x-pack/plugins/security/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -923,7 +979,8 @@ } ], "path": "x-pack/plugins/security/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -938,6 +995,7 @@ "description": [], "path": "x-pack/plugins/security/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -958,7 +1016,8 @@ } ], "path": "x-pack/plugins/security/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -979,7 +1038,8 @@ } ], "path": "x-pack/plugins/security/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1066,7 +1126,8 @@ "[]>; }" ], "path": "x-pack/plugins/security/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1090,6 +1151,7 @@ ], "path": "x-pack/plugins/security/public/plugin.tsx", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "enterpriseSearch", @@ -1140,6 +1202,7 @@ ], "path": "x-pack/plugins/security/server/audit/audit_events.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -1149,7 +1212,8 @@ "label": "message", "description": [], "path": "x-pack/plugins/security/server/audit/audit_events.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1162,7 +1226,8 @@ "{ space_id?: string | undefined; session_id?: string | undefined; saved_object?: { type: string; id: string; } | undefined; authentication_provider?: string | undefined; authentication_type?: string | undefined; authentication_realm?: string | undefined; lookup_realm?: string | undefined; add_to_spaces?: readonly string[] | undefined; delete_from_spaces?: readonly string[] | undefined; } | undefined" ], "path": "x-pack/plugins/security/server/audit/audit_events.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1176,6 +1241,7 @@ "description": [], "path": "x-pack/plugins/security/server/audit/audit_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -1199,6 +1265,7 @@ ], "path": "x-pack/plugins/security/server/audit/audit_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -1219,6 +1286,7 @@ ], "path": "x-pack/plugins/security/server/audit/audit_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1234,7 +1302,8 @@ "\nIndicates whether audit logging is enabled or not.\n\nUseful for skipping resource-intense operations that don't need to be performed when audit\nlogging is disabled." ], "path": "x-pack/plugins/security/server/audit/audit_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1248,6 +1317,7 @@ "description": [], "path": "x-pack/plugins/security/server/audit/audit_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -1272,6 +1342,7 @@ ], "path": "x-pack/plugins/security/server/audit/audit_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -1286,6 +1357,7 @@ ], "path": "x-pack/plugins/security/server/audit/audit_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1310,7 +1382,8 @@ } ], "path": "x-pack/plugins/security/server/audit/audit_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1343,6 +1416,7 @@ ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -1363,7 +1437,8 @@ } ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1384,7 +1459,8 @@ } ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1405,7 +1481,8 @@ } ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1417,7 +1494,8 @@ "\nThe AuthenticationType used by ES to authenticate the user.\n" ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1429,7 +1507,8 @@ "\nIndicates whether user is authenticated via Elastic Cloud built-in SAML realm." ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1445,6 +1524,7 @@ ], "path": "x-pack/plugins/security/server/authentication/authentication_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -1527,7 +1607,8 @@ " | null>; }" ], "path": "x-pack/plugins/security/server/authentication/authentication_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1551,6 +1632,7 @@ ], "path": "x-pack/plugins/security/server/authentication/authentication_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -1565,6 +1647,7 @@ ], "path": "x-pack/plugins/security/server/authentication/authentication_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1584,6 +1667,7 @@ ], "path": "x-pack/plugins/security/server/authorization/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -1598,7 +1682,8 @@ "string | string[] | undefined" ], "path": "x-pack/plugins/security/server/authorization/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1613,7 +1698,8 @@ "{ cluster: string[]; index: Record; } | undefined" ], "path": "x-pack/plugins/security/server/authorization/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1629,6 +1715,7 @@ ], "path": "x-pack/plugins/security/server/authentication/api_keys/api_keys.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -1640,7 +1727,8 @@ "\nUnique id for this API key" ], "path": "x-pack/plugins/security/server/authentication/api_keys/api_keys.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1652,7 +1740,8 @@ "\nName for this API key" ], "path": "x-pack/plugins/security/server/authentication/api_keys/api_keys.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1667,7 +1756,8 @@ "number | undefined" ], "path": "x-pack/plugins/security/server/authentication/api_keys/api_keys.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1679,7 +1769,8 @@ "\nGenerated API key" ], "path": "x-pack/plugins/security/server/authentication/api_keys/api_keys.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1693,6 +1784,7 @@ "description": [], "path": "x-pack/plugins/security/server/authentication/api_keys/api_keys.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -1704,7 +1796,8 @@ "\nUnique id for this API key" ], "path": "x-pack/plugins/security/server/authentication/api_keys/api_keys.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1716,7 +1809,8 @@ "\nName for this API key" ], "path": "x-pack/plugins/security/server/authentication/api_keys/api_keys.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1728,7 +1822,8 @@ "\nGenerated API key" ], "path": "x-pack/plugins/security/server/authentication/api_keys/api_keys.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1744,6 +1839,7 @@ ], "path": "x-pack/plugins/security/server/authentication/api_keys/api_keys.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -1758,7 +1854,8 @@ "string[]" ], "path": "x-pack/plugins/security/server/authentication/api_keys/api_keys.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1773,7 +1870,8 @@ "string[]" ], "path": "x-pack/plugins/security/server/authentication/api_keys/api_keys.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1785,7 +1883,8 @@ "\nThe number of errors that were encountered when invalidating the API keys." ], "path": "x-pack/plugins/security/server/authentication/api_keys/api_keys.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1800,7 +1899,8 @@ "{ type?: string | undefined; reason?: string | undefined; caused_by?: { type?: string | undefined; reason?: string | undefined; } | undefined; }[] | undefined" ], "path": "x-pack/plugins/security/server/authentication/api_keys/api_keys.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1816,6 +1916,7 @@ ], "path": "x-pack/plugins/security/server/authentication/api_keys/api_keys.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -1828,7 +1929,8 @@ "string[]" ], "path": "x-pack/plugins/security/server/authentication/api_keys/api_keys.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1844,6 +1946,7 @@ ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -1858,7 +1961,8 @@ "Set" ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1873,7 +1977,8 @@ "string | undefined" ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1889,6 +1994,7 @@ ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -1904,7 +2010,8 @@ "" ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1919,7 +2026,8 @@ "string | undefined" ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1935,6 +2043,7 @@ ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -1946,7 +2055,8 @@ "\nThe id of the Kibana Space." ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -1961,7 +2071,8 @@ "{ kibana: string[]; }" ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1977,6 +2088,7 @@ ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -2024,6 +2136,7 @@ ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -2045,6 +2158,7 @@ ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2088,6 +2202,7 @@ ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -2109,6 +2224,7 @@ ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2152,6 +2268,7 @@ ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -2173,6 +2290,7 @@ ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2192,6 +2310,7 @@ ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -2203,7 +2322,8 @@ "\nQuery string used to match name-related fields in user profiles. The following fields are treated as\nname-related: username, full_name and email." ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2218,7 +2338,8 @@ "number | undefined" ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2233,7 +2354,8 @@ "string | undefined" ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2255,7 +2377,8 @@ " | undefined" ], "path": "x-pack/plugins/security/server/user_profile/user_profile_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2272,6 +2395,7 @@ "description": [], "path": "x-pack/plugins/security/server/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2286,6 +2410,7 @@ ], "path": "x-pack/plugins/security/server/authorization/privileges/feature_privilege_builder/cases.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2302,6 +2427,7 @@ ], "path": "x-pack/plugins/security/server/authentication/api_keys/api_keys.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2318,6 +2444,7 @@ ], "path": "x-pack/plugins/security/server/routes/tags.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -2333,6 +2460,7 @@ ], "path": "x-pack/plugins/security/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -2358,6 +2486,7 @@ ], "path": "x-pack/plugins/security/server/plugin.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "encryptedSavedObjects", @@ -2441,6 +2570,7 @@ ], "path": "x-pack/plugins/security/server/plugin.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "actions", @@ -2499,7 +2629,8 @@ } ], "path": "x-pack/plugins/security/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2520,7 +2651,8 @@ } ], "path": "x-pack/plugins/security/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2541,7 +2673,8 @@ } ], "path": "x-pack/plugins/security/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2557,6 +2690,7 @@ ], "path": "x-pack/plugins/security/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2575,6 +2709,7 @@ ], "path": "x-pack/plugins/security/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -2595,7 +2730,8 @@ } ], "path": "x-pack/plugins/security/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2616,7 +2752,8 @@ } ], "path": "x-pack/plugins/security/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2637,7 +2774,8 @@ } ], "path": "x-pack/plugins/security/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", @@ -2669,6 +2807,7 @@ ], "path": "x-pack/plugins/security/common/model/user.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -2690,6 +2829,7 @@ ], "path": "x-pack/plugins/security/common/model/user.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2707,6 +2847,7 @@ "description": [], "path": "x-pack/plugins/security/common/model/api_key.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -2716,7 +2857,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/security/common/model/api_key.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2726,7 +2868,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/security/common/model/api_key.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2736,7 +2879,8 @@ "label": "username", "description": [], "path": "x-pack/plugins/security/common/model/api_key.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2746,7 +2890,8 @@ "label": "realm", "description": [], "path": "x-pack/plugins/security/common/model/api_key.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2756,7 +2901,8 @@ "label": "creation", "description": [], "path": "x-pack/plugins/security/common/model/api_key.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2766,7 +2912,8 @@ "label": "expiration", "description": [], "path": "x-pack/plugins/security/common/model/api_key.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2776,7 +2923,8 @@ "label": "invalidated", "description": [], "path": "x-pack/plugins/security/common/model/api_key.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2789,7 +2937,8 @@ "{ [x: string]: any; }" ], "path": "x-pack/plugins/security/common/model/api_key.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2822,6 +2971,7 @@ ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -2842,7 +2992,8 @@ } ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2863,7 +3014,8 @@ } ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2884,7 +3036,8 @@ } ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2896,7 +3049,8 @@ "\nThe AuthenticationType used by ES to authenticate the user.\n" ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2908,7 +3062,8 @@ "\nIndicates whether user is authenticated via Elastic Cloud built-in SAML realm." ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2924,6 +3079,7 @@ ], "path": "x-pack/plugins/security/common/model/authentication_provider.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -2935,7 +3091,8 @@ "\nType of the Kibana authentication provider." ], "path": "x-pack/plugins/security/common/model/authentication_provider.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -2947,7 +3104,8 @@ "\nName of the Kibana authentication provider (arbitrary string)." ], "path": "x-pack/plugins/security/common/model/authentication_provider.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2961,6 +3119,7 @@ "description": [], "path": "x-pack/plugins/security/common/model/features_privileges.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -2973,7 +3132,8 @@ "[featureId: string]: string[]" ], "path": "x-pack/plugins/security/common/model/features_privileges.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2989,6 +3149,7 @@ ], "path": "x-pack/plugins/security/common/model/user.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -3000,7 +3161,8 @@ "\nUsername of the user." ], "path": "x-pack/plugins/security/common/model/user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3015,7 +3177,8 @@ "string | undefined" ], "path": "x-pack/plugins/security/common/model/user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3030,7 +3193,8 @@ "string | undefined" ], "path": "x-pack/plugins/security/common/model/user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3072,6 +3236,7 @@ ], "path": "x-pack/plugins/security/common/model/user_profile.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -3101,7 +3266,8 @@ ", \"authentication_provider\">" ], "path": "x-pack/plugins/security/common/model/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3115,6 +3281,7 @@ "description": [], "path": "x-pack/plugins/security/common/model/deprecations.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -3127,7 +3294,8 @@ "GetDeprecationsContext" ], "path": "x-pack/plugins/security/common/model/deprecations.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3137,7 +3305,8 @@ "label": "featureId", "description": [], "path": "x-pack/plugins/security/common/model/deprecations.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3151,6 +3320,7 @@ "description": [], "path": "x-pack/plugins/security/common/model/deprecations.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -3170,7 +3340,8 @@ "[] | undefined" ], "path": "x-pack/plugins/security/common/model/deprecations.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3184,7 +3355,8 @@ "[] | undefined" ], "path": "x-pack/plugins/security/common/model/deprecations.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3198,6 +3370,7 @@ "description": [], "path": "x-pack/plugins/security/common/model/deprecations.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -3227,6 +3400,7 @@ ], "path": "x-pack/plugins/security/common/model/deprecations.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -3246,6 +3420,7 @@ ], "path": "x-pack/plugins/security/common/model/deprecations.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3263,6 +3438,7 @@ "description": [], "path": "x-pack/plugins/security/common/model/role.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -3272,7 +3448,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/security/common/model/role.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3293,7 +3470,8 @@ "[]; run_as: string[]; }" ], "path": "x-pack/plugins/security/common/model/role.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3313,7 +3491,8 @@ "[]" ], "path": "x-pack/plugins/security/common/model/role.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3326,7 +3505,8 @@ "{ [anyKey: string]: any; } | undefined" ], "path": "x-pack/plugins/security/common/model/role.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3339,7 +3519,8 @@ "{ [anyKey: string]: any; } | undefined" ], "path": "x-pack/plugins/security/common/model/role.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3352,7 +3533,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/security/common/model/role.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3365,7 +3547,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/security/common/model/role.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3379,6 +3562,7 @@ "description": [], "path": "x-pack/plugins/security/common/model/role.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -3391,7 +3575,8 @@ "string[]" ], "path": "x-pack/plugins/security/common/model/role.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3404,7 +3589,8 @@ "string[]" ], "path": "x-pack/plugins/security/common/model/role.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3417,7 +3603,8 @@ "{ grant?: string[] | undefined; except?: string[] | undefined; } | undefined" ], "path": "x-pack/plugins/security/common/model/role.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3430,7 +3617,8 @@ "string | undefined" ], "path": "x-pack/plugins/security/common/model/role.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3444,6 +3632,7 @@ "description": [], "path": "x-pack/plugins/security/common/model/role.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -3456,7 +3645,8 @@ "string[]" ], "path": "x-pack/plugins/security/common/model/role.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3469,7 +3659,8 @@ "string[]" ], "path": "x-pack/plugins/security/common/model/role.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3488,7 +3679,8 @@ } ], "path": "x-pack/plugins/security/common/model/role.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3501,7 +3693,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/security/common/model/role.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3515,6 +3708,7 @@ "description": [], "path": "x-pack/plugins/security/common/licensing/license_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -3528,6 +3722,7 @@ ], "path": "x-pack/plugins/security/common/licensing/license_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3543,6 +3738,7 @@ ], "path": "x-pack/plugins/security/common/licensing/license_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3565,6 +3761,7 @@ ], "path": "x-pack/plugins/security/common/licensing/license_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3580,6 +3777,7 @@ ], "path": "x-pack/plugins/security/common/licensing/license_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -3593,6 +3791,7 @@ ], "path": "x-pack/plugins/security/common/licensing/license_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3618,7 +3817,8 @@ ">" ], "path": "x-pack/plugins/security/common/licensing/license_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3634,6 +3834,7 @@ ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -3645,7 +3846,8 @@ "\nIndicates whether we show login page or skip it." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3657,7 +3859,8 @@ "\nIndicates whether we allow login or disable it on the login page." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3669,7 +3872,8 @@ "\nIndicates whether we show security links throughout the kibana app." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3681,7 +3885,8 @@ "\nIndicates whether we show the Role Mappings UI." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3693,7 +3898,8 @@ "\nIndicates whether we allow users to access agreement UI and acknowledge it." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3705,7 +3911,8 @@ "\nIndicates whether we allow logging of audit events." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3717,7 +3924,8 @@ "\nIndicates whether we allow users to define document level security in roles." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3729,7 +3937,8 @@ "\nIndicates whether we allow users to define field level security in roles." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3741,7 +3950,8 @@ "\nIndicates whether we allow Role-based access control (RBAC)." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3753,7 +3963,8 @@ "\nIndicates whether we allow sub-feature privileges." ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3775,7 +3986,8 @@ " | undefined" ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3791,6 +4003,7 @@ ], "path": "x-pack/plugins/security/common/model/user.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -3800,7 +4013,8 @@ "label": "username", "description": [], "path": "x-pack/plugins/security/common/model/user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3813,7 +4027,8 @@ "string | undefined" ], "path": "x-pack/plugins/security/common/model/user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3826,7 +4041,8 @@ "string | undefined" ], "path": "x-pack/plugins/security/common/model/user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3839,7 +4055,8 @@ "readonly string[]" ], "path": "x-pack/plugins/security/common/model/user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3849,7 +4066,8 @@ "label": "enabled", "description": [], "path": "x-pack/plugins/security/common/model/user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3862,7 +4080,8 @@ "{ _reserved: boolean; _deprecated?: boolean | undefined; _deprecated_reason?: string | undefined; } | undefined" ], "path": "x-pack/plugins/security/common/model/user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3888,6 +4107,7 @@ ], "path": "x-pack/plugins/security/common/model/user_profile.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -3899,7 +4119,8 @@ "\nUnique ID for of the user profile." ], "path": "x-pack/plugins/security/common/model/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3911,7 +4132,8 @@ "\nIndicates whether user profile is enabled or not." ], "path": "x-pack/plugins/security/common/model/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3932,7 +4154,8 @@ } ], "path": "x-pack/plugins/security/common/model/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3947,7 +4170,8 @@ "{ [P in keyof D]?: D[P] | undefined; }" ], "path": "x-pack/plugins/security/common/model/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3963,6 +4187,7 @@ ], "path": "x-pack/plugins/security/common/model/user_profile.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -3977,7 +4202,8 @@ "string | undefined" ], "path": "x-pack/plugins/security/common/model/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -3992,7 +4218,8 @@ "string | undefined" ], "path": "x-pack/plugins/security/common/model/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -4007,7 +4234,8 @@ "string | undefined" ], "path": "x-pack/plugins/security/common/model/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4023,6 +4251,7 @@ ], "path": "x-pack/plugins/security/common/model/user_profile.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -4034,7 +4263,8 @@ "\nUsername of the user." ], "path": "x-pack/plugins/security/common/model/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -4049,7 +4279,8 @@ "string | undefined" ], "path": "x-pack/plugins/security/common/model/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -4064,7 +4295,8 @@ "string | undefined" ], "path": "x-pack/plugins/security/common/model/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4097,6 +4329,7 @@ ], "path": "x-pack/plugins/security/common/model/user_profile.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -4111,7 +4344,8 @@ "readonly string[]" ], "path": "x-pack/plugins/security/common/model/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -4123,7 +4357,8 @@ "\nName of the Elasticsearch security realm that was used to authenticate user." ], "path": "x-pack/plugins/security/common/model/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -4138,7 +4373,8 @@ "string | undefined" ], "path": "x-pack/plugins/security/common/model/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4172,6 +4408,7 @@ ], "path": "x-pack/plugins/security/common/model/user_profile.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -4192,7 +4429,8 @@ } ], "path": "x-pack/plugins/security/common/model/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -4207,7 +4445,8 @@ "L" ], "path": "x-pack/plugins/security/common/model/user_profile.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4223,6 +4462,7 @@ ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "security", @@ -4234,7 +4474,8 @@ "\nArbitrary name of the security realm." ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "security", @@ -4246,7 +4487,8 @@ "\nType of the security realm (file, native, saml etc.)." ], "path": "x-pack/plugins/security/common/model/authenticated_user.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4268,6 +4510,7 @@ ], "path": "x-pack/plugins/security/common/licensing/license_features.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4284,6 +4527,7 @@ ], "path": "x-pack/plugins/security/common/model/user_profile.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4300,6 +4544,7 @@ ], "path": "x-pack/plugins/security/common/model/user_profile.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/security.mdx b/api_docs/security.mdx index c391fb9991628..a9943df56bf6d 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: 2022-09-05 +date: 2022-09-08 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 849f7b607df73..f6e7dcb001687 100644 --- a/api_docs/security_solution.devdocs.json +++ b/api_docs/security_solution.devdocs.json @@ -43,6 +43,7 @@ ], "path": "x-pack/plugins/security_solution/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "securitySolution", @@ -52,7 +53,8 @@ "label": "kibanaVersion", "description": [], "path": "x-pack/plugins/security_solution/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "securitySolution", @@ -65,7 +67,8 @@ "{ readonly tGridEnabled: boolean; readonly tGridEventRenderedViewEnabled: boolean; readonly excludePoliciesInFilterEnabled: boolean; readonly kubernetesEnabled: boolean; readonly disableIsolationUIPendingStatuses: boolean; readonly riskyHostsEnabled: boolean; readonly riskyUsersEnabled: boolean; readonly pendingActionResponsesWithAck: boolean; readonly policyListEnabled: boolean; readonly policyResponseInFleetEnabled: boolean; readonly threatIntelligenceEnabled: boolean; readonly entityAnalyticsDashboardEnabled: boolean; readonly previewTelemetryUrlEnabled: boolean; readonly responseActionsConsoleEnabled: boolean; readonly insightsRelatedAlertsByProcessAncestry: boolean; readonly extendedRuleExecutionLoggingEnabled: boolean; readonly socTrendsEnabled: boolean; }" ], "path": "x-pack/plugins/security_solution/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "securitySolution", @@ -79,6 +82,7 @@ ], "path": "x-pack/plugins/security_solution/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "securitySolution", @@ -99,6 +103,7 @@ ], "path": "x-pack/plugins/security_solution/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -137,6 +142,7 @@ ], "path": "x-pack/plugins/security_solution/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "securitySolution", @@ -161,6 +167,7 @@ ], "path": "x-pack/plugins/security_solution/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -175,6 +182,7 @@ ], "path": "x-pack/plugins/security_solution/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -202,6 +210,7 @@ ], "path": "x-pack/plugins/security_solution/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "securitySolution", @@ -221,6 +230,7 @@ ], "path": "x-pack/plugins/security_solution/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -235,6 +245,7 @@ ], "path": "x-pack/plugins/security_solution/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -252,6 +263,7 @@ ], "path": "x-pack/plugins/security_solution/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -279,6 +291,7 @@ ], "path": "x-pack/plugins/security_solution/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "securitySolution", @@ -298,6 +311,7 @@ ], "path": "x-pack/plugins/security_solution/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -312,6 +326,7 @@ ], "path": "x-pack/plugins/security_solution/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -372,6 +387,7 @@ ], "path": "x-pack/plugins/security_solution/public/timelines/store/timeline/model.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -385,6 +401,7 @@ "description": [], "path": "x-pack/plugins/security_solution/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "securitySolution", @@ -400,6 +417,7 @@ ], "path": "x-pack/plugins/security_solution/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -419,6 +437,7 @@ "description": [], "path": "x-pack/plugins/security_solution/server/client/client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "securitySolution", @@ -432,6 +451,7 @@ ], "path": "x-pack/plugins/security_solution/server/client/client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "securitySolution", @@ -445,6 +465,7 @@ ], "path": "x-pack/plugins/security_solution/server/client/client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -465,6 +486,7 @@ ], "path": "x-pack/plugins/security_solution/server/client/client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -482,6 +504,7 @@ ], "path": "x-pack/plugins/security_solution/server/client/client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -497,6 +520,7 @@ ], "path": "x-pack/plugins/security_solution/server/client/client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -512,6 +536,7 @@ ], "path": "x-pack/plugins/security_solution/server/client/client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -527,6 +552,7 @@ ], "path": "x-pack/plugins/security_solution/server/client/client.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -580,6 +606,7 @@ ], "path": "x-pack/plugins/security_solution/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "securitySolution", @@ -593,6 +620,7 @@ ], "path": "x-pack/plugins/security_solution/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "securitySolution", @@ -613,6 +641,7 @@ ], "path": "x-pack/plugins/security_solution/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -641,6 +670,7 @@ ], "path": "x-pack/plugins/security_solution/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "securitySolution", @@ -654,6 +684,7 @@ ], "path": "x-pack/plugins/security_solution/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -668,6 +699,7 @@ ], "path": "x-pack/plugins/security_solution/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -702,6 +734,7 @@ ], "path": "x-pack/plugins/security_solution/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "securitySolution", @@ -721,6 +754,7 @@ ], "path": "x-pack/plugins/security_solution/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -735,6 +769,7 @@ ], "path": "x-pack/plugins/security_solution/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -752,6 +787,7 @@ ], "path": "x-pack/plugins/security_solution/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -770,6 +806,7 @@ "description": [], "path": "x-pack/plugins/security_solution/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "securitySolution", @@ -788,7 +825,8 @@ } ], "path": "x-pack/plugins/security_solution/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "securitySolution", @@ -801,7 +839,8 @@ "EndpointAuthz" ], "path": "x-pack/plugins/security_solution/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "securitySolution", @@ -822,6 +861,7 @@ ], "path": "x-pack/plugins/security_solution/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -838,6 +878,7 @@ ], "path": "x-pack/plugins/security_solution/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -860,6 +901,7 @@ ], "path": "x-pack/plugins/security_solution/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -875,6 +917,7 @@ ], "path": "x-pack/plugins/security_solution/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -897,6 +940,7 @@ ], "path": "x-pack/plugins/security_solution/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -913,6 +957,7 @@ ], "path": "x-pack/plugins/security_solution/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -938,6 +983,7 @@ ], "path": "x-pack/plugins/security_solution/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "securitySolution", @@ -952,6 +998,7 @@ ], "path": "x-pack/plugins/security_solution/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -977,6 +1024,7 @@ ], "path": "x-pack/plugins/security_solution/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -993,6 +1041,7 @@ ], "path": "x-pack/plugins/security_solution/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1011,6 +1060,7 @@ ], "path": "x-pack/plugins/security_solution/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "securitySolution", @@ -1025,6 +1075,7 @@ ], "path": "x-pack/plugins/security_solution/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1048,6 +1099,7 @@ ], "path": "x-pack/plugins/security_solution/server/config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1061,6 +1113,7 @@ "description": [], "path": "x-pack/plugins/security_solution/server/plugin_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -1074,6 +1127,7 @@ "description": [], "path": "x-pack/plugins/security_solution/server/plugin_contract.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true diff --git a/api_docs/security_solution.mdx b/api_docs/security_solution.mdx index d09f514b7e4ee..751f29fcd86f2 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'securitySolution'] --- import securitySolutionObj from './security_solution.devdocs.json'; diff --git a/api_docs/session_view.devdocs.json b/api_docs/session_view.devdocs.json index 2570f67218ab1..d8641dfbf034f 100644 --- a/api_docs/session_view.devdocs.json +++ b/api_docs/session_view.devdocs.json @@ -13,6 +13,7 @@ "description": [], "path": "x-pack/plugins/session_view/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "sessionView", @@ -28,6 +29,7 @@ ], "path": "x-pack/plugins/session_view/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "sessionView", @@ -41,6 +43,7 @@ ], "path": "x-pack/plugins/session_view/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/session_view.mdx b/api_docs/session_view.mdx index 169446dc6ec80..102df49e16bd0 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'sessionView'] --- import sessionViewObj from './session_view.devdocs.json'; diff --git a/api_docs/share.devdocs.json b/api_docs/share.devdocs.json index 3f00f53554941..12c7ffc463d84 100644 --- a/api_docs/share.devdocs.json +++ b/api_docs/share.devdocs.json @@ -25,6 +25,7 @@ ], "path": "src/plugins/share/public/lib/download_as.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -40,6 +41,7 @@ ], "path": "src/plugins/share/public/lib/download_as.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -62,6 +64,7 @@ ], "path": "src/plugins/share/public/lib/download_as.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -92,6 +95,7 @@ ], "path": "src/plugins/share/public/lib/download_as.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -115,6 +119,7 @@ ], "path": "src/plugins/share/public/lib/download_as.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -147,6 +152,7 @@ ], "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -167,6 +173,7 @@ ], "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -181,6 +188,7 @@ ], "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -196,6 +204,7 @@ ], "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -210,6 +219,7 @@ ], "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -233,6 +243,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -244,7 +255,8 @@ "\nKibana application ID." ], "path": "src/plugins/share/common/url_service/locators/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -256,7 +268,8 @@ "\nA relative URL path within a Kibana application." ], "path": "src/plugins/share/common/url_service/locators/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -271,7 +284,8 @@ "S" ], "path": "src/plugins/share/common/url_service/locators/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -305,6 +319,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -316,7 +331,8 @@ "\nUnique ID of the locator. Should be constant and unique across Kibana." ], "path": "src/plugins/share/common/url_service/locators/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -334,6 +350,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -349,6 +366,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -386,6 +404,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -395,7 +414,8 @@ "label": "id", "description": [], "path": "src/plugins/share/common/url_service/locators/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -413,6 +433,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -428,6 +449,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -449,6 +471,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -464,6 +487,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -481,6 +505,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -502,6 +527,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -517,6 +543,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -534,6 +561,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -555,6 +583,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -570,6 +599,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -587,6 +617,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -608,6 +639,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -623,6 +655,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -640,6 +673,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -661,6 +695,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -674,6 +709,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -689,6 +725,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -703,6 +740,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -724,6 +762,7 @@ ], "path": "src/plugins/share/common/url_service/locators/redirect/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -735,7 +774,8 @@ "Locator ID." ], "path": "src/plugins/share/common/url_service/locators/redirect/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -747,7 +787,8 @@ "Kibana version when locator params were generated." ], "path": "src/plugins/share/common/url_service/locators/redirect/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -762,7 +803,8 @@ "P" ], "path": "src/plugins/share/common/url_service/locators/redirect/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -776,6 +818,7 @@ "description": [], "path": "src/plugins/share/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -785,7 +828,8 @@ "label": "objectType", "description": [], "path": "src/plugins/share/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -798,7 +842,8 @@ "string | undefined" ], "path": "src/plugins/share/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -810,7 +855,8 @@ "\nCurrent url for sharing. This can be set in cases where `window.location.href`\ndoes not contain a shareable URL (e.g. if using session storage to store the current\napp state is enabled). In these cases the property should contain the URL in a\nformat which makes it possible to use it without having access to any other state\nlike the current session.\n\nIf not set it will default to `window.location.href`" ], "path": "src/plugins/share/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -823,7 +869,8 @@ "{ [key: string]: unknown; }" ], "path": "src/plugins/share/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -833,7 +880,8 @@ "label": "isDirty", "description": [], "path": "src/plugins/share/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -847,6 +895,7 @@ ], "path": "src/plugins/share/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -864,6 +913,7 @@ ], "path": "src/plugins/share/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -877,6 +927,7 @@ ], "path": "src/plugins/share/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -906,6 +957,7 @@ ], "path": "src/plugins/share/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -915,7 +967,8 @@ "label": "name", "description": [], "path": "src/plugins/share/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -928,7 +981,8 @@ "number | undefined" ], "path": "src/plugins/share/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -942,6 +996,7 @@ "description": [], "path": "src/plugins/share/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -960,7 +1015,8 @@ } ], "path": "src/plugins/share/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -973,7 +1029,8 @@ "EuiContextMenuPanelDescriptor" ], "path": "src/plugins/share/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -987,6 +1044,7 @@ "description": [], "path": "src/plugins/share/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -996,7 +1054,8 @@ "label": "id", "description": [], "path": "src/plugins/share/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -1026,6 +1085,7 @@ ], "path": "src/plugins/share/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -1045,6 +1105,7 @@ ], "path": "src/plugins/share/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1080,6 +1141,7 @@ ], "path": "src/plugins/share/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -1092,7 +1154,8 @@ "HTMLElement" ], "path": "src/plugins/share/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -1102,7 +1165,8 @@ "label": "allowEmbed", "description": [], "path": "src/plugins/share/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -1112,7 +1176,8 @@ "label": "allowShortUrl", "description": [], "path": "src/plugins/share/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -1126,7 +1191,8 @@ "[] | undefined" ], "path": "src/plugins/share/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -1140,6 +1206,7 @@ ], "path": "src/plugins/share/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1164,6 +1231,7 @@ ], "path": "src/plugins/share/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1178,6 +1246,7 @@ ], "path": "src/plugins/share/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1192,6 +1261,7 @@ ], "path": "src/plugins/share/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1206,6 +1276,7 @@ ], "path": "src/plugins/share/public/lib/download_as.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1250,6 +1321,7 @@ ], "path": "src/plugins/share/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "setup", "initialIsOpen": true }, @@ -1285,6 +1357,7 @@ ], "path": "src/plugins/share/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -1307,6 +1380,7 @@ ], "path": "src/plugins/share/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1321,6 +1395,7 @@ ], "path": "src/plugins/share/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1334,6 +1409,7 @@ "description": [], "path": "src/plugins/share/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -1351,7 +1427,8 @@ ">" ], "path": "src/plugins/share/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -1366,6 +1443,7 @@ "description": [], "path": "src/plugins/share/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -1383,7 +1461,8 @@ ">" ], "path": "src/plugins/share/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", @@ -1417,6 +1496,7 @@ ], "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -1437,6 +1517,7 @@ ], "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1451,6 +1532,7 @@ ], "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1466,6 +1548,7 @@ ], "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1480,6 +1563,7 @@ ], "path": "src/plugins/share/common/url_service/locators/use_locator_url.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1499,6 +1583,7 @@ ], "path": "src/plugins/share/common/anonymous_access/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -1522,6 +1607,7 @@ ], "path": "src/plugins/share/common/anonymous_access/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1541,6 +1627,7 @@ ], "path": "src/plugins/share/common/anonymous_access/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1558,6 +1645,7 @@ ], "path": "src/plugins/share/common/anonymous_access/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -1569,7 +1657,8 @@ "\nWhether anonymous access is enabled or not." ], "path": "src/plugins/share/common/anonymous_access/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -1584,7 +1673,8 @@ "Record | null" ], "path": "src/plugins/share/common/anonymous_access/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1618,6 +1708,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -1629,7 +1720,8 @@ "\nUnique ID of the locator. Should be constant and unique across Kibana." ], "path": "src/plugins/share/common/url_service/locators/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -1647,6 +1739,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -1662,6 +1755,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1699,6 +1793,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -1708,7 +1803,8 @@ "label": "id", "description": [], "path": "src/plugins/share/common/url_service/locators/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "share", @@ -1726,6 +1822,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -1741,6 +1838,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1762,6 +1860,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -1777,6 +1876,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1794,6 +1894,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1815,6 +1916,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -1830,6 +1932,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1847,6 +1950,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1868,6 +1972,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -1883,6 +1988,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1900,6 +2006,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1921,6 +2028,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -1936,6 +2044,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1953,6 +2062,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1974,6 +2084,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "share", @@ -1987,6 +2098,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2002,6 +2114,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -2016,6 +2129,7 @@ ], "path": "src/plugins/share/common/url_service/locators/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], diff --git a/api_docs/share.mdx b/api_docs/share.mdx index 4c81970ae5edb..2d2bb4aeb954b 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'share'] --- import shareObj from './share.devdocs.json'; diff --git a/api_docs/snapshot_restore.devdocs.json b/api_docs/snapshot_restore.devdocs.json index 17f513fb71474..72be1ac1a783d 100644 --- a/api_docs/snapshot_restore.devdocs.json +++ b/api_docs/snapshot_restore.devdocs.json @@ -30,6 +30,7 @@ "description": [], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -46,6 +47,7 @@ ], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -60,6 +62,7 @@ ], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -74,6 +77,7 @@ ], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -88,6 +92,7 @@ ], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -102,6 +107,7 @@ ], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -116,6 +122,7 @@ ], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -131,6 +138,7 @@ ], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -146,6 +154,7 @@ ], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -161,6 +170,7 @@ ], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -174,6 +184,7 @@ "description": [], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "snapshotRestore", @@ -183,7 +194,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "snapshotRestore", @@ -196,7 +208,8 @@ "\"basic\"" ], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "snapshotRestore", @@ -210,6 +223,7 @@ ], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "snapshotRestore", @@ -223,6 +237,7 @@ ], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -240,6 +255,7 @@ "description": [], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "snapshotRestore", @@ -259,7 +275,8 @@ ".hdfs" ], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -273,6 +290,7 @@ "description": [], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "snapshotRestore", @@ -285,7 +303,8 @@ "\"d\"" ], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "snapshotRestore", @@ -298,7 +317,8 @@ "\"h\"" ], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "snapshotRestore", @@ -311,7 +331,8 @@ "\"m\"" ], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "snapshotRestore", @@ -324,7 +345,8 @@ "\"s\"" ], "path": "x-pack/plugins/snapshot_restore/common/constants.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/snapshot_restore.mdx b/api_docs/snapshot_restore.mdx index 784231b75edba..801a73732f10f 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'snapshotRestore'] --- import snapshotRestoreObj from './snapshot_restore.devdocs.json'; diff --git a/api_docs/spaces.devdocs.json b/api_docs/spaces.devdocs.json index 16599343be1d9..e28d040529d5b 100644 --- a/api_docs/spaces.devdocs.json +++ b/api_docs/spaces.devdocs.json @@ -11,6 +11,7 @@ "description": [], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -24,6 +25,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -37,6 +39,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -62,7 +65,8 @@ ">" ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -92,6 +96,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -111,6 +116,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -136,6 +142,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -149,6 +156,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -174,6 +182,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -187,6 +196,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -212,6 +222,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -231,6 +242,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -256,6 +268,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -275,6 +288,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -300,6 +314,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -319,6 +334,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -344,6 +360,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -364,6 +381,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -389,6 +407,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -402,6 +421,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -416,6 +436,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -430,6 +451,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -444,6 +466,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -458,6 +481,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -483,6 +507,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -496,6 +521,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -510,6 +536,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -524,6 +551,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -538,6 +566,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -555,6 +584,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -568,6 +598,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -587,6 +618,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -600,6 +632,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -617,6 +650,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -630,6 +664,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -644,6 +679,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -658,6 +694,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -675,6 +712,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_manager/spaces_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -705,6 +743,7 @@ ], "path": "x-pack/plugins/spaces/public/space_avatar/space_attributes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -728,6 +767,7 @@ ], "path": "x-pack/plugins/spaces/public/space_avatar/space_attributes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -756,6 +796,7 @@ ], "path": "x-pack/plugins/spaces/public/space_avatar/space_attributes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -779,6 +820,7 @@ ], "path": "x-pack/plugins/spaces/public/space_avatar/space_attributes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -807,6 +849,7 @@ ], "path": "x-pack/plugins/spaces/public/space_avatar/space_attributes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -830,6 +873,7 @@ ], "path": "x-pack/plugins/spaces/public/space_avatar/space_attributes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -847,6 +891,7 @@ "description": [], "path": "x-pack/plugins/spaces/public/copy_saved_objects_to_space/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -860,7 +905,8 @@ "SavedObjectsImportResponse" ], "path": "x-pack/plugins/spaces/public/copy_saved_objects_to_space/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -876,6 +922,7 @@ ], "path": "x-pack/plugins/spaces/public/copy_saved_objects_to_space/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -896,7 +943,8 @@ } ], "path": "x-pack/plugins/spaces/public/copy_saved_objects_to_space/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -912,6 +960,7 @@ ], "path": "x-pack/plugins/spaces/public/copy_saved_objects_to_space/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -929,6 +978,7 @@ ], "path": "x-pack/plugins/spaces/public/copy_saved_objects_to_space/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -940,7 +990,8 @@ "\nThe object's type." ], "path": "x-pack/plugins/spaces/public/copy_saved_objects_to_space/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -952,7 +1003,8 @@ "\nThe object's ID." ], "path": "x-pack/plugins/spaces/public/copy_saved_objects_to_space/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -967,7 +1019,8 @@ "string[]" ], "path": "x-pack/plugins/spaces/public/copy_saved_objects_to_space/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -982,7 +1035,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/public/copy_saved_objects_to_space/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -997,7 +1051,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/public/copy_saved_objects_to_space/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1013,6 +1068,7 @@ ], "path": "x-pack/plugins/spaces/public/legacy_urls/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -1024,7 +1080,8 @@ "\nThe target type of the legacy URL alias." ], "path": "x-pack/plugins/spaces/public/legacy_urls/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1036,7 +1093,8 @@ "\nThe source ID of the legacy URL alias." ], "path": "x-pack/plugins/spaces/public/legacy_urls/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1069,6 +1127,7 @@ ], "path": "x-pack/plugins/spaces/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -1091,7 +1150,8 @@ ", boolean> | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1107,6 +1167,7 @@ ], "path": "x-pack/plugins/spaces/public/legacy_urls/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -1121,7 +1182,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/public/legacy_urls/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1133,7 +1195,8 @@ "\nThe ID of the object that is currently shown on the page." ], "path": "x-pack/plugins/spaces/public/legacy_urls/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1145,7 +1208,8 @@ "\nThe ID of the other object that the legacy URL alias points to." ], "path": "x-pack/plugins/spaces/public/legacy_urls/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1157,7 +1221,8 @@ "\n The path within your application to use for the new URL, optionally including `search` and/or `hash` URL components. Do not include\n `/app/my-app` or the current base path." ], "path": "x-pack/plugins/spaces/public/legacy_urls/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1173,6 +1238,7 @@ ], "path": "x-pack/plugins/spaces/public/legacy_urls/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -1184,7 +1250,8 @@ "\nThe path to use for the new URL, optionally including `search` and/or `hash` URL components." ], "path": "x-pack/plugins/spaces/public/legacy_urls/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1199,7 +1266,8 @@ "\"savedObjectConversion\" | \"savedObjectImport\" | undefined" ], "path": "x-pack/plugins/spaces/public/legacy_urls/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1214,7 +1282,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/public/legacy_urls/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1230,6 +1299,7 @@ ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -1250,7 +1320,8 @@ } ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1265,7 +1336,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1280,7 +1352,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1295,7 +1368,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1310,7 +1384,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1325,7 +1400,8 @@ "\"within-space\" | \"outside-space\" | undefined" ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1341,6 +1417,7 @@ ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -1354,6 +1431,7 @@ ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1368,6 +1446,7 @@ ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1382,6 +1461,7 @@ ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1401,6 +1481,7 @@ ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -1414,6 +1495,7 @@ ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1433,6 +1515,7 @@ ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1450,6 +1533,7 @@ ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -1461,7 +1545,8 @@ "\nThe object's type." ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1473,7 +1558,8 @@ "\nThe object's ID." ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1488,7 +1574,8 @@ "string[]" ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1503,7 +1590,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1518,7 +1606,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1533,7 +1622,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/public/share_saved_objects_to_space/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1549,6 +1639,7 @@ ], "path": "x-pack/plugins/spaces/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -1560,7 +1651,8 @@ "\nThe unique identifier for this space.\nThe id becomes part of the \"URL Identifier\" of the space.\n\nExample: an id of `marketing` would result in the URL identifier of `/s/marketing`." ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1572,7 +1664,8 @@ "\nDisplay name for this space." ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1587,7 +1680,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1602,7 +1696,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1617,7 +1712,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1632,7 +1728,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1647,7 +1744,8 @@ "string[]" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1664,7 +1762,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1680,6 +1779,7 @@ ], "path": "x-pack/plugins/spaces/public/space_avatar/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -1694,7 +1794,8 @@ "{ id?: string | undefined; name?: string | undefined; description?: string | undefined; color?: string | undefined; initials?: string | undefined; imageUrl?: string | undefined; disabledFeatures?: string[] | undefined; _reserved?: boolean | undefined; }" ], "path": "x-pack/plugins/spaces/public/space_avatar/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1709,7 +1810,8 @@ "\"m\" | \"s\" | \"l\" | \"xl\" | undefined" ], "path": "x-pack/plugins/spaces/public/space_avatar/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1724,7 +1826,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/public/space_avatar/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1739,7 +1842,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/spaces/public/space_avatar/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1754,7 +1858,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/spaces/public/space_avatar/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1770,6 +1875,7 @@ ], "path": "x-pack/plugins/spaces/public/space_avatar/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -1783,6 +1889,7 @@ ], "path": "x-pack/plugins/spaces/public/space_avatar/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1802,6 +1909,7 @@ ], "path": "x-pack/plugins/spaces/public/space_avatar/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -1815,6 +1923,7 @@ ], "path": "x-pack/plugins/spaces/public/space_avatar/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1833,7 +1942,8 @@ "React.CSSProperties | undefined" ], "path": "x-pack/plugins/spaces/public/space_avatar/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1849,6 +1959,7 @@ ], "path": "x-pack/plugins/spaces/public/space_list/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -1863,7 +1974,8 @@ "string[]" ], "path": "x-pack/plugins/spaces/public/space_list/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1878,7 +1990,8 @@ "number | undefined" ], "path": "x-pack/plugins/spaces/public/space_list/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1893,7 +2006,8 @@ "\"within-space\" | \"outside-space\" | undefined" ], "path": "x-pack/plugins/spaces/public/space_list/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1909,6 +2023,7 @@ ], "path": "x-pack/plugins/spaces/public/space_list/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1925,7 +2040,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/public/space_list/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1941,6 +2057,7 @@ ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -1961,7 +2078,8 @@ } ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -1985,6 +2103,7 @@ ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -2004,6 +2123,7 @@ ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2039,6 +2159,7 @@ ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2056,6 +2177,7 @@ ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -2079,6 +2201,7 @@ ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2092,7 +2215,8 @@ "T" ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2118,6 +2242,7 @@ ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2131,7 +2256,8 @@ "T" ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2157,6 +2283,7 @@ ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2170,7 +2297,8 @@ "T" ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2196,6 +2324,7 @@ ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2209,7 +2338,8 @@ "T" ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2235,6 +2365,7 @@ ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2248,7 +2379,8 @@ "T" ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2274,6 +2406,7 @@ ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2287,7 +2420,8 @@ "T" ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2313,6 +2447,7 @@ ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2326,7 +2461,8 @@ "T" ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -2344,6 +2480,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_context/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -2358,7 +2495,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/public/spaces_context/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2374,6 +2512,7 @@ ], "path": "x-pack/plugins/spaces/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -2396,7 +2535,8 @@ ">" ], "path": "x-pack/plugins/spaces/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -2408,7 +2548,8 @@ "The ID of the active space." ], "path": "x-pack/plugins/spaces/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2442,6 +2583,7 @@ ], "path": "x-pack/plugins/spaces/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -2456,7 +2598,8 @@ "true | undefined" ], "path": "x-pack/plugins/spaces/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -2471,7 +2614,8 @@ "true | undefined" ], "path": "x-pack/plugins/spaces/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -2495,6 +2639,7 @@ ], "path": "x-pack/plugins/spaces/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -2514,6 +2659,7 @@ ], "path": "x-pack/plugins/spaces/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2541,6 +2687,7 @@ ], "path": "x-pack/plugins/spaces/public/spaces_context/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -2559,7 +2706,8 @@ } ], "path": "x-pack/plugins/spaces/public/spaces_context/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -2580,7 +2728,8 @@ ">" ], "path": "x-pack/plugins/spaces/public/spaces_context/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -2593,7 +2742,8 @@ "Services" ], "path": "x-pack/plugins/spaces/public/spaces_context/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2615,6 +2765,7 @@ ], "path": "x-pack/plugins/spaces/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2631,6 +2782,7 @@ ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2644,7 +2796,8 @@ "T" ], "path": "x-pack/plugins/spaces/public/ui_api/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2665,6 +2818,7 @@ ], "path": "x-pack/plugins/spaces/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "lifecycle": "setup", "initialIsOpen": true }, @@ -2679,6 +2833,7 @@ ], "path": "x-pack/plugins/spaces/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -2704,6 +2859,7 @@ ], "path": "x-pack/plugins/spaces/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2729,6 +2885,7 @@ ], "path": "x-pack/plugins/spaces/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2751,7 +2908,8 @@ } ], "path": "x-pack/plugins/spaces/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", @@ -2775,6 +2933,7 @@ ], "path": "x-pack/plugins/spaces/common/lib/spaces_url_parser.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -2790,6 +2949,7 @@ ], "path": "x-pack/plugins/spaces/common/lib/spaces_url_parser.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2806,6 +2966,7 @@ ], "path": "x-pack/plugins/spaces/common/lib/spaces_url_parser.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2822,6 +2983,7 @@ ], "path": "x-pack/plugins/spaces/common/lib/spaces_url_parser.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2843,6 +3005,7 @@ ], "path": "x-pack/plugins/spaces/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -2866,7 +3029,8 @@ " | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -2883,7 +3047,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2916,6 +3081,7 @@ ], "path": "x-pack/plugins/spaces/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -2938,7 +3104,8 @@ ", boolean> | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2954,6 +3121,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -2985,6 +3153,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3007,6 +3176,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3034,6 +3204,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3049,6 +3220,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3084,6 +3256,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3105,6 +3278,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3140,6 +3314,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3155,6 +3330,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3177,6 +3353,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3198,6 +3375,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3213,6 +3391,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3232,6 +3411,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3247,6 +3427,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3274,6 +3455,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3296,6 +3478,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3315,6 +3498,7 @@ ], "path": "x-pack/plugins/spaces/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3326,7 +3510,8 @@ "\nThe namespace that the object existed in when it was converted." ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -3338,7 +3523,8 @@ "\nThe type of the object when it was converted." ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -3350,7 +3536,8 @@ "\nThe original ID of the object, before it was converted." ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3366,6 +3553,7 @@ ], "path": "x-pack/plugins/spaces/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3377,7 +3565,8 @@ "\nThe unique identifier for this space.\nThe id becomes part of the \"URL Identifier\" of the space.\n\nExample: an id of `marketing` would result in the URL identifier of `/s/marketing`." ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -3389,7 +3578,8 @@ "\nDisplay name for this space." ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -3404,7 +3594,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -3419,7 +3610,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -3434,7 +3626,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -3449,7 +3642,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -3464,7 +3658,8 @@ "string[]" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -3481,7 +3676,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3497,6 +3693,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3514,6 +3711,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3530,6 +3728,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3549,6 +3748,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3564,6 +3764,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3583,6 +3784,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3598,6 +3800,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3617,6 +3820,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3641,6 +3845,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3657,6 +3862,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3678,6 +3884,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3694,6 +3901,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3715,6 +3923,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3731,6 +3940,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3760,6 +3970,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3776,6 +3987,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3795,6 +4007,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3810,6 +4023,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3829,6 +4043,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -3844,6 +4059,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_service/spaces_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3869,6 +4085,7 @@ ], "path": "x-pack/plugins/spaces/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3892,6 +4109,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client_service.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3906,7 +4124,8 @@ "" ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -3919,7 +4138,8 @@ "SavedObjectsServiceStart" ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3957,6 +4177,7 @@ ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client_service.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3971,7 +4192,8 @@ "" ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -3990,7 +4212,8 @@ } ], "path": "x-pack/plugins/spaces/server/spaces_client/spaces_client_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4008,6 +4231,7 @@ ], "path": "x-pack/plugins/spaces/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -4028,7 +4252,8 @@ } ], "path": "x-pack/plugins/spaces/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -4061,7 +4286,8 @@ ") => void; }" ], "path": "x-pack/plugins/spaces/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -4078,6 +4304,7 @@ ], "path": "x-pack/plugins/spaces/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -4098,7 +4325,8 @@ } ], "path": "x-pack/plugins/spaces/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", @@ -4122,6 +4350,7 @@ ], "path": "x-pack/plugins/spaces/common/lib/spaces_url_parser.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -4137,6 +4366,7 @@ ], "path": "x-pack/plugins/spaces/common/lib/spaces_url_parser.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4153,6 +4383,7 @@ ], "path": "x-pack/plugins/spaces/common/lib/spaces_url_parser.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4169,6 +4400,7 @@ ], "path": "x-pack/plugins/spaces/common/lib/spaces_url_parser.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4193,6 +4425,7 @@ ], "path": "x-pack/plugins/spaces/common/lib/spaces_url_parser.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -4208,6 +4441,7 @@ ], "path": "x-pack/plugins/spaces/common/lib/spaces_url_parser.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -4224,6 +4458,7 @@ ], "path": "x-pack/plugins/spaces/common/lib/spaces_url_parser.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4254,6 +4489,7 @@ ], "path": "x-pack/plugins/spaces/common/is_reserved_space.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -4277,6 +4513,7 @@ ], "path": "x-pack/plugins/spaces/common/is_reserved_space.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4298,6 +4535,7 @@ ], "path": "x-pack/plugins/spaces/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -4321,7 +4559,8 @@ " | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -4338,7 +4577,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4371,6 +4611,7 @@ ], "path": "x-pack/plugins/spaces/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -4393,7 +4634,8 @@ ", boolean> | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4409,6 +4651,7 @@ ], "path": "x-pack/plugins/spaces/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -4420,7 +4663,8 @@ "\nThe namespace that the object existed in when it was converted." ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -4432,7 +4676,8 @@ "\nThe type of the object when it was converted." ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -4444,7 +4689,8 @@ "\nThe original ID of the object, before it was converted." ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4460,6 +4706,7 @@ ], "path": "x-pack/plugins/spaces/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "spaces", @@ -4471,7 +4718,8 @@ "\nThe unique identifier for this space.\nThe id becomes part of the \"URL Identifier\" of the space.\n\nExample: an id of `marketing` would result in the URL identifier of `/s/marketing`." ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -4483,7 +4731,8 @@ "\nDisplay name for this space." ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -4498,7 +4747,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -4513,7 +4763,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -4528,7 +4779,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -4543,7 +4795,8 @@ "string | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -4558,7 +4811,8 @@ "string[]" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "spaces", @@ -4575,7 +4829,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/spaces/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4597,6 +4852,7 @@ ], "path": "x-pack/plugins/spaces/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4613,6 +4869,7 @@ ], "path": "x-pack/plugins/spaces/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4629,6 +4886,7 @@ ], "path": "x-pack/plugins/spaces/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4645,6 +4903,7 @@ ], "path": "x-pack/plugins/spaces/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/spaces.mdx b/api_docs/spaces.mdx index 3178ef1c79314..04a2b91499bc9 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'spaces'] --- import spacesObj from './spaces.devdocs.json'; diff --git a/api_docs/stack_alerts.devdocs.json b/api_docs/stack_alerts.devdocs.json index 4d610918a1e83..209dcb93ef3a1 100644 --- a/api_docs/stack_alerts.devdocs.json +++ b/api_docs/stack_alerts.devdocs.json @@ -26,6 +26,7 @@ ], "path": "x-pack/plugins/stack_alerts/server/alert_types/index_threshold/alert_type.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -49,6 +50,7 @@ ], "path": "x-pack/plugins/stack_alerts/common/config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -63,6 +65,7 @@ ], "path": "x-pack/plugins/stack_alerts/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -80,6 +83,7 @@ ], "path": "x-pack/plugins/stack_alerts/common/config.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/stack_alerts.mdx b/api_docs/stack_alerts.mdx index c37d18d3f2e87..a7267f334ac24 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'stackAlerts'] --- import stackAlertsObj from './stack_alerts.devdocs.json'; diff --git a/api_docs/task_manager.devdocs.json b/api_docs/task_manager.devdocs.json index 5b232995d8816..98ff17ac35f74 100644 --- a/api_docs/task_manager.devdocs.json +++ b/api_docs/task_manager.devdocs.json @@ -53,6 +53,7 @@ ], "path": "x-pack/plugins/task_manager/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -66,6 +67,7 @@ ], "path": "x-pack/plugins/task_manager/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -86,6 +88,7 @@ ], "path": "x-pack/plugins/task_manager/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -126,6 +129,7 @@ ], "path": "x-pack/plugins/task_manager/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -146,6 +150,7 @@ ], "path": "x-pack/plugins/task_manager/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -157,6 +162,7 @@ "description": [], "path": "x-pack/plugins/task_manager/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -176,7 +182,8 @@ " | undefined" ], "path": "x-pack/plugins/task_manager/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -210,6 +217,7 @@ ], "path": "x-pack/plugins/task_manager/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -229,6 +237,7 @@ ], "path": "x-pack/plugins/task_manager/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -257,6 +266,7 @@ ], "path": "x-pack/plugins/task_manager/server/queries/aggregate_task_overdue_percentiles_for_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -270,6 +280,7 @@ ], "path": "x-pack/plugins/task_manager/server/queries/aggregate_task_overdue_percentiles_for_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -288,6 +299,7 @@ ], "path": "x-pack/plugins/task_manager/server/lib/intervals.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -301,6 +313,7 @@ ], "path": "x-pack/plugins/task_manager/server/lib/intervals.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -321,6 +334,7 @@ ], "path": "x-pack/plugins/task_manager/server/task_running/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -335,6 +349,7 @@ ], "path": "x-pack/plugins/task_manager/server/task_running/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -355,6 +370,7 @@ ], "path": "x-pack/plugins/task_manager/server/task_running/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -369,6 +385,7 @@ ], "path": "x-pack/plugins/task_manager/server/task_running/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -387,6 +404,7 @@ ], "path": "x-pack/plugins/task_manager/server/task_running/errors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -400,6 +418,7 @@ ], "path": "x-pack/plugins/task_manager/server/task_running/errors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -419,6 +438,7 @@ ], "path": "x-pack/plugins/task_manager/server/task_scheduling.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -440,7 +460,8 @@ "[]" ], "path": "x-pack/plugins/task_manager/server/task_scheduling.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -463,7 +484,8 @@ "; error: Error; }[]" ], "path": "x-pack/plugins/task_manager/server/task_scheduling.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -496,6 +518,7 @@ ], "path": "x-pack/plugins/task_manager/server/task.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -507,7 +530,8 @@ "\nThe id of the Elastic document that stores this instance's data. This can\nbe passed by the caller when scheduling the task." ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -523,6 +547,7 @@ ], "path": "x-pack/plugins/task_manager/server/task.ts", "deprecated": true, + "trackAdoption": false, "references": [] }, { @@ -538,7 +563,8 @@ "string | undefined" ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -553,7 +579,8 @@ "Date" ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -565,7 +592,8 @@ "\nThe number of unsuccessful attempts since the last successful run. This\nwill be zeroed out after a successful run." ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -586,7 +614,8 @@ } ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -601,7 +630,8 @@ "Date" ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -616,7 +646,8 @@ "Date | null" ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -631,7 +662,8 @@ "Date | null" ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -646,7 +678,8 @@ "{ [x: string]: any; }" ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -661,7 +694,8 @@ "string | null" ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -677,6 +711,7 @@ ], "path": "x-pack/plugins/task_manager/server/task.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -697,7 +732,8 @@ } ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -711,6 +747,7 @@ "description": [], "path": "x-pack/plugins/task_manager/server/task_scheduling.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -720,7 +757,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/task_manager/server/task_scheduling.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -733,7 +771,8 @@ "Record | undefined" ], "path": "x-pack/plugins/task_manager/server/task_scheduling.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -747,6 +786,7 @@ "description": [], "path": "x-pack/plugins/task_manager/server/task.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -761,7 +801,8 @@ "string | undefined" ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -773,7 +814,8 @@ "\nThe task definition type whose run function will execute this instance." ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -788,7 +830,8 @@ "Date | undefined" ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -803,7 +846,8 @@ "Date | null | undefined" ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -818,7 +862,8 @@ "Date | null | undefined" ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -833,7 +878,8 @@ "Date | undefined" ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -849,7 +895,8 @@ " | undefined" ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -864,7 +911,8 @@ "{ [x: string]: any; }" ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -879,7 +927,8 @@ "{ [x: string]: any; }" ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -894,7 +943,8 @@ "string | undefined" ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -909,7 +959,8 @@ "string | undefined" ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -924,7 +975,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -939,7 +991,8 @@ "string | null | undefined" ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -955,6 +1008,7 @@ ], "path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -969,7 +1023,8 @@ "string | undefined" ], "path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -984,7 +1039,8 @@ "string | undefined" ], "path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -999,7 +1055,8 @@ "string | undefined" ], "path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -1015,6 +1072,7 @@ ], "path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -1028,6 +1086,7 @@ ], "path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1042,6 +1101,7 @@ ], "path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1070,6 +1130,7 @@ ], "path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1089,7 +1150,8 @@ } ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1106,7 +1168,8 @@ "number | undefined" ], "path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "taskManager", @@ -1121,7 +1184,8 @@ "number | undefined" ], "path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1137,6 +1201,7 @@ "description": [], "path": "x-pack/plugins/task_manager/server/task.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1155,6 +1220,7 @@ ], "path": "x-pack/plugins/task_manager/server/task.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1179,6 +1245,7 @@ ], "path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1202,6 +1269,7 @@ ], "path": "x-pack/plugins/task_manager/server/task.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1221,7 +1289,8 @@ } ], "path": "x-pack/plugins/task_manager/server/task.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1237,6 +1306,7 @@ "description": [], "path": "x-pack/plugins/task_manager/server/queries/mark_available_tasks_as_claimed.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -1247,6 +1317,7 @@ "description": [], "path": "x-pack/plugins/task_manager/server/queries/mark_available_tasks_as_claimed.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -1259,7 +1330,8 @@ "({ term: { 'task.status': string; }; } | { range: { 'task.runAt': { lte: string; }; }; })[]" ], "path": "x-pack/plugins/task_manager/server/queries/mark_available_tasks_as_claimed.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1275,6 +1347,7 @@ "description": [], "path": "x-pack/plugins/task_manager/server/queries/mark_available_tasks_as_claimed.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -1285,6 +1358,7 @@ "description": [], "path": "x-pack/plugins/task_manager/server/queries/mark_available_tasks_as_claimed.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -1297,7 +1371,8 @@ "({ bool: { should: { term: { 'task.status': string; }; }[]; }; } | { range: { 'task.retryAt': { lte: string; }; }; })[]" ], "path": "x-pack/plugins/task_manager/server/queries/mark_available_tasks_as_claimed.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1314,6 +1389,7 @@ "description": [], "path": "x-pack/plugins/task_manager/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -1326,6 +1402,7 @@ "description": [], "path": "x-pack/plugins/task_manager/server/plugin.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "actions", @@ -1355,6 +1432,7 @@ ], "path": "x-pack/plugins/task_manager/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -1368,6 +1446,7 @@ ], "path": "x-pack/plugins/task_manager/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1395,6 +1474,7 @@ ], "path": "x-pack/plugins/task_manager/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "taskManager", @@ -1416,6 +1496,7 @@ ], "path": "x-pack/plugins/task_manager/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1441,6 +1522,7 @@ ], "path": "x-pack/plugins/task_manager/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } diff --git a/api_docs/task_manager.mdx b/api_docs/task_manager.mdx index 912955764e527..afeaaa23f957b 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'taskManager'] --- import taskManagerObj from './task_manager.devdocs.json'; diff --git a/api_docs/telemetry.devdocs.json b/api_docs/telemetry.devdocs.json index 2adb6124f8670..27c6790692801 100644 --- a/api_docs/telemetry.devdocs.json +++ b/api_docs/telemetry.devdocs.json @@ -15,6 +15,7 @@ ], "path": "src/plugins/telemetry/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetry", @@ -30,6 +31,7 @@ ], "path": "src/plugins/telemetry/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -47,6 +49,7 @@ ], "path": "src/plugins/telemetry/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetry", @@ -58,7 +61,8 @@ "The banner is expected to be shown when needed" ], "path": "src/plugins/telemetry/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetry", @@ -70,7 +74,8 @@ "Does the cluster allow changing the opt-in/out status via the UI?" ], "path": "src/plugins/telemetry/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetry", @@ -85,7 +90,8 @@ "boolean | null" ], "path": "src/plugins/telemetry/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetry", @@ -100,7 +106,8 @@ "\"prod\" | \"staging\"" ], "path": "src/plugins/telemetry/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetry", @@ -115,7 +122,8 @@ "\"browser\" | \"server\"" ], "path": "src/plugins/telemetry/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetry", @@ -130,7 +138,8 @@ "boolean | undefined" ], "path": "src/plugins/telemetry/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetry", @@ -145,7 +154,8 @@ "boolean | undefined" ], "path": "src/plugins/telemetry/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetry", @@ -160,7 +170,8 @@ "boolean | undefined" ], "path": "src/plugins/telemetry/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetry", @@ -175,7 +186,8 @@ "{ [x: string]: unknown; }" ], "path": "src/plugins/telemetry/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -191,6 +203,7 @@ ], "path": "src/plugins/telemetry/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetry", @@ -206,6 +219,7 @@ ], "path": "src/plugins/telemetry/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -219,7 +233,8 @@ "Is the user allowed to change the opt-in/out status?" ], "path": "src/plugins/telemetry/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetry", @@ -235,6 +250,7 @@ ], "path": "src/plugins/telemetry/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -252,6 +268,7 @@ ], "path": "src/plugins/telemetry/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -269,6 +286,7 @@ ], "path": "src/plugins/telemetry/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -286,6 +304,7 @@ ], "path": "src/plugins/telemetry/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetry", @@ -301,6 +320,7 @@ ], "path": "src/plugins/telemetry/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -322,6 +342,7 @@ "description": [], "path": "src/plugins/telemetry/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetry", @@ -342,7 +363,8 @@ } ], "path": "src/plugins/telemetry/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetry", @@ -357,7 +379,8 @@ "{ setOptedInNoticeSeen: () => Promise; }" ], "path": "src/plugins/telemetry/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetry", @@ -378,7 +401,8 @@ } ], "path": "src/plugins/telemetry/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", @@ -395,6 +419,7 @@ ], "path": "src/plugins/telemetry/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetry", @@ -415,7 +440,8 @@ } ], "path": "src/plugins/telemetry/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -437,6 +463,7 @@ ], "path": "src/plugins/telemetry/server/telemetry_collection/get_data_telemetry/get_data_telemetry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetry", @@ -448,7 +475,8 @@ "How many indices match the declared pattern" ], "path": "src/plugins/telemetry/server/telemetry_collection/get_data_telemetry/get_data_telemetry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetry", @@ -463,7 +491,8 @@ "number | undefined" ], "path": "src/plugins/telemetry/server/telemetry_collection/get_data_telemetry/get_data_telemetry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetry", @@ -478,7 +507,8 @@ "number | undefined" ], "path": "src/plugins/telemetry/server/telemetry_collection/get_data_telemetry/get_data_telemetry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetry", @@ -493,7 +523,8 @@ "number | undefined" ], "path": "src/plugins/telemetry/server/telemetry_collection/get_data_telemetry/get_data_telemetry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -526,6 +557,7 @@ ], "path": "src/plugins/telemetry/server/telemetry_collection/get_data_telemetry/get_data_telemetry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetry", @@ -540,7 +572,8 @@ "{ dataset?: string | undefined; type?: string | undefined; } | undefined" ], "path": "src/plugins/telemetry/server/telemetry_collection/get_data_telemetry/get_data_telemetry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetry", @@ -555,7 +588,8 @@ "{ name: string; } | undefined" ], "path": "src/plugins/telemetry/server/telemetry_collection/get_data_telemetry/get_data_telemetry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetry", @@ -570,7 +604,8 @@ "string | undefined" ], "path": "src/plugins/telemetry/server/telemetry_collection/get_data_telemetry/get_data_telemetry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetry", @@ -585,7 +620,8 @@ "\"search\" | \"logstash\" | \"enterprise-search\" | \"app-search\" | \"magento2\" | \"magento\" | \"shopify\" | \"wordpress\" | \"drupal\" | \"joomla\" | \"sharepoint\" | \"squarespace\" | \"sitecore\" | \"weebly\" | \"acquia\" | \"filebeat\" | \"metricbeat\" | \"apm\" | \"functionbeat\" | \"heartbeat\" | \"fluentd\" | \"telegraf\" | \"prometheusbeat\" | \"fluentbit\" | \"nginx\" | \"apache\" | \"endgame\" | \"logs-endpoint\" | \"metrics-endpoint\" | \"siem-signals\" | \"auditbeat\" | \"winlogbeat\" | \"packetbeat\" | \"tomcat\" | \"artifactory\" | \"aruba\" | \"barracuda\" | \"bluecoat\" | \"arcsight\" | \"checkpoint\" | \"cisco\" | \"citrix\" | \"cyberark\" | \"cylance\" | \"fireeye\" | \"fortinet\" | \"infoblox\" | \"kaspersky\" | \"mcafee\" | \"paloaltonetworks\" | \"rsa\" | \"snort\" | \"sonicwall\" | \"sophos\" | \"squid\" | \"symantec\" | \"tippingpoint\" | \"trendmicro\" | \"tripwire\" | \"zscaler\" | \"zeek\" | \"sigma_doc\" | \"ecs-corelight\" | \"suricata\" | \"wazuh\" | \"meow\" | \"host_risk_score\" | \"user_risk_score\" | undefined" ], "path": "src/plugins/telemetry/server/telemetry_collection/get_data_telemetry/get_data_telemetry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -612,6 +648,7 @@ ], "path": "src/plugins/telemetry/server/telemetry_collection/get_nodes_usage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetry", @@ -623,7 +660,8 @@ "\nThe Node ID as reported by ES" ], "path": "src/plugins/telemetry/server/telemetry_collection/get_nodes_usage.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -652,6 +690,7 @@ ], "path": "src/plugins/telemetry/server/telemetry_collection/get_data_telemetry/get_data_telemetry.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -678,6 +717,7 @@ ], "path": "src/plugins/telemetry/server/telemetry_collection/get_local_stats.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -693,6 +733,7 @@ ], "path": "src/plugins/telemetry/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetry", @@ -710,6 +751,7 @@ ], "path": "src/plugins/telemetry/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -728,21 +770,59 @@ ], "path": "src/plugins/telemetry/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetry", "id": "def-server.TelemetryPluginStart.getIsOptedIn", "type": "Function", - "tags": [], + "tags": [ + "track-adoption" + ], "label": "getIsOptedIn", "description": [ - "\nResolves `true` if the user has opted into send Elastic usage data.\nResolves `false` if the user explicitly opted out of sending usage data to Elastic\nor did not choose to opt-in or out -yet- after a minor or major upgrade (only when previously opted-out)." + "\nResolves `true` if the user has opted into send Elastic usage data.\nResolves `false` if the user explicitly opted out of sending usage data to Elastic\nor did not choose to opt-in or out -yet- after a minor or major upgrade (only when previously opted-out).\n" ], "signature": [ "() => Promise" ], "path": "src/plugins/telemetry/server/plugin.ts", "deprecated": false, + "trackAdoption": true, + "references": [ + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/telemetry/sender.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/telemetry/sender.ts" + }, + { + "plugin": "synthetics", + "path": "x-pack/plugins/synthetics/server/legacy_uptime/lib/telemetry/sender.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/telemetry/sender.test.ts" + }, + { + "plugin": "fleet", + "path": "x-pack/plugins/fleet/server/telemetry/sender.test.ts" + }, + { + "plugin": "securitySolution", + "path": "x-pack/plugins/security_solution/server/lib/telemetry/sender.test.ts" + }, + { + "plugin": "synthetics", + "path": "x-pack/plugins/synthetics/server/legacy_uptime/lib/telemetry/sender.test.ts" + }, + { + "plugin": "synthetics", + "path": "x-pack/plugins/synthetics/server/legacy_uptime/lib/telemetry/sender.test.ts" + } + ], "children": [], "returnComment": [] } diff --git a/api_docs/telemetry.mdx b/api_docs/telemetry.mdx index 62003ca58f54c..9d26a0797fc9a 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetry'] --- import telemetryObj from './telemetry.devdocs.json'; diff --git a/api_docs/telemetry_collection_manager.devdocs.json b/api_docs/telemetry_collection_manager.devdocs.json index 5d4bfd39478e6..46639d54fba68 100644 --- a/api_docs/telemetry_collection_manager.devdocs.json +++ b/api_docs/telemetry_collection_manager.devdocs.json @@ -21,6 +21,7 @@ "description": [], "path": "src/plugins/telemetry_collection_manager/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetryCollectionManager", @@ -30,7 +31,8 @@ "label": "clusterUuid", "description": [], "path": "src/plugins/telemetry_collection_manager/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -44,6 +46,7 @@ "description": [], "path": "src/plugins/telemetry_collection_manager/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetryCollectionManager", @@ -62,7 +65,8 @@ } ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetryCollectionManager", @@ -1263,7 +1267,8 @@ "; }" ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetryCollectionManager", @@ -1276,7 +1281,8 @@ "SavedObjectsClientContract" ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetryCollectionManager", @@ -1286,7 +1292,8 @@ "label": "refreshCache", "description": [], "path": "src/plugins/telemetry_collection_manager/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1300,6 +1307,7 @@ "description": [], "path": "src/plugins/telemetry_collection_manager/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetryCollectionManager", @@ -1313,7 +1321,8 @@ " | Console" ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetryCollectionManager", @@ -1323,7 +1332,8 @@ "label": "version", "description": [], "path": "src/plugins/telemetry_collection_manager/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1348,6 +1358,7 @@ ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetryCollectionManager", @@ -1360,7 +1371,8 @@ "CacheDetails" ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetryCollectionManager", @@ -1370,7 +1382,8 @@ "label": "collectionSource", "description": [], "path": "src/plugins/telemetry_collection_manager/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1414,6 +1427,7 @@ ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1433,7 +1447,8 @@ } ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetryCollectionManager", @@ -1452,7 +1467,8 @@ } ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1493,6 +1509,7 @@ ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1513,7 +1530,8 @@ "[]" ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetryCollectionManager", @@ -1532,7 +1550,8 @@ } ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetryCollectionManager", @@ -1551,7 +1570,8 @@ } ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1570,6 +1590,7 @@ ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1602,6 +1623,7 @@ ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetryCollectionManager", @@ -1619,6 +1641,7 @@ ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetryCollectionManager", @@ -1633,6 +1656,7 @@ ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1653,6 +1677,7 @@ ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetryCollectionManager", @@ -1673,7 +1698,8 @@ "): Promise<{ clusterUuid: string; stats: string; }[]>; }" ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetryCollectionManager", @@ -1700,7 +1726,8 @@ "): Promise<{ clusterUuid: string; stats: string; }[]>; }" ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetryCollectionManager", @@ -1716,6 +1743,7 @@ ], "path": "src/plugins/telemetry_collection_manager/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1739,6 +1767,7 @@ "description": [], "path": "src/plugins/telemetry_collection_manager/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1753,6 +1782,7 @@ ], "path": "src/plugins/telemetry_collection_manager/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1767,6 +1797,7 @@ ], "path": "src/plugins/telemetry_collection_manager/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/telemetry_collection_manager.mdx b/api_docs/telemetry_collection_manager.mdx index ee49e142b544c..fa4a84d009b7e 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetryCollectionManager'] --- import telemetryCollectionManagerObj from './telemetry_collection_manager.devdocs.json'; diff --git a/api_docs/telemetry_collection_xpack.devdocs.json b/api_docs/telemetry_collection_xpack.devdocs.json index 416f780c957ed..2c52ac22dd6ed 100644 --- a/api_docs/telemetry_collection_xpack.devdocs.json +++ b/api_docs/telemetry_collection_xpack.devdocs.json @@ -26,6 +26,7 @@ ], "path": "x-pack/plugins/telemetry_collection_xpack/server/telemetry_collection/get_license.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/telemetry_collection_xpack.mdx b/api_docs/telemetry_collection_xpack.mdx index b08f8b839f720..c17d37ef70fe9 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetryCollectionXpack'] --- import telemetryCollectionXpackObj from './telemetry_collection_xpack.devdocs.json'; diff --git a/api_docs/telemetry_management_section.devdocs.json b/api_docs/telemetry_management_section.devdocs.json index babf5465161cc..3b32bad1b2688 100644 --- a/api_docs/telemetry_management_section.devdocs.json +++ b/api_docs/telemetry_management_section.devdocs.json @@ -23,6 +23,7 @@ ], "path": "src/plugins/telemetry_management_section/public/components/opt_in_example_flyout.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetryManagementSection", @@ -32,7 +33,8 @@ "label": "_isMounted", "description": [], "path": "src/plugins/telemetry_management_section/public/components/opt_in_example_flyout.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetryManagementSection", @@ -43,6 +45,7 @@ "description": [], "path": "src/plugins/telemetry_management_section/public/components/opt_in_example_flyout.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetryManagementSection", @@ -55,7 +58,8 @@ "null" ], "path": "src/plugins/telemetry_management_section/public/components/opt_in_example_flyout.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetryManagementSection", @@ -68,7 +72,8 @@ "true" ], "path": "src/plugins/telemetry_management_section/public/components/opt_in_example_flyout.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "telemetryManagementSection", @@ -81,7 +86,8 @@ "false" ], "path": "src/plugins/telemetry_management_section/public/components/opt_in_example_flyout.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -97,6 +103,7 @@ ], "path": "src/plugins/telemetry_management_section/public/components/opt_in_example_flyout.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -112,6 +119,7 @@ ], "path": "src/plugins/telemetry_management_section/public/components/opt_in_example_flyout.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -127,6 +135,7 @@ ], "path": "src/plugins/telemetry_management_section/public/components/opt_in_example_flyout.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "telemetryManagementSection", @@ -140,6 +149,7 @@ ], "path": "src/plugins/telemetry_management_section/public/components/opt_in_example_flyout.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -157,6 +167,7 @@ ], "path": "src/plugins/telemetry_management_section/public/components/opt_in_example_flyout.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } diff --git a/api_docs/telemetry_management_section.mdx b/api_docs/telemetry_management_section.mdx index 1ce287369ce0d..c3278ea2f27b3 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'telemetryManagementSection'] --- import telemetryManagementSectionObj from './telemetry_management_section.devdocs.json'; diff --git a/api_docs/threat_intelligence.devdocs.json b/api_docs/threat_intelligence.devdocs.json index 395fff0838079..7cc71e1d30066 100644 --- a/api_docs/threat_intelligence.devdocs.json +++ b/api_docs/threat_intelligence.devdocs.json @@ -17,6 +17,7 @@ ], "path": "x-pack/plugins/threat_intelligence/public/common/navigation/security_solution_links.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "threatIntelligence", @@ -32,6 +33,7 @@ ], "path": "x-pack/plugins/threat_intelligence/public/common/navigation/security_solution_links.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -54,6 +56,7 @@ ], "path": "x-pack/plugins/threat_intelligence/public/common/navigation/security_solution_links.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "threatIntelligence", @@ -69,6 +72,7 @@ ], "path": "x-pack/plugins/threat_intelligence/public/common/navigation/security_solution_links.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -91,6 +95,7 @@ ], "path": "x-pack/plugins/threat_intelligence/public/common/navigation/security_solution_links.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "threatIntelligence", @@ -106,6 +111,7 @@ ], "path": "x-pack/plugins/threat_intelligence/public/common/navigation/security_solution_links.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -122,6 +128,7 @@ ], "path": "x-pack/plugins/threat_intelligence/public/common/navigation/security_solution_links.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -143,6 +150,7 @@ ], "path": "x-pack/plugins/threat_intelligence/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "threatIntelligence", @@ -158,6 +166,7 @@ ], "path": "x-pack/plugins/threat_intelligence/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -175,6 +184,7 @@ ], "path": "x-pack/plugins/threat_intelligence/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -191,7 +201,8 @@ "LicenseAware" ], "path": "x-pack/plugins/threat_intelligence/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "threatIntelligence", @@ -206,7 +217,8 @@ "SourcererDataView" ], "path": "x-pack/plugins/threat_intelligence/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -220,6 +232,7 @@ "description": [], "path": "x-pack/plugins/threat_intelligence/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false }, @@ -232,6 +245,7 @@ "description": [], "path": "x-pack/plugins/threat_intelligence/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "threatIntelligence", @@ -253,6 +267,7 @@ ], "path": "x-pack/plugins/threat_intelligence/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -276,6 +291,7 @@ ], "path": "x-pack/plugins/threat_intelligence/public/common/navigation/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -292,6 +308,7 @@ ], "path": "x-pack/plugins/threat_intelligence/public/common/navigation/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/threat_intelligence.mdx b/api_docs/threat_intelligence.mdx index 917b972b988da..c2cf26e1f13b8 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'threatIntelligence'] --- import threatIntelligenceObj from './threat_intelligence.devdocs.json'; diff --git a/api_docs/timelines.devdocs.json b/api_docs/timelines.devdocs.json index be9a5dce9af61..26500b5d7f838 100644 --- a/api_docs/timelines.devdocs.json +++ b/api_docs/timelines.devdocs.json @@ -15,6 +15,7 @@ ], "path": "x-pack/plugins/timelines/public/components/drag_and_drop/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -28,6 +29,7 @@ ], "path": "x-pack/plugins/timelines/public/components/drag_and_drop/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -47,6 +49,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/actions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -60,7 +63,8 @@ "Payload" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -74,7 +78,8 @@ " | undefined" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -93,6 +98,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -106,6 +112,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -125,6 +132,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/actions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -138,7 +146,8 @@ "Payload" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -152,7 +161,8 @@ " | undefined" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -170,6 +180,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/actions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -183,7 +194,8 @@ "Payload" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -197,7 +209,8 @@ " | undefined" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -215,6 +228,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/actions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -228,7 +242,8 @@ "Payload" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -242,7 +257,8 @@ " | undefined" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -262,6 +278,7 @@ ], "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -275,6 +292,7 @@ ], "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -289,6 +307,7 @@ ], "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -309,6 +328,7 @@ ], "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -322,6 +342,7 @@ ], "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -337,6 +358,7 @@ ], "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -363,6 +385,7 @@ ], "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -373,6 +396,7 @@ "description": [], "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -390,7 +414,8 @@ " | undefined; }" ], "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -405,7 +430,8 @@ "[]; id?: string | undefined; title: string; }" ], "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -419,7 +445,8 @@ "[]" ], "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -433,7 +460,8 @@ "[]" ], "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -455,6 +483,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -468,6 +497,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -486,6 +516,7 @@ ], "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -499,7 +530,8 @@ "A" ], "path": "node_modules/@types/lodash/ts3.1/fp.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -516,6 +548,7 @@ ], "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -529,6 +562,7 @@ ], "path": "x-pack/plugins/timelines/public/components/utils/keury/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -549,6 +583,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -559,6 +594,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -568,7 +604,8 @@ "label": "colindexAttribute", "description": [], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -581,7 +618,8 @@ "Element | null" ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -591,7 +629,8 @@ "label": "ariaColindex", "description": [], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -601,7 +640,8 @@ "label": "ariaRowindex", "description": [], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -611,7 +651,8 @@ "label": "rowindexAttribute", "description": [], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -633,6 +674,7 @@ ], "path": "x-pack/plugins/timelines/public/components/t_grid/body/column_headers/helpers.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -646,6 +688,7 @@ ], "path": "x-pack/plugins/timelines/public/components/t_grid/body/column_headers/helpers.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -666,6 +709,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -676,6 +720,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -688,7 +733,8 @@ "HTMLElement | null" ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -698,7 +744,8 @@ "label": "tableClassName", "description": [], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -720,6 +767,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -730,6 +778,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -742,7 +791,8 @@ "HTMLElement | null" ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -752,7 +802,8 @@ "label": "tableClassName", "description": [], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -830,6 +881,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/selectors.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -846,6 +898,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -859,6 +912,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -879,6 +933,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/pagination.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -892,6 +947,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/pagination.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -906,6 +962,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/pagination.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -924,6 +981,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -937,6 +995,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -960,6 +1019,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -970,6 +1030,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -982,7 +1043,8 @@ "HTMLElement | null" ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -996,6 +1058,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1009,7 +1072,8 @@ "{ containerElement: HTMLElement | null; tableClassName: string; }" ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1021,7 +1085,8 @@ "label": "shiftKey", "description": [], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -1035,6 +1100,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -1048,6 +1114,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1061,7 +1128,8 @@ "label": "tableClassName", "description": [], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1081,6 +1149,7 @@ ], "path": "x-pack/plugins/timelines/public/components/drag_and_drop/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -1094,6 +1163,7 @@ ], "path": "x-pack/plugins/timelines/public/components/drag_and_drop/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1116,6 +1186,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -1126,6 +1197,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -1139,6 +1211,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1154,6 +1227,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1168,7 +1242,8 @@ "\"SKIP_FOCUS_BACKWARDS\" | \"SKIP_FOCUS_FORWARD\" | \"SKIP_FOCUS_NOOP\"" ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1191,6 +1266,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/actions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1204,7 +1280,8 @@ "Payload" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -1218,7 +1295,8 @@ " | undefined" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1237,6 +1315,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -1250,6 +1329,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1270,6 +1350,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -1283,6 +1364,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1303,6 +1385,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -1316,6 +1399,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1336,6 +1420,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -1349,6 +1434,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1371,6 +1457,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -1381,6 +1468,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -1390,7 +1478,8 @@ "label": "colindexAttribute", "description": [], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -1403,7 +1492,8 @@ "HTMLDivElement | null" ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -1416,7 +1506,8 @@ "React.KeyboardEvent" ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -1426,7 +1517,8 @@ "label": "maxAriaColindex", "description": [], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -1436,7 +1528,8 @@ "label": "maxAriaRowindex", "description": [], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -1450,6 +1543,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1463,7 +1557,8 @@ "{ newFocusedColumn: HTMLDivElement | null; newFocusedColumnAriaColindex: number | null; }" ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1475,7 +1570,8 @@ "label": "rowindexAttribute", "description": [], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1496,6 +1592,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/actions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1509,7 +1606,8 @@ "Payload" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -1523,7 +1621,8 @@ " | undefined" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1541,6 +1640,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/actions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1554,7 +1654,8 @@ "Payload" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -1568,7 +1669,8 @@ " | undefined" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1586,6 +1688,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/actions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1599,7 +1702,8 @@ "Payload" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -1613,7 +1717,8 @@ " | undefined" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1639,6 +1744,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/actions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1652,7 +1758,8 @@ "Payload" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -1666,7 +1773,8 @@ " | undefined" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1684,6 +1792,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/actions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1697,7 +1806,8 @@ "Payload" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -1711,7 +1821,8 @@ " | undefined" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1730,6 +1841,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -1743,6 +1855,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1778,6 +1891,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/reducer.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1791,7 +1905,8 @@ "PassedS" ], "path": "node_modules/typescript-fsa-reducers/dist/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -1804,7 +1919,8 @@ "{ type: any; }" ], "path": "node_modules/typescript-fsa-reducers/dist/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1824,6 +1940,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/actions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1837,7 +1954,8 @@ "Payload" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -1851,7 +1969,8 @@ " | undefined" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1869,6 +1988,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/actions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1882,7 +2002,8 @@ "Payload" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -1896,7 +2017,8 @@ " | undefined" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1922,6 +2044,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/actions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1935,7 +2058,8 @@ "Payload" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -1949,7 +2073,8 @@ " | undefined" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1967,6 +2092,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/actions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1980,7 +2106,8 @@ "Payload" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -1994,7 +2121,8 @@ " | undefined" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2012,6 +2140,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/actions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2025,7 +2154,8 @@ "Payload" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2039,7 +2169,8 @@ " | undefined" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2057,6 +2188,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/actions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2070,7 +2202,8 @@ "Payload" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2084,7 +2217,8 @@ " | undefined" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2102,6 +2236,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/actions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2115,7 +2250,8 @@ "Payload" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2129,7 +2265,8 @@ " | undefined" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2149,6 +2286,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/actions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2162,7 +2300,8 @@ "Payload" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2176,7 +2315,8 @@ " | undefined" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2202,6 +2342,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/actions.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2215,7 +2356,8 @@ "Payload" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2229,7 +2371,8 @@ " | undefined" ], "path": "node_modules/typescript-fsa/lib/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2248,6 +2391,7 @@ ], "path": "x-pack/plugins/timelines/public/hooks/use_bulk_action_items.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -2261,6 +2405,7 @@ ], "path": "x-pack/plugins/timelines/public/hooks/use_bulk_action_items.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2289,6 +2434,7 @@ ], "path": "x-pack/plugins/timelines/public/components/hover_actions/actions/add_to_timeline.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -2329,7 +2475,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/public/components/hover_actions/actions/add_to_timeline.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2342,7 +2489,8 @@ "string | undefined" ], "path": "x-pack/plugins/timelines/public/components/hover_actions/actions/add_to_timeline.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2370,7 +2518,8 @@ "[] | undefined" ], "path": "x-pack/plugins/timelines/public/components/hover_actions/actions/add_to_timeline.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2395,6 +2544,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -2425,7 +2575,8 @@ " | undefined; type?: string | undefined; })[]" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2447,7 +2598,8 @@ "[]" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2462,7 +2614,8 @@ "{ start: string; end: string; }" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2477,7 +2630,8 @@ "string | null" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2492,7 +2646,8 @@ "string[]" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2509,7 +2664,8 @@ " | undefined; }" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2523,7 +2679,8 @@ "[] | undefined" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2538,7 +2695,8 @@ "string | undefined" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2555,7 +2713,8 @@ " | null; }" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2567,7 +2726,8 @@ "Uniquely identifies the timeline" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2580,7 +2740,8 @@ "string[]" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2590,7 +2751,8 @@ "label": "isLoading", "description": [], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2602,7 +2764,8 @@ "If selectAll checkbox in header is checked" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2614,7 +2777,8 @@ "The number of items to show in a single page of results" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2629,7 +2793,8 @@ "number[]" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2644,7 +2809,8 @@ "string[]" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2656,7 +2822,8 @@ "When true, shows checkboxes enabling selection. Selected events store in selectedEventIds" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2672,7 +2839,8 @@ "[]" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2695,7 +2863,8 @@ "[]; }" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2708,7 +2877,8 @@ "string | null" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2721,7 +2891,8 @@ "\"default\" | \"template\"" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2734,7 +2905,8 @@ "string | null" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -2747,7 +2919,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2763,6 +2936,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -2775,7 +2949,8 @@ "TimelineById" ], "path": "x-pack/plugins/timelines/public/store/t_grid/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2797,6 +2972,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2813,6 +2989,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2829,6 +3006,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2845,6 +3023,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2858,6 +3037,7 @@ ], "path": "x-pack/plugins/timelines/public/components/t_grid/body/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2874,6 +3054,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2888,6 +3069,7 @@ ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2901,7 +3083,8 @@ "{ newFocusedColumn: HTMLDivElement | null; newFocusedColumnAriaColindex: number | null; }" ], "path": "x-pack/plugins/timelines/common/utils/accessibility/helpers.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2925,6 +3108,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2947,6 +3131,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3027,6 +3212,7 @@ ], "path": "x-pack/plugins/timelines/public/store/t_grid/model.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3041,6 +3227,7 @@ ], "path": "x-pack/plugins/timelines/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3059,6 +3246,7 @@ ], "path": "x-pack/plugins/timelines/public/components/stateful_event_context.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3073,6 +3261,7 @@ ], "path": "x-pack/plugins/timelines/public/components/t_grid/shared/index.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3085,6 +3274,7 @@ "description": [], "path": "x-pack/plugins/timelines/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -3099,6 +3289,7 @@ ], "path": "x-pack/plugins/timelines/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3126,6 +3317,7 @@ ], "path": "x-pack/plugins/timelines/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -3140,6 +3332,7 @@ ], "path": "x-pack/plugins/timelines/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3157,6 +3350,7 @@ ], "path": "x-pack/plugins/timelines/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3176,6 +3370,7 @@ ], "path": "x-pack/plugins/timelines/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -3189,6 +3384,7 @@ ], "path": "x-pack/plugins/timelines/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3210,6 +3406,7 @@ ], "path": "x-pack/plugins/timelines/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -3223,6 +3420,7 @@ ], "path": "x-pack/plugins/timelines/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3243,6 +3441,7 @@ ], "path": "x-pack/plugins/timelines/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3260,6 +3459,7 @@ ], "path": "x-pack/plugins/timelines/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3278,6 +3478,7 @@ ], "path": "x-pack/plugins/timelines/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3297,6 +3498,7 @@ ], "path": "x-pack/plugins/timelines/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -3313,6 +3515,7 @@ ], "path": "x-pack/plugins/timelines/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3339,6 +3542,7 @@ "description": [], "path": "x-pack/plugins/timelines/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -3352,6 +3556,7 @@ "description": [], "path": "x-pack/plugins/timelines/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true @@ -3370,6 +3575,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -3389,7 +3595,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3399,7 +3606,8 @@ "label": "ariaRowindex", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3409,7 +3617,8 @@ "label": "checked", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3419,7 +3628,8 @@ "label": "columnId", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3429,7 +3639,8 @@ "label": "columnValues", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3449,7 +3660,8 @@ "[]" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3462,7 +3674,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3475,7 +3688,8 @@ "Ecs" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3485,7 +3699,8 @@ "label": "eventId", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3498,7 +3713,8 @@ "Readonly> | undefined" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3508,7 +3724,8 @@ "label": "index", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3521,7 +3738,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3534,7 +3752,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3547,7 +3766,8 @@ "readonly string[]" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3561,6 +3781,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3576,6 +3797,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3589,7 +3811,8 @@ "{ eventIds: string[]; isSelected: boolean; }" ], "path": "x-pack/plugins/timelines/common/types/timeline/store.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3605,6 +3828,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3620,6 +3844,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3631,7 +3856,8 @@ "label": "rowIndex", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3645,6 +3871,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3658,7 +3885,8 @@ "{ eventIds: string[]; isDeleted: boolean; }" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3674,6 +3902,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3687,7 +3916,8 @@ "{ eventIds: string[]; isLoading: boolean; }" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3699,7 +3929,8 @@ "label": "showCheckboxes", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3712,7 +3943,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3726,7 +3958,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3736,7 +3969,8 @@ "label": "timelineId", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3750,6 +3984,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3764,7 +3999,8 @@ "number | undefined" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3778,6 +4014,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -3787,7 +4024,8 @@ "label": "aggregatable", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3797,7 +4035,8 @@ "label": "category", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3810,7 +4049,8 @@ "string | null" ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3823,7 +4063,8 @@ "string | number | null" ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3844,7 +4085,8 @@ ">; }" ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3854,7 +4096,8 @@ "label": "format", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3867,7 +4110,8 @@ "string[]" ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3877,7 +4121,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3887,7 +4132,8 @@ "label": "searchable", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3897,7 +4143,8 @@ "label": "type", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3910,7 +4157,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3924,7 +4172,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3934,7 +4183,8 @@ "label": "readFromDocValues", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -3954,7 +4204,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3968,6 +4219,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -3989,6 +4241,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -4002,6 +4255,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -4023,6 +4277,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4048,6 +4303,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -4058,6 +4314,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -4067,7 +4324,8 @@ "label": "columnName", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4077,7 +4335,8 @@ "label": "eventId", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4104,7 +4363,8 @@ " | undefined; type?: string | undefined; }" ], "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4114,7 +4374,8 @@ "label": "timelineId", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4127,7 +4388,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4140,7 +4402,8 @@ "string[] | null | undefined" ], "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4153,7 +4416,8 @@ "string[] | null | undefined" ], "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -4172,6 +4436,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -4185,7 +4450,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4199,7 +4465,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4213,6 +4480,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -4224,7 +4492,8 @@ "Uniquely identifies a data provider" ], "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4236,7 +4505,8 @@ "Human readable" ], "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4248,7 +4518,8 @@ "\nWhen `false`, a data provider is temporarily disabled, but not removed from\nthe timeline. default: `true`" ], "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4260,7 +4531,8 @@ "\nWhen `true`, a data provider is excluding the match, but not removed from\nthe timeline. default: `false`" ], "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4272,7 +4544,8 @@ "\nReturns the KQL query who have been added by user" ], "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4293,7 +4566,8 @@ } ], "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4315,7 +4589,8 @@ "[]" ], "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4337,7 +4612,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4351,6 +4627,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -4364,7 +4641,8 @@ "[]" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4378,7 +4656,8 @@ "[]" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4392,7 +4671,8 @@ "[]" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4406,6 +4686,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -4418,7 +4699,8 @@ "string | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4431,7 +4713,8 @@ "string | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4444,7 +4727,8 @@ "string | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4457,7 +4741,8 @@ "string | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4470,7 +4755,8 @@ "number | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4484,6 +4770,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -4493,7 +4780,8 @@ "label": "category", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4506,7 +4794,8 @@ "string | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4519,7 +4808,8 @@ "string | number | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4532,7 +4822,8 @@ "string | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4542,7 +4833,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4555,7 +4847,8 @@ "string | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4569,6 +4862,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -4578,7 +4872,8 @@ "label": "width", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4599,7 +4894,8 @@ ">; }" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4619,7 +4915,8 @@ "[]" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4639,7 +4936,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4652,7 +4950,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4662,7 +4961,8 @@ "label": "isSelectAllChecked", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4676,6 +4976,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -4686,6 +4987,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -4695,7 +4997,8 @@ "label": "isSelected", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -4710,7 +5013,8 @@ "label": "showEventsSelect", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4720,7 +5024,8 @@ "label": "showSelectAllCheckbox", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4734,7 +5039,8 @@ "[]" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4747,7 +5053,8 @@ "TimelineTabs" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4757,7 +5064,8 @@ "label": "timelineId", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4789,6 +5097,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -4800,7 +5109,8 @@ "Where the field belong" ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4816,7 +5126,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4832,7 +5143,8 @@ "[]" ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4848,7 +5160,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4862,7 +5175,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4894,6 +5208,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -4913,7 +5228,8 @@ "[]" ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4926,7 +5242,8 @@ "string[]" ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -4943,7 +5260,8 @@ "[]; }" ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4957,6 +5275,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -4969,7 +5288,8 @@ "string[]" ], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4983,6 +5303,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -4996,7 +5317,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5010,7 +5332,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5024,7 +5347,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5038,6 +5362,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -5049,7 +5374,8 @@ "The activePage parameter defines the page of results you want to fetch" ], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5061,7 +5387,8 @@ "The cursorStart parameter defines the start of the results to be displayed" ], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5073,7 +5400,8 @@ "The fakePossibleCount parameter determines the total count in order to show 5 additional pages" ], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5085,7 +5413,8 @@ "The querySize parameter is the number of items to be returned" ], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5099,6 +5428,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -5108,7 +5438,8 @@ "label": "field", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5121,7 +5452,8 @@ "string | undefined" ], "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5134,7 +5466,8 @@ "string | number" ], "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5147,7 +5480,8 @@ "string | number | undefined" ], "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5160,7 +5494,8 @@ "\":\" | \":*\"" ], "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5174,6 +5509,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -5186,7 +5522,8 @@ "RowRendererId" ], "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5202,6 +5539,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -5215,6 +5553,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5234,6 +5573,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -5244,6 +5584,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -5256,7 +5597,8 @@ "Ecs" ], "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5266,7 +5608,8 @@ "label": "isDraggable", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5276,7 +5619,8 @@ "label": "timelineId", "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/rows/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -5305,6 +5649,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -5317,7 +5662,8 @@ "Field" ], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5336,7 +5682,8 @@ } ], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5350,6 +5697,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -5368,7 +5716,8 @@ } ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5387,7 +5736,8 @@ } ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5427,6 +5777,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -5439,7 +5790,8 @@ "string | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5452,7 +5804,8 @@ "string | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5465,7 +5818,8 @@ "string | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5478,7 +5832,8 @@ "number | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5512,6 +5867,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -5531,7 +5887,8 @@ "[]" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5541,7 +5898,8 @@ "label": "totalCount", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5554,7 +5912,8 @@ "{ activePage: number; querySize: number; }" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5574,7 +5933,8 @@ " | null" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5600,6 +5960,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -5613,7 +5974,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5626,7 +5988,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5639,7 +6002,8 @@ "string[]" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5652,7 +6016,8 @@ "string[] | { field: string; include_unmapped: boolean; }[]" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5665,7 +6030,8 @@ "\"eql\" | \"kuery\" | \"lucene\"" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5682,7 +6048,8 @@ "[]; }" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5714,6 +6081,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -5726,7 +6094,8 @@ "{ [x: string]: number; }" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5746,7 +6115,8 @@ "[]" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5756,7 +6126,8 @@ "label": "totalCount", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5769,7 +6140,8 @@ "{ activePage: number; querySize: number; }" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5791,7 +6163,8 @@ "> | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5805,6 +6178,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -5818,7 +6192,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5831,7 +6206,8 @@ "string | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5841,7 +6217,8 @@ "label": "field", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5855,7 +6232,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5868,7 +6246,8 @@ "any" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5878,7 +6257,8 @@ "label": "isObjectArray", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5904,6 +6284,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -5913,7 +6294,8 @@ "label": "indexName", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5923,7 +6305,8 @@ "label": "eventId", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -5937,7 +6320,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5969,6 +6353,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -5990,7 +6375,8 @@ "[]> | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -6006,7 +6392,8 @@ "> | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -6028,7 +6415,8 @@ "> | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -6042,7 +6430,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/details/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6068,6 +6457,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -6086,7 +6476,8 @@ } ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -6105,7 +6496,8 @@ } ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6137,6 +6529,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -6149,7 +6542,8 @@ "string | null" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -6171,7 +6565,8 @@ "> | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6185,6 +6580,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -6194,7 +6590,8 @@ "label": "_id", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -6208,7 +6605,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -6228,7 +6626,8 @@ "[]" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -6241,7 +6640,8 @@ "Ecs" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6273,6 +6673,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -6282,7 +6683,8 @@ "label": "destinationIpCount", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -6304,7 +6706,8 @@ "> | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -6314,7 +6717,8 @@ "label": "hostCount", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -6324,7 +6728,8 @@ "label": "processCount", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -6334,7 +6739,8 @@ "label": "sourceIpCount", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -6344,7 +6750,8 @@ "label": "userCount", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6358,6 +6765,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -6367,7 +6775,8 @@ "label": "field", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -6381,7 +6790,8 @@ " | undefined" ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/all/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6395,6 +6805,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -6406,7 +6817,8 @@ "The interval string to use for last bucket. The format is '{value}{unit}'. For example '5m' would return the metrics for the last 5 minutes of the timespan." ], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -6418,7 +6830,8 @@ "The end of the timerange" ], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -6430,7 +6843,8 @@ "The beginning of the timerange" ], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6444,6 +6858,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "timelines", @@ -6453,7 +6868,8 @@ "label": "value", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "timelines", @@ -6463,7 +6879,8 @@ "label": "relation", "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6479,6 +6896,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6490,6 +6908,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6501,6 +6920,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6512,6 +6932,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6523,6 +6944,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/types/timeline/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -6539,6 +6961,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6561,6 +6984,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6583,6 +7007,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6636,6 +7061,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/cells/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6666,6 +7092,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6680,6 +7107,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6696,6 +7124,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/columns/index.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6712,6 +7141,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6742,6 +7172,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6756,6 +7187,7 @@ ], "path": "x-pack/plugins/timelines/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6777,6 +7209,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6791,6 +7224,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6807,6 +7241,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6828,6 +7263,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/eql/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6842,6 +7278,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6864,6 +7301,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6881,6 +7319,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6897,6 +7336,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6913,6 +7353,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/data_provider/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6959,6 +7400,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6973,6 +7415,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6986,7 +7429,8 @@ "{ eventIds: string[]; isDeleted: boolean; }" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7003,6 +7447,7 @@ ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -7016,7 +7461,8 @@ "{ eventIds: string[]; isLoading: boolean; }" ], "path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7061,6 +7507,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/last_event_time/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -7074,6 +7521,7 @@ "description": [], "path": "x-pack/plugins/timelines/common/search_strategy/index_fields/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false }, @@ -7089,6 +7537,7 @@ ], "path": "x-pack/plugins/timelines/common/search_strategy/timeline/events/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/timelines.mdx b/api_docs/timelines.mdx index 36b368f2b1c57..4c98cbb2f255b 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'timelines'] --- import timelinesObj from './timelines.devdocs.json'; diff --git a/api_docs/transform.devdocs.json b/api_docs/transform.devdocs.json index fc9ff02ecf4f6..19576a0b4813b 100644 --- a/api_docs/transform.devdocs.json +++ b/api_docs/transform.devdocs.json @@ -25,6 +25,7 @@ ], "path": "x-pack/plugins/transform/public/alerting/transform_health_rule_type/register_transform_health_rule.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -50,6 +51,7 @@ ], "path": "x-pack/plugins/transform/server/lib/alerting/transform_health_rule_type/register_transform_health_rule_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "transform", @@ -63,6 +65,7 @@ ], "path": "x-pack/plugins/transform/server/lib/alerting/transform_health_rule_type/register_transform_health_rule_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -94,6 +97,7 @@ ], "path": "x-pack/plugins/transform/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/transform.mdx b/api_docs/transform.mdx index 1ee7ab7da3ffd..c76bdf57b2d84 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'transform'] --- import transformObj from './transform.devdocs.json'; diff --git a/api_docs/triggers_actions_ui.devdocs.json b/api_docs/triggers_actions_ui.devdocs.json index b60963514a1b5..81216ef5e5c18 100644 --- a/api_docs/triggers_actions_ui.devdocs.json +++ b/api_docs/triggers_actions_ui.devdocs.json @@ -45,6 +45,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -57,7 +58,8 @@ "{ readonly rulesListDatagrid: boolean; readonly internalAlertsTable: boolean; readonly ruleTagFilter: boolean; readonly ruleStatusFilter: boolean; readonly rulesDetailLogs: boolean; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -71,6 +73,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -91,6 +94,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -123,6 +127,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -143,6 +148,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -157,6 +163,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -181,6 +188,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -196,6 +204,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -218,6 +227,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/action_connector_form/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -231,7 +241,8 @@ "T" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/suspended_component_with_props.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -252,6 +263,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/index.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -265,7 +277,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -294,6 +307,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/index.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -307,7 +321,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -326,6 +341,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/action_connector_form/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -339,7 +355,8 @@ "T" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/suspended_component_with_props.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -358,6 +375,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/delete.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -368,6 +386,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/delete.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -380,7 +399,8 @@ "string[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/delete.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -393,7 +413,8 @@ "HttpSetup" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/delete.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -415,6 +436,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/disable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -425,6 +447,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/disable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -434,7 +457,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/disable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -447,7 +471,8 @@ "HttpSetup" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/disable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -469,6 +494,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/action_connector_form/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -482,7 +508,8 @@ "T" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/suspended_component_with_props.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -501,6 +528,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/enable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -511,6 +539,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/enable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -520,7 +549,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/enable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -533,7 +563,8 @@ "HttpSetup" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/enable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -555,6 +586,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/common/expression_items/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -568,7 +600,8 @@ "T" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/suspended_component_with_props.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -587,6 +620,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/common/index_controls/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -600,6 +634,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/common/index_controls/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -614,6 +649,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/common/index_controls/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -636,6 +672,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/common/index_controls/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -649,6 +686,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/common/index_controls/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -663,6 +701,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/common/index_controls/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -683,6 +722,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -699,6 +739,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/get_time_options.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -712,6 +753,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/get_time_options.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -738,6 +780,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/get_time_unit_label.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -757,6 +800,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/get_time_unit_label.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -771,6 +815,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/common/lib/get_time_unit_label.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -791,6 +836,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/common/expression_items/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -804,7 +850,8 @@ "T" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/suspended_component_with_props.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -833,6 +880,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/load_action_error_log.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -849,6 +897,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/load_action_error_log.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -877,6 +926,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/connector_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -887,6 +937,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/connector_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -899,7 +950,8 @@ "HttpSetup" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/connector_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -912,7 +964,8 @@ "string | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/connector_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -942,6 +995,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/connectors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -952,6 +1006,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/connectors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -964,7 +1019,8 @@ "HttpSetup" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/action_connector_api/connectors.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -996,6 +1052,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/load_execution_log_aggregations.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1012,6 +1069,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/load_execution_log_aggregations.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1048,6 +1106,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/get_rule.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1058,6 +1117,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/get_rule.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1070,7 +1130,8 @@ "HttpSetup" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/get_rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1080,7 +1141,8 @@ "label": "ruleId", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/get_rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1104,6 +1166,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/aggregate.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1117,6 +1180,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/aggregate.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1153,6 +1217,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/rules.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1166,6 +1231,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/rules.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1194,6 +1260,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/rule_summary.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1204,6 +1271,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/rule_summary.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1216,7 +1284,8 @@ "HttpSetup" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/rule_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1226,7 +1295,8 @@ "label": "ruleId", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/rule_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1239,7 +1309,8 @@ "number | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/rule_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1263,6 +1334,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/aggregate.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1273,6 +1345,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/aggregate.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1285,7 +1358,8 @@ "HttpSetup" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/aggregate.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1315,6 +1389,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/rule_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1325,6 +1400,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/rule_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1337,7 +1413,8 @@ "HttpSetup" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/rule_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1359,6 +1436,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/mute.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1369,6 +1447,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/mute.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1378,7 +1457,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/mute.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1391,7 +1471,8 @@ "HttpSetup" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/mute.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1413,6 +1494,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/common/expression_items/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1426,7 +1508,8 @@ "T" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/suspended_component_with_props.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1447,6 +1530,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/snooze.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1457,6 +1541,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/snooze.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1466,7 +1551,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/snooze.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1479,7 +1565,8 @@ "SnoozeSchedule" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/snooze.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1492,7 +1579,8 @@ "HttpSetup" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/snooze.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1512,6 +1600,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/suspended_component_with_props.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1525,6 +1614,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/suspended_component_with_props.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1539,6 +1629,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/suspended_component_with_props.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1559,6 +1650,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/common/expression_items/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1572,7 +1664,8 @@ "T" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/suspended_component_with_props.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1591,6 +1684,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/unmute.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1601,6 +1695,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/unmute.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1610,7 +1705,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/unmute.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1623,7 +1719,8 @@ "HttpSetup" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/unmute.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1645,6 +1742,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/unsnooze.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1655,6 +1753,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/unsnooze.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1664,7 +1763,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/unsnooze.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1677,7 +1777,8 @@ "HttpSetup" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/unsnooze.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1690,7 +1791,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/rule_api/unsnooze.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -1720,6 +1822,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/hooks/use_load_rule_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1733,6 +1836,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/hooks/use_load_rule_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1753,6 +1857,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/common/expression_items/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1766,7 +1871,8 @@ "T" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/suspended_component_with_props.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1785,6 +1891,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/common/expression_items/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1798,7 +1905,8 @@ "T" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/lib/suspended_component_with_props.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1814,6 +1922,7 @@ "description": [], "path": "x-pack/plugins/actions/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1823,7 +1932,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1833,7 +1943,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1843,7 +1954,8 @@ "label": "enabled", "description": [], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1853,7 +1965,8 @@ "label": "enabledInConfig", "description": [], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1863,7 +1976,8 @@ "label": "enabledInLicense", "description": [], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1876,7 +1990,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\"" ], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1889,7 +2004,8 @@ "string[]" ], "path": "x-pack/plugins/actions/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1903,6 +2019,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1912,7 +2029,8 @@ "label": "text", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1922,7 +2040,8 @@ "label": "fieldRequired", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1932,7 +2051,8 @@ "label": "value", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1945,7 +2065,8 @@ "string[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1959,6 +2080,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -1972,7 +2094,8 @@ " & { tags?: string[] | undefined; kibana?: string[] | undefined; \"@timestamp\"?: string[] | undefined; \"event.action\"?: string[] | undefined; \"kibana.alert.rule.parameters\"?: string[] | undefined; \"kibana.alert.rule.rule_type_id\"?: string[] | undefined; \"kibana.alert.rule.consumer\"?: string[] | undefined; \"kibana.alert.rule.producer\"?: string[] | undefined; \"kibana.space_ids\"?: string[] | undefined; \"kibana.alert.uuid\"?: string[] | undefined; \"kibana.alert.instance.id\"?: string[] | undefined; \"kibana.alert.start\"?: string[] | undefined; \"kibana.alert.end\"?: string[] | undefined; \"kibana.alert.duration.us\"?: string[] | undefined; \"kibana.alert.severity\"?: string[] | undefined; \"kibana.alert.status\"?: string[] | undefined; \"kibana.version\"?: string[] | undefined; \"ecs.version\"?: string[] | undefined; \"kibana.alert.risk_score\"?: string[] | undefined; \"kibana.alert.workflow_status\"?: string[] | undefined; \"kibana.alert.workflow_user\"?: string[] | undefined; \"kibana.alert.workflow_reason\"?: string[] | undefined; \"kibana.alert.system_status\"?: string[] | undefined; \"kibana.alert.action_group\"?: string[] | undefined; \"kibana.alert.reason\"?: string[] | undefined; \"kibana.alert.rule.author\"?: string[] | undefined; \"kibana.alert.rule.category\"?: string[] | undefined; \"kibana.alert.rule.uuid\"?: string[] | undefined; \"kibana.alert.rule.created_at\"?: string[] | undefined; \"kibana.alert.rule.created_by\"?: string[] | undefined; \"kibana.alert.rule.description\"?: string[] | undefined; \"kibana.alert.rule.enabled\"?: string[] | undefined; \"kibana.alert.rule.execution.uuid\"?: string[] | undefined; \"kibana.alert.rule.from\"?: string[] | undefined; \"kibana.alert.rule.interval\"?: string[] | undefined; \"kibana.alert.rule.license\"?: string[] | undefined; \"kibana.alert.rule.name\"?: string[] | undefined; \"kibana.alert.rule.note\"?: string[] | undefined; \"kibana.alert.rule.references\"?: string[] | undefined; \"kibana.alert.rule.rule_id\"?: string[] | undefined; \"kibana.alert.rule.rule_name_override\"?: string[] | undefined; \"kibana.alert.rule.tags\"?: string[] | undefined; \"kibana.alert.rule.to\"?: string[] | undefined; \"kibana.alert.rule.type\"?: string[] | undefined; \"kibana.alert.rule.updated_at\"?: string[] | undefined; \"kibana.alert.rule.updated_by\"?: string[] | undefined; \"kibana.alert.rule.version\"?: string[] | undefined; \"event.kind\"?: string[] | undefined; \"event.module\"?: string[] | undefined; \"kibana.alert.evaluation.threshold\"?: string[] | undefined; \"kibana.alert.evaluation.value\"?: string[] | undefined; \"kibana.alert.building_block_type\"?: string[] | undefined; \"kibana.alert.rule.exceptions_list\"?: string[] | undefined; \"kibana.alert.rule.namespace\"?: string[] | undefined; \"kibana.alert\"?: string[] | undefined; \"kibana.alert.rule\"?: string[] | undefined; } & { [x: string]: unknown[]; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1982,7 +2105,8 @@ "label": "isLoading", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -1995,7 +2119,8 @@ "string | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2009,6 +2134,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -2021,7 +2147,8 @@ "AlertsTableConfigurationRegistry" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2035,7 +2162,8 @@ "[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2048,7 +2176,8 @@ "string[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2061,7 +2190,8 @@ "string[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2074,7 +2204,8 @@ "\"m\" | \"s\" | \"l\" | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2084,7 +2215,8 @@ "label": "pageSize", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2097,7 +2229,8 @@ "number[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2110,7 +2243,8 @@ "string | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2124,7 +2258,8 @@ "[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2134,7 +2269,8 @@ "label": "showExpandToDetails", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2148,7 +2284,8 @@ "[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2163,6 +2300,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2177,7 +2315,8 @@ "string[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2187,7 +2326,8 @@ "label": "'data-test-subj'", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2197,7 +2337,8 @@ "label": "updatedAt", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2211,6 +2352,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -2223,7 +2365,8 @@ "\"OK\" | \"Active\"" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2233,7 +2376,8 @@ "label": "muted", "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2246,7 +2390,8 @@ "string | undefined" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2259,7 +2404,8 @@ "string | undefined" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2272,7 +2418,8 @@ "string | undefined" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2286,6 +2433,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -2295,7 +2443,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2305,7 +2454,8 @@ "label": "name", "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2318,7 +2468,8 @@ "string[]" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2328,7 +2479,8 @@ "label": "ruleTypeId", "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2338,7 +2490,8 @@ "label": "consumer", "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2348,7 +2501,8 @@ "label": "muteAll", "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2361,7 +2515,8 @@ "string | null" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2371,7 +2526,8 @@ "label": "enabled", "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2381,7 +2537,8 @@ "label": "statusStartDate", "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2391,7 +2548,8 @@ "label": "statusEndDate", "description": [], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2404,7 +2562,8 @@ "\"OK\" | \"Active\" | \"Error\"" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2417,7 +2576,8 @@ "string | undefined" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2430,7 +2590,8 @@ "{ date: string; message: string; }[]" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2451,7 +2612,8 @@ "; }" ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2470,7 +2632,8 @@ } ], "path": "x-pack/plugins/alerting/common/alert_summary.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2484,6 +2647,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -2493,7 +2657,8 @@ "label": "text", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2503,7 +2668,8 @@ "label": "value", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2513,7 +2679,8 @@ "label": "requiredValues", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2527,6 +2694,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/field_browser/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -2540,7 +2708,8 @@ " | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/field_browser/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2554,7 +2723,8 @@ " | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/field_browser/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2568,6 +2738,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/field_browser/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -2582,7 +2753,8 @@ "string[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/field_browser/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2599,7 +2771,8 @@ ">; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/field_browser/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2614,7 +2787,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/field_browser/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2630,6 +2804,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/field_browser/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2647,6 +2822,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/field_browser/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -2660,6 +2836,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/field_browser/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2685,7 +2862,8 @@ " | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/field_browser/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2700,7 +2878,8 @@ "number | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/field_browser/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2714,6 +2893,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -2733,7 +2913,8 @@ } ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2747,6 +2928,7 @@ "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -2756,7 +2938,8 @@ "label": "group", "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2766,7 +2949,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2776,7 +2960,8 @@ "label": "actionTypeId", "description": [], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2789,7 +2974,8 @@ "SavedObjectAttributes" ], "path": "x-pack/plugins/alerting/common/rule.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2803,6 +2989,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -2831,7 +3018,8 @@ ">, \"alertTypeId\"> & { ruleTypeId: string; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2892,7 +3080,8 @@ ">) => void; has: (id: string) => boolean; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2911,7 +3100,8 @@ ") => void; has: (id: string) => boolean; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2925,6 +3115,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2939,7 +3130,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2952,7 +3144,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2966,6 +3159,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/rule_status_filter.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -2985,7 +3179,8 @@ "[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/rule_status_filter.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -2998,7 +3193,8 @@ "string | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/rule_status_filter.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3011,7 +3207,8 @@ "string | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/rule_status_filter.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3024,7 +3221,8 @@ "string | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/rule_status_filter.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3046,6 +3244,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/rule_status_filter.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -3065,6 +3264,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/rule_status_filter.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3090,6 +3290,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/rule_status_filter.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -3110,6 +3311,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/rule_status_filter.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3153,6 +3355,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -3162,7 +3365,8 @@ "label": "ruleType", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3172,7 +3376,8 @@ "label": "index", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3182,7 +3387,8 @@ "label": "actionsCount", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3192,7 +3398,8 @@ "label": "isEditable", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3202,7 +3409,8 @@ "label": "enabledInLicense", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3215,7 +3423,8 @@ "boolean | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3228,7 +3437,8 @@ "string[] | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3260,6 +3470,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -3272,7 +3483,8 @@ "AsActionVariables<\"params\"> & Partial>" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3285,7 +3497,8 @@ "{ [x: string]: { read: boolean; all: boolean; }; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3295,7 +3508,8 @@ "label": "enabledInLicense", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3319,6 +3533,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -3328,7 +3543,8 @@ "label": "id", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3338,7 +3554,8 @@ "label": "description", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3348,7 +3565,8 @@ "label": "iconClass", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3363,7 +3581,8 @@ ") => string) | null" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3384,6 +3603,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -3397,6 +3617,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3422,6 +3643,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3435,7 +3657,8 @@ "P" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -3447,7 +3670,8 @@ "label": "requiresAppContext", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3460,7 +3684,8 @@ "string | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3473,7 +3698,8 @@ "string | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3497,6 +3723,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -3509,7 +3736,8 @@ "Params" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3519,7 +3747,8 @@ "label": "ruleInterval", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3529,7 +3758,8 @@ "label": "ruleThrottle", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3542,7 +3772,8 @@ "\"onActionGroupChange\" | \"onActiveAlert\" | \"onThrottleInterval\"" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3556,6 +3787,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -3569,6 +3801,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3583,6 +3816,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3602,6 +3836,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -3615,6 +3850,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3630,6 +3866,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -3652,7 +3889,8 @@ } ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3662,7 +3900,8 @@ "label": "defaultActionGroupId", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3682,7 +3921,8 @@ "[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3695,7 +3935,8 @@ "MetaData | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3714,7 +3955,8 @@ } ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3733,7 +3975,8 @@ } ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3752,7 +3995,8 @@ } ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3771,7 +4015,8 @@ } ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3802,6 +4047,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -3820,7 +4066,8 @@ } ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3839,7 +4086,8 @@ } ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3858,7 +4106,8 @@ } ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3877,7 +4126,8 @@ } ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3899,7 +4149,8 @@ "; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3919,7 +4170,8 @@ " | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3939,7 +4191,8 @@ " | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3959,7 +4212,8 @@ " | undefined" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3969,7 +4223,8 @@ "label": "isCloud", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -3985,6 +4240,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -3999,6 +4255,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4021,7 +4278,8 @@ ") => void; has: (id: string) => boolean; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4082,7 +4340,8 @@ ">) => void; has: (id: string) => boolean; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4101,7 +4360,8 @@ ") => void; has: (id: string) => boolean; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4115,7 +4375,8 @@ "" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4135,7 +4396,8 @@ "[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4148,7 +4410,8 @@ "HTMLElement" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4164,7 +4427,8 @@ ">" ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4183,7 +4447,8 @@ } ], "path": "x-pack/plugins/triggers_actions_ui/public/application/app.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4197,6 +4462,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -4209,7 +4475,8 @@ "{ [x: string]: any; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4225,6 +4492,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4236,6 +4504,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4247,6 +4516,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/application/constants/time_units.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -4266,6 +4536,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4287,6 +4558,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/rule_form/rule_conditions.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4307,6 +4579,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4321,6 +4594,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4341,6 +4615,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4371,6 +4646,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4385,6 +4661,7 @@ ], "path": "x-pack/plugins/actions/common/rewrite_request_case.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4399,6 +4676,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4412,7 +4690,8 @@ "{ setFlyoutAlert?: ((data: unknown) => void) | undefined; }" ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4437,6 +4716,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4457,6 +4737,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/rule_details/components/rule_event_log_list.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4471,6 +4752,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/application/sections/rules_list/components/rules_list_column_selector.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4485,6 +4767,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4499,6 +4782,7 @@ ], "path": "x-pack/plugins/alerting/common/rule.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4561,6 +4845,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -4574,6 +4859,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -4584,6 +4870,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -4593,7 +4880,8 @@ "label": "text", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4606,7 +4894,8 @@ "false" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4619,7 +4908,8 @@ "AGGREGATION_TYPES" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4632,7 +4922,8 @@ "never[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -4645,6 +4936,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -4654,7 +4946,8 @@ "label": "text", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4667,7 +4960,8 @@ "true" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4680,7 +4974,8 @@ "string[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4693,7 +4988,8 @@ "AGGREGATION_TYPES" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -4706,6 +5002,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -4715,7 +5012,8 @@ "label": "text", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4728,7 +5026,8 @@ "true" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4741,7 +5040,8 @@ "string[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4754,7 +5054,8 @@ "AGGREGATION_TYPES" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -4767,6 +5068,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -4776,7 +5078,8 @@ "label": "text", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4789,7 +5092,8 @@ "true" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4802,7 +5106,8 @@ "string[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4815,7 +5120,8 @@ "AGGREGATION_TYPES" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -4828,6 +5134,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -4837,7 +5144,8 @@ "label": "text", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4850,7 +5158,8 @@ "true" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4863,7 +5172,8 @@ "string[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4876,7 +5186,8 @@ "AGGREGATION_TYPES" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/aggregation_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -4892,6 +5203,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -4902,6 +5214,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -4911,7 +5224,8 @@ "label": "text", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4930,7 +5244,8 @@ } ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4940,7 +5255,8 @@ "label": "requiredValues", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -4953,6 +5269,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -4962,7 +5279,8 @@ "label": "text", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4981,7 +5299,8 @@ } ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -4991,7 +5310,8 @@ "label": "requiredValues", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -5004,6 +5324,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5013,7 +5334,8 @@ "label": "text", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -5032,7 +5354,8 @@ } ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -5042,7 +5365,8 @@ "label": "requiredValues", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -5055,6 +5379,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5064,7 +5389,8 @@ "label": "text", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -5083,7 +5409,8 @@ } ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -5093,7 +5420,8 @@ "label": "requiredValues", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -5106,6 +5434,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5115,7 +5444,8 @@ "label": "text", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -5134,7 +5464,8 @@ } ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -5144,7 +5475,8 @@ "label": "requiredValues", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/comparators.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -5160,6 +5492,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/group_by_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5170,6 +5503,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/group_by_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5179,7 +5513,8 @@ "label": "text", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/group_by_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -5192,7 +5527,8 @@ "false" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/group_by_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -5202,7 +5538,8 @@ "label": "value", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/group_by_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -5215,7 +5552,8 @@ "never[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/group_by_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -5228,6 +5566,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/group_by_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5237,7 +5576,8 @@ "label": "text", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/group_by_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -5250,7 +5590,8 @@ "true" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/group_by_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -5260,7 +5601,8 @@ "label": "value", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/group_by_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -5273,7 +5615,8 @@ "string[]" ], "path": "x-pack/plugins/triggers_actions_ui/public/common/constants/group_by_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -5289,6 +5632,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/index_controls/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5298,7 +5642,8 @@ "label": "text", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/index_controls/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -5308,7 +5653,8 @@ "label": "value", "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/common/index_controls/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5323,6 +5669,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5338,7 +5685,8 @@ ">" ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -5360,7 +5708,8 @@ ">" ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -5376,7 +5725,8 @@ ">" ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -5391,6 +5741,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5406,7 +5757,8 @@ ">" ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -5428,7 +5780,8 @@ ">" ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -5444,7 +5797,8 @@ ">" ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -5462,6 +5816,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5477,6 +5832,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5498,6 +5854,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5513,6 +5870,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5534,6 +5892,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5549,6 +5908,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5570,6 +5930,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5585,6 +5946,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5606,6 +5968,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5621,6 +5984,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5654,6 +6018,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5673,6 +6038,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5694,6 +6060,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5707,6 +6074,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5740,6 +6108,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5759,6 +6128,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5780,6 +6150,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5793,6 +6164,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5814,6 +6186,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5827,6 +6200,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5860,6 +6234,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5879,6 +6254,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5902,6 +6278,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5916,6 +6293,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5951,6 +6329,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -5971,6 +6350,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -5990,6 +6370,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -6003,6 +6384,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6024,6 +6406,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -6037,6 +6420,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6070,6 +6454,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -6089,6 +6474,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6110,6 +6496,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -6123,6 +6510,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6144,6 +6532,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -6157,6 +6546,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6182,6 +6572,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/server/data/lib/core_query_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -6195,6 +6586,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/server/data/lib/core_query_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6213,6 +6605,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/server/data/lib/core_query_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -6226,6 +6619,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/server/data/lib/core_query_types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6248,6 +6642,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/server/data/lib/core_query_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6262,6 +6657,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/server/data/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6276,6 +6672,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/server/data/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6290,6 +6687,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/server/data/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6304,6 +6702,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/server/data/lib/time_series_types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -6317,6 +6716,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/server/data/lib/core_query_types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -6332,7 +6732,8 @@ "" ], "path": "x-pack/plugins/triggers_actions_ui/server/data/lib/core_query_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -6348,7 +6749,8 @@ "" ], "path": "x-pack/plugins/triggers_actions_ui/server/data/lib/core_query_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -6364,7 +6766,8 @@ "" ], "path": "x-pack/plugins/triggers_actions_ui/server/data/lib/core_query_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -6380,7 +6783,8 @@ "" ], "path": "x-pack/plugins/triggers_actions_ui/server/data/lib/core_query_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -6396,7 +6800,8 @@ "" ], "path": "x-pack/plugins/triggers_actions_ui/server/data/lib/core_query_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -6412,7 +6817,8 @@ "" ], "path": "x-pack/plugins/triggers_actions_ui/server/data/lib/core_query_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -6428,7 +6834,8 @@ "" ], "path": "x-pack/plugins/triggers_actions_ui/server/data/lib/core_query_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -6444,7 +6851,8 @@ "" ], "path": "x-pack/plugins/triggers_actions_ui/server/data/lib/core_query_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -6460,7 +6868,8 @@ "" ], "path": "x-pack/plugins/triggers_actions_ui/server/data/lib/core_query_types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6475,6 +6884,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -6497,7 +6907,8 @@ ">; }" ], "path": "x-pack/plugins/triggers_actions_ui/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", @@ -6519,6 +6930,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/common/experimental_features.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -6535,6 +6947,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/common/experimental_features.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -6548,6 +6961,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/common/experimental_features.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6570,6 +6984,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/common/experimental_features.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -6583,6 +6998,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/common/experimental_features.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6601,6 +7017,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/common/parse_interval.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -6614,6 +7031,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/common/parse_interval.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6631,6 +7049,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/common/data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -6650,7 +7069,8 @@ "[]" ], "path": "x-pack/plugins/triggers_actions_ui/common/data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6664,6 +7084,7 @@ "description": [], "path": "x-pack/plugins/triggers_actions_ui/common/data/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "triggersActionsUi", @@ -6673,7 +7094,8 @@ "label": "group", "description": [], "path": "x-pack/plugins/triggers_actions_ui/common/data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "triggersActionsUi", @@ -6693,7 +7115,8 @@ "[]" ], "path": "x-pack/plugins/triggers_actions_ui/common/data/index.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6713,6 +7136,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6727,6 +7151,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/common/experimental_features.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6741,6 +7166,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/common/data/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -6759,6 +7185,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/common/experimental_features.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6773,6 +7200,7 @@ ], "path": "x-pack/plugins/triggers_actions_ui/common/parse_interval.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/triggers_actions_ui.mdx b/api_docs/triggers_actions_ui.mdx index 8b76e74217a0d..d1650d2cc1758 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'triggersActionsUi'] --- import triggersActionsUiObj from './triggers_actions_ui.devdocs.json'; diff --git a/api_docs/ui_actions.devdocs.json b/api_docs/ui_actions.devdocs.json index 6bb2792d104ea..97961d27fda67 100644 --- a/api_docs/ui_actions.devdocs.json +++ b/api_docs/ui_actions.devdocs.json @@ -21,6 +21,7 @@ ], "path": "src/plugins/ui_actions/public/actions/incompatible_action_error.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -30,7 +31,8 @@ "label": "code", "description": [], "path": "src/plugins/ui_actions/public/actions/incompatible_action_error.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -44,6 +46,7 @@ ], "path": "src/plugins/ui_actions/public/actions/incompatible_action_error.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -59,6 +62,7 @@ "description": [], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -71,7 +75,8 @@ "UiActionsExecutionService" ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -86,7 +91,8 @@ ">" ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -109,7 +115,8 @@ ">>" ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -122,7 +129,8 @@ "Map" ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -136,6 +144,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -155,6 +164,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -180,6 +190,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -199,6 +210,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -218,6 +230,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -231,6 +244,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -266,6 +280,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -279,6 +294,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -296,6 +312,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -309,6 +326,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -326,6 +344,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -339,6 +358,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -356,6 +376,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -369,6 +390,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -383,6 +405,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -400,6 +423,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -413,6 +437,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -427,6 +452,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -454,6 +480,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -467,6 +494,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -488,6 +516,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -523,6 +552,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -536,6 +566,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -561,6 +592,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -574,6 +606,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -599,6 +632,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -612,6 +646,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -626,6 +661,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -645,6 +681,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": true, + "trackAdoption": false, "references": [ { "plugin": "data", @@ -700,6 +737,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -714,6 +752,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -733,6 +772,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -757,6 +797,7 @@ ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -783,6 +824,7 @@ ], "path": "src/plugins/ui_actions/public/context_menu/build_eui_context_menu_panels.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -796,6 +838,7 @@ ], "path": "src/plugins/ui_actions/public/context_menu/build_eui_context_menu_panels.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -830,6 +873,7 @@ ], "path": "src/plugins/ui_actions/public/actions/create_action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -850,6 +894,7 @@ ], "path": "src/plugins/ui_actions/public/actions/create_action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -893,6 +938,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -907,7 +953,8 @@ "number | undefined" ], "path": "src/plugins/ui_actions/public/actions/action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -919,7 +966,8 @@ "\nA unique identifier for this action instance." ], "path": "src/plugins/ui_actions/public/actions/action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -931,7 +979,8 @@ "\nThe action type is what determines the context shape." ], "path": "src/plugins/ui_actions/public/actions/action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -955,6 +1004,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -975,6 +1025,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1002,6 +1053,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1022,6 +1074,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1055,7 +1108,8 @@ "> | undefined" ], "path": "src/plugins/ui_actions/public/actions/action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -1079,6 +1133,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1099,6 +1154,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1126,6 +1182,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1146,6 +1203,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1173,6 +1231,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1193,6 +1252,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1220,6 +1280,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1240,6 +1301,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1258,7 +1320,8 @@ "boolean | undefined" ], "path": "src/plugins/ui_actions/public/actions/action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1294,6 +1357,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1305,7 +1369,8 @@ "\nID of the action that uniquely identifies this action in the actions registry." ], "path": "src/plugins/ui_actions/public/actions/action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -1320,7 +1385,8 @@ "string | undefined" ], "path": "src/plugins/ui_actions/public/actions/action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -1338,6 +1404,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1352,6 +1419,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1373,6 +1441,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1387,6 +1456,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1408,6 +1478,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1422,6 +1493,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1443,6 +1515,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1457,6 +1530,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1475,7 +1549,8 @@ "boolean | undefined" ], "path": "src/plugins/ui_actions/public/actions/action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1491,6 +1566,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1511,7 +1587,8 @@ } ], "path": "src/plugins/ui_actions/public/actions/action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1535,6 +1612,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1554,7 +1632,8 @@ } ], "path": "src/plugins/ui_actions/public/actions/action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1580,6 +1659,7 @@ ], "path": "src/plugins/ui_actions/public/util/presentable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1591,7 +1671,8 @@ "\nID that uniquely identifies this object." ], "path": "src/plugins/ui_actions/public/util/presentable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -1603,7 +1684,8 @@ "\nDetermines the display order in relation to other items. Higher numbers are\ndisplayed first." ], "path": "src/plugins/ui_actions/public/util/presentable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -1625,7 +1707,8 @@ "<{ context: Context; }> | undefined" ], "path": "src/plugins/ui_actions/public/util/presentable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -1641,6 +1724,7 @@ ], "path": "src/plugins/ui_actions/public/util/presentable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1654,6 +1738,7 @@ ], "path": "src/plugins/ui_actions/public/util/presentable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1673,6 +1758,7 @@ ], "path": "src/plugins/ui_actions/public/util/presentable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1686,6 +1772,7 @@ ], "path": "src/plugins/ui_actions/public/util/presentable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1705,6 +1792,7 @@ ], "path": "src/plugins/ui_actions/public/util/presentable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1718,6 +1806,7 @@ ], "path": "src/plugins/ui_actions/public/util/presentable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1737,6 +1826,7 @@ ], "path": "src/plugins/ui_actions/public/util/presentable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1750,6 +1840,7 @@ ], "path": "src/plugins/ui_actions/public/util/presentable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1769,6 +1860,7 @@ ], "path": "src/plugins/ui_actions/public/util/presentable.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1782,6 +1874,7 @@ ], "path": "src/plugins/ui_actions/public/util/presentable.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1807,7 +1900,8 @@ " | undefined" ], "path": "src/plugins/ui_actions/public/util/presentable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1821,6 +1915,7 @@ "description": [], "path": "src/plugins/ui_actions/public/triggers/row_click_trigger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1833,7 +1928,8 @@ "unknown" ], "path": "src/plugins/ui_actions/public/triggers/row_click_trigger.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -1854,7 +1950,8 @@ "; columns?: string[] | undefined; }" ], "path": "src/plugins/ui_actions/public/triggers/row_click_trigger.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1870,6 +1967,7 @@ ], "path": "src/plugins/ui_actions/public/triggers/trigger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1881,7 +1979,8 @@ "\nUnique name of the trigger as identified in `ui_actions` plugin trigger registry." ], "path": "src/plugins/ui_actions/public/triggers/trigger.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -1896,7 +1995,8 @@ "string | undefined" ], "path": "src/plugins/ui_actions/public/triggers/trigger.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -1911,7 +2011,8 @@ "string | undefined" ], "path": "src/plugins/ui_actions/public/triggers/trigger.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1925,6 +2026,7 @@ "description": [], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1938,7 +2040,8 @@ " | undefined" ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -1952,7 +2055,8 @@ " | undefined" ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -1968,7 +2072,8 @@ " | undefined" ], "path": "src/plugins/ui_actions/public/service/ui_actions_service.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1982,6 +2087,7 @@ "description": [], "path": "src/plugins/ui_actions/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -1991,7 +2097,8 @@ "label": "fieldName", "description": [], "path": "src/plugins/ui_actions/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -2001,7 +2108,8 @@ "label": "indexPatternId", "description": [], "path": "src/plugins/ui_actions/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -2014,7 +2122,8 @@ "string[] | undefined" ], "path": "src/plugins/ui_actions/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -2027,7 +2136,8 @@ "string | undefined" ], "path": "src/plugins/ui_actions/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2047,6 +2157,7 @@ ], "path": "src/plugins/ui_actions/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2061,6 +2172,7 @@ ], "path": "src/plugins/ui_actions/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2075,6 +2187,7 @@ ], "path": "src/plugins/ui_actions/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2098,6 +2211,7 @@ ], "path": "src/plugins/ui_actions/public/actions/action.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2113,6 +2227,7 @@ ], "path": "src/plugins/ui_actions/public/util/presentable.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2127,6 +2242,7 @@ ], "path": "src/plugins/ui_actions/public/triggers/row_click_trigger.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2141,6 +2257,7 @@ ], "path": "src/plugins/ui_actions/public/triggers/visualize_field_trigger.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2155,6 +2272,7 @@ ], "path": "src/plugins/ui_actions/public/triggers/visualize_geo_field_trigger.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -2168,6 +2286,7 @@ "description": [], "path": "src/plugins/ui_actions/public/triggers/row_click_trigger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -2177,7 +2296,8 @@ "label": "id", "description": [], "path": "src/plugins/ui_actions/public/triggers/row_click_trigger.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -2187,7 +2307,8 @@ "label": "title", "description": [], "path": "src/plugins/ui_actions/public/triggers/row_click_trigger.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -2197,7 +2318,8 @@ "label": "description", "description": [], "path": "src/plugins/ui_actions/public/triggers/row_click_trigger.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2211,6 +2333,7 @@ "description": [], "path": "src/plugins/ui_actions/public/triggers/visualize_field_trigger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -2220,7 +2343,8 @@ "label": "id", "description": [], "path": "src/plugins/ui_actions/public/triggers/visualize_field_trigger.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -2230,7 +2354,8 @@ "label": "title", "description": [], "path": "src/plugins/ui_actions/public/triggers/visualize_field_trigger.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -2240,7 +2365,8 @@ "label": "description", "description": [], "path": "src/plugins/ui_actions/public/triggers/visualize_field_trigger.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2254,6 +2380,7 @@ "description": [], "path": "src/plugins/ui_actions/public/triggers/visualize_geo_field_trigger.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActions", @@ -2263,7 +2390,8 @@ "label": "id", "description": [], "path": "src/plugins/ui_actions/public/triggers/visualize_geo_field_trigger.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -2273,7 +2401,8 @@ "label": "title", "description": [], "path": "src/plugins/ui_actions/public/triggers/visualize_geo_field_trigger.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActions", @@ -2283,7 +2412,8 @@ "label": "description", "description": [], "path": "src/plugins/ui_actions/public/triggers/visualize_geo_field_trigger.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2335,6 +2465,7 @@ ], "path": "src/plugins/ui_actions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "setup", "initialIsOpen": true }, @@ -2428,6 +2559,7 @@ ], "path": "src/plugins/ui_actions/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } diff --git a/api_docs/ui_actions.mdx b/api_docs/ui_actions.mdx index 16fd284e7b4bf..2ca1ebc663985 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'uiActions'] --- import uiActionsObj from './ui_actions.devdocs.json'; diff --git a/api_docs/ui_actions_enhanced.devdocs.json b/api_docs/ui_actions_enhanced.devdocs.json index 90944593a2acc..f4fbda2b1815f 100644 --- a/api_docs/ui_actions_enhanced.devdocs.json +++ b/api_docs/ui_actions_enhanced.devdocs.json @@ -22,6 +22,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -37,7 +38,8 @@ ", \"next\">" ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -51,6 +53,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -74,6 +77,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -87,6 +91,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -112,6 +117,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -131,6 +137,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -156,6 +163,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -175,6 +183,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -192,6 +201,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -205,6 +215,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -230,6 +241,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -287,6 +299,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -296,7 +309,8 @@ "label": "id", "description": [], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -306,7 +320,8 @@ "label": "isBeta", "description": [], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -319,7 +334,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\" | undefined" ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -332,7 +348,8 @@ "string | undefined" ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -342,7 +359,8 @@ "label": "order", "description": [], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -370,7 +388,8 @@ "> | undefined" ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -391,7 +410,8 @@ "> | undefined" ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -421,6 +441,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -444,6 +465,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -457,7 +479,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -470,7 +493,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -486,6 +510,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -499,7 +524,8 @@ "FactoryContext" ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -515,6 +541,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -528,7 +555,8 @@ "Config" ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -541,7 +569,8 @@ "FactoryContext" ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -570,7 +599,8 @@ } ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -584,6 +614,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -604,6 +635,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -618,6 +650,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -635,6 +668,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -648,6 +682,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -665,6 +700,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -678,6 +714,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -695,6 +732,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -708,6 +746,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -725,6 +764,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -738,6 +778,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -757,6 +798,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -788,6 +830,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -809,6 +852,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -826,6 +870,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -849,6 +894,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -868,6 +914,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -882,6 +929,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -917,6 +965,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -936,6 +985,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -970,6 +1020,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -989,6 +1040,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1004,6 +1056,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1057,6 +1110,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -1072,7 +1126,8 @@ " | undefined>" ], "path": "src/plugins/ui_actions_enhanced/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -1086,6 +1141,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -1106,6 +1162,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1140,6 +1197,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -1162,6 +1220,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1176,6 +1235,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1210,6 +1270,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -1229,6 +1290,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1243,6 +1305,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1260,6 +1323,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1275,6 +1339,7 @@ "description": [], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -1284,7 +1349,8 @@ "label": "idPrefixCounter", "description": [], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -1312,7 +1378,8 @@ ">" ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -1326,6 +1393,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -1345,6 +1413,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1369,6 +1438,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -1382,6 +1452,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1401,6 +1472,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -1414,6 +1486,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1439,6 +1512,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -1458,6 +1532,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1483,6 +1558,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -1502,6 +1578,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1529,7 +1606,8 @@ ", object, {}>" ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -1545,6 +1623,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1562,6 +1641,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1589,6 +1669,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -1613,6 +1694,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1629,6 +1711,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1658,6 +1741,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -1673,6 +1757,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1698,6 +1783,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1714,6 +1800,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1733,6 +1820,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -1748,6 +1836,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1767,6 +1856,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -1782,6 +1872,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1818,6 +1909,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -1831,6 +1923,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -1852,6 +1945,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1879,6 +1973,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1902,6 +1997,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -1921,6 +2017,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1946,6 +2043,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -1965,6 +2063,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1982,6 +2081,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -1995,6 +2095,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2017,6 +2118,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/url_drilldown/url_template.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -2030,6 +2132,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/url_drilldown/url_template.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2044,6 +2147,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/url_drilldown/url_template.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2058,6 +2162,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/url_drilldown/url_template.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2083,6 +2188,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/url_drilldown/url_drilldown_global_scope.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -2096,6 +2202,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/url_drilldown/url_drilldown_global_scope.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2116,6 +2223,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/url_drilldown/components/url_drilldown_collect_config/lazy.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -2131,6 +2239,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/url_drilldown/components/url_drilldown_collect_config/lazy.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2149,6 +2258,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/url_drilldown/url_validation.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -2162,6 +2272,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/url_drilldown/url_validation.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2188,6 +2299,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/url_drilldown/url_validation.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -2201,6 +2313,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/url_drilldown/url_validation.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2222,6 +2335,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/url_drilldown/url_validation.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2283,6 +2397,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory_definition.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -2294,7 +2409,8 @@ "\nUnique ID of the action factory. This ID is used to identify this action\nfactory in the registry as well as to construct actions of this type and\nidentify this action factory when presenting it to the user in UI." ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory_definition.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -2309,7 +2425,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\" | undefined" ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory_definition.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -2324,7 +2441,8 @@ "string | undefined" ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory_definition.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -2339,7 +2457,8 @@ "boolean | undefined" ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory_definition.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -2371,6 +2490,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory_definition.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -2392,6 +2512,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory_definition.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2409,6 +2530,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory_definition.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2426,6 +2548,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -2438,7 +2561,8 @@ "string[]" ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2480,6 +2604,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -2491,7 +2616,8 @@ "\nGlobally unique identifier for this drilldown." ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -2506,7 +2632,8 @@ "boolean | undefined" ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -2521,7 +2648,8 @@ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\" | undefined" ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -2536,7 +2664,8 @@ "string | undefined" ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -2551,7 +2680,8 @@ "number | undefined" ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -2567,6 +2697,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2580,7 +2711,8 @@ "Context" ], "path": "src/plugins/kibana_utils/public/ui/configurable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2614,6 +2746,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] }, @@ -2631,6 +2764,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -2644,7 +2778,8 @@ "Config" ], "path": "src/plugins/kibana_utils/public/ui/configurable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -2657,7 +2792,8 @@ "Context" ], "path": "src/plugins/kibana_utils/public/ui/configurable.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -2675,6 +2811,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -2688,6 +2825,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2706,7 +2844,8 @@ "string | undefined" ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -2722,6 +2861,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -2747,6 +2887,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -2760,6 +2901,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2782,6 +2924,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2809,6 +2952,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -2824,6 +2968,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2848,6 +2993,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2875,6 +3021,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -2888,6 +3035,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2910,6 +3058,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2929,6 +3078,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2946,6 +3096,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_manager/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -2957,7 +3108,8 @@ "\nA string that uniquely identifies this item in a list of `DrilldownTemplate[]`." ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_manager/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -2972,7 +3124,8 @@ "string | undefined" ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_manager/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -2984,7 +3137,8 @@ "\nA user facing text that provides information about the source of this template." ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_manager/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -2996,7 +3150,8 @@ "\nDrilldown type, dynamic action factory ID." ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_manager/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -3008,7 +3163,8 @@ "\nSuggested new name of the cloned drilldown. If a drilldown with such suggested\nname already exists at current place, a suffix like \" (copy 1)\" will be added." ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_manager/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -3023,7 +3179,8 @@ "string[]" ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_manager/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -3038,7 +3195,8 @@ "unknown" ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/drilldown_manager/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3052,6 +3210,7 @@ "description": [], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -3064,7 +3223,8 @@ "ActionStorage" ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -3113,7 +3273,8 @@ ">; readonly hasActionFactory: (actionFactoryId: string) => boolean; }" ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -3127,6 +3288,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -3140,6 +3302,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3159,6 +3322,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/url_drilldown/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -3168,7 +3332,8 @@ "label": "kibanaUrl", "description": [], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/url_drilldown/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3201,6 +3366,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/url_drilldown/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -3215,7 +3381,8 @@ "ContextScope | undefined" ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/url_drilldown/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -3230,7 +3397,8 @@ "EventScope | undefined" ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/url_drilldown/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3250,6 +3418,7 @@ ], "path": "src/plugins/ui_actions_enhanced/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3264,6 +3433,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3286,6 +3456,7 @@ ], "path": "src/plugins/ui_actions_enhanced/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3300,6 +3471,7 @@ ], "path": "src/plugins/ui_actions_enhanced/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3326,6 +3498,7 @@ ], "path": "src/plugins/ui_actions_enhanced/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3340,6 +3513,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/drilldowns/url_drilldown/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3373,6 +3547,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -3406,6 +3581,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -3421,6 +3597,7 @@ ], "path": "src/plugins/ui_actions_enhanced/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -3434,7 +3611,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -3447,7 +3625,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -3493,6 +3672,7 @@ ], "path": "src/plugins/ui_actions_enhanced/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -3521,7 +3701,8 @@ ">>" ], "path": "src/plugins/ui_actions_enhanced/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "uiActionsEnhanced", @@ -3535,6 +3716,7 @@ ], "path": "src/plugins/ui_actions_enhanced/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3574,6 +3756,7 @@ ], "path": "src/plugins/ui_actions_enhanced/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -3594,6 +3777,7 @@ ], "path": "src/plugins/ui_actions_enhanced/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3608,6 +3792,7 @@ ], "path": "src/plugins/ui_actions_enhanced/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3625,6 +3810,7 @@ ], "path": "src/plugins/ui_actions_enhanced/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3640,6 +3826,7 @@ ], "path": "src/plugins/ui_actions_enhanced/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3673,6 +3860,7 @@ ], "path": "src/plugins/ui_actions_enhanced/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -3701,6 +3889,7 @@ ], "path": "src/plugins/ui_actions_enhanced/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3739,6 +3928,7 @@ ], "path": "src/plugins/ui_actions_enhanced/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -3748,7 +3938,8 @@ "label": "id", "description": [], "path": "src/plugins/ui_actions_enhanced/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3780,6 +3971,7 @@ ], "path": "src/plugins/ui_actions_enhanced/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -3789,7 +3981,8 @@ "label": "id", "description": [], "path": "src/plugins/ui_actions_enhanced/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3809,6 +4002,7 @@ ], "path": "src/plugins/ui_actions_enhanced/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3831,6 +4025,7 @@ ], "path": "src/plugins/ui_actions_enhanced/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3845,6 +4040,7 @@ ], "path": "src/plugins/ui_actions_enhanced/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -3871,6 +4067,7 @@ ], "path": "src/plugins/ui_actions_enhanced/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -3884,6 +4081,7 @@ "description": [], "path": "src/plugins/ui_actions_enhanced/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -3913,6 +4111,7 @@ ], "path": "src/plugins/ui_actions_enhanced/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "uiActionsEnhanced", @@ -3941,6 +4140,7 @@ ], "path": "src/plugins/ui_actions_enhanced/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3962,6 +4162,7 @@ ], "path": "src/plugins/ui_actions_enhanced/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } @@ -3984,6 +4185,7 @@ ], "path": "src/plugins/ui_actions_enhanced/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4006,6 +4208,7 @@ ], "path": "src/plugins/ui_actions_enhanced/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4020,6 +4223,7 @@ ], "path": "src/plugins/ui_actions_enhanced/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -4046,6 +4250,7 @@ ], "path": "src/plugins/ui_actions_enhanced/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/ui_actions_enhanced.mdx b/api_docs/ui_actions_enhanced.mdx index bdce3b410e87e..f498da6aab552 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'uiActionsEnhanced'] --- import uiActionsEnhancedObj from './ui_actions_enhanced.devdocs.json'; diff --git a/api_docs/unified_field_list.devdocs.json b/api_docs/unified_field_list.devdocs.json index b78402a82f4db..43c861319fd04 100644 --- a/api_docs/unified_field_list.devdocs.json +++ b/api_docs/unified_field_list.devdocs.json @@ -23,6 +23,7 @@ ], "path": "src/plugins/unified_field_list/public/components/field_stats/index.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -36,7 +37,8 @@ "P & { children?: React.ReactNode; }" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -49,7 +51,8 @@ "any" ], "path": "node_modules/@types/react/index.d.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -68,6 +71,7 @@ ], "path": "src/plugins/unified_field_list/public/services/field_stats/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedFieldList", @@ -81,6 +85,7 @@ ], "path": "src/plugins/unified_field_list/public/services/field_stats/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -102,6 +107,7 @@ ], "path": "src/plugins/unified_field_list/common/types/stats.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedFieldList", @@ -114,7 +120,8 @@ "{ key: KeyType; count: number; }[]" ], "path": "src/plugins/unified_field_list/common/types/stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -128,6 +135,7 @@ "description": [], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedFieldList", @@ -146,7 +154,8 @@ } ], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -161,7 +170,8 @@ "AggregateQuery" ], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -175,7 +185,8 @@ "[]" ], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -185,7 +196,8 @@ "label": "fromDate", "description": [], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -195,7 +207,8 @@ "label": "toDate", "description": [], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -215,7 +228,8 @@ } ], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -234,7 +248,8 @@ } ], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -247,7 +262,8 @@ "string | undefined" ], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -261,6 +277,7 @@ ], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedFieldList", @@ -271,6 +288,7 @@ "description": [], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedFieldList", @@ -283,7 +301,8 @@ "boolean | undefined" ], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -302,6 +321,7 @@ ], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedFieldList", @@ -312,6 +332,7 @@ "description": [], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedFieldList", @@ -324,7 +345,8 @@ "JSX.Element" ], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -337,7 +359,8 @@ "number | undefined" ], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -350,7 +373,8 @@ "number | undefined" ], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -373,6 +397,7 @@ ], "path": "src/plugins/unified_field_list/common/types/stats.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedFieldList", @@ -385,7 +410,8 @@ "number | undefined" ], "path": "src/plugins/unified_field_list/common/types/stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -398,7 +424,8 @@ "number | undefined" ], "path": "src/plugins/unified_field_list/common/types/stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -411,7 +438,8 @@ "number | undefined" ], "path": "src/plugins/unified_field_list/common/types/stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -425,7 +453,8 @@ " | undefined" ], "path": "src/plugins/unified_field_list/common/types/stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -439,7 +468,8 @@ " | undefined" ], "path": "src/plugins/unified_field_list/common/types/stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -453,6 +483,7 @@ "description": [], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedFieldList", @@ -465,7 +496,8 @@ "IUiSettingsClient" ], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -484,7 +516,8 @@ } ], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -503,7 +536,8 @@ } ], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -532,7 +566,8 @@ "; }" ], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -551,7 +586,8 @@ } ], "path": "src/plugins/unified_field_list/public/components/field_stats/field_stats.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -565,6 +601,7 @@ "description": [], "path": "src/plugins/unified_field_list/common/types/stats.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedFieldList", @@ -574,7 +611,8 @@ "label": "count", "description": [], "path": "src/plugins/unified_field_list/common/types/stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -588,7 +626,8 @@ "" ], "path": "src/plugins/unified_field_list/common/types/stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -602,7 +641,8 @@ "" ], "path": "src/plugins/unified_field_list/common/types/stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -616,6 +656,7 @@ "description": [], "path": "src/plugins/unified_field_list/common/types/stats.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedFieldList", @@ -625,7 +666,8 @@ "label": "count", "description": [], "path": "src/plugins/unified_field_list/common/types/stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedFieldList", @@ -639,7 +681,8 @@ "" ], "path": "src/plugins/unified_field_list/common/types/stats.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -657,6 +700,7 @@ "description": [], "path": "src/plugins/unified_field_list/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -670,6 +714,7 @@ "description": [], "path": "src/plugins/unified_field_list/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true @@ -688,6 +733,7 @@ "description": [], "path": "src/plugins/unified_field_list/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false }, @@ -700,6 +746,7 @@ "description": [], "path": "src/plugins/unified_field_list/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedFieldList", @@ -718,7 +765,8 @@ } ], "path": "src/plugins/unified_field_list/server/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -736,6 +784,7 @@ "description": [], "path": "src/plugins/unified_field_list/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -749,6 +798,7 @@ "description": [], "path": "src/plugins/unified_field_list/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true @@ -772,6 +822,7 @@ ], "path": "src/plugins/unified_field_list/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/unified_field_list.mdx b/api_docs/unified_field_list.mdx index bd0fe3cb03859..2fb8a110a05eb 100644 --- a/api_docs/unified_field_list.mdx +++ b/api_docs/unified_field_list.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/unifiedFieldList title: "unifiedFieldList" image: https://source.unsplash.com/400x175/?github description: API docs for the unifiedFieldList plugin -date: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'unifiedFieldList'] --- import unifiedFieldListObj from './unified_field_list.devdocs.json'; diff --git a/api_docs/unified_search.devdocs.json b/api_docs/unified_search.devdocs.json index e4c644715ef31..0edb9ef43d436 100644 --- a/api_docs/unified_search.devdocs.json +++ b/api_docs/unified_search.devdocs.json @@ -17,6 +17,7 @@ ], "path": "src/plugins/unified_search/public/dataview_picker/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -30,6 +31,7 @@ ], "path": "src/plugins/unified_search/public/dataview_picker/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -50,6 +52,7 @@ ], "path": "src/plugins/unified_search/public/dataview_picker/dataview_list.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -63,6 +66,7 @@ ], "path": "src/plugins/unified_search/public/dataview_picker/dataview_list.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -85,6 +89,7 @@ ], "path": "src/plugins/unified_search/public/filter_bar/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -98,6 +103,7 @@ ], "path": "src/plugins/unified_search/public/filter_bar/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -134,6 +140,7 @@ ], "path": "src/plugins/unified_search/public/filter_bar/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -163,6 +170,7 @@ ], "path": "src/plugins/unified_search/public/filter_bar/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -185,6 +193,7 @@ ], "path": "src/plugins/unified_search/public/filter_bar/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -198,6 +207,7 @@ ], "path": "src/plugins/unified_search/public/filter_bar/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -224,6 +234,7 @@ ], "path": "src/plugins/unified_search/public/query_string_input/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -243,6 +254,7 @@ ], "path": "src/plugins/unified_search/public/query_string_input/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -275,6 +287,7 @@ ], "path": "src/plugins/unified_search/public/search_bar/index.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -360,7 +373,8 @@ "[]) => void) | undefined; onRefreshChange?: ((options: { isPaused: boolean; refreshInterval: number; }) => void) | undefined; }" ], "path": "src/plugins/unified_search/public/search_bar/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -376,6 +390,7 @@ "description": [], "path": "src/plugins/unified_search/public/actions/apply_filter_action.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -389,7 +404,8 @@ "[]" ], "path": "src/plugins/unified_search/public/actions/apply_filter_action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -402,7 +418,8 @@ "string | undefined" ], "path": "src/plugins/unified_search/public/actions/apply_filter_action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -438,7 +455,8 @@ "> | undefined" ], "path": "src/plugins/unified_search/public/actions/apply_filter_action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -451,7 +469,8 @@ "string | undefined" ], "path": "src/plugins/unified_search/public/actions/apply_filter_action.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -465,6 +484,7 @@ "description": [], "path": "src/plugins/unified_search/public/dataview_picker/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -480,7 +500,8 @@ " & { label: string; title?: string | undefined; }" ], "path": "src/plugins/unified_search/public/dataview_picker/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -495,7 +516,8 @@ "boolean | undefined" ], "path": "src/plugins/unified_search/public/dataview_picker/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -511,6 +533,7 @@ ], "path": "src/plugins/unified_search/public/dataview_picker/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -524,6 +547,7 @@ ], "path": "src/plugins/unified_search/public/dataview_picker/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -542,7 +566,8 @@ "string | undefined" ], "path": "src/plugins/unified_search/public/dataview_picker/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -564,7 +589,8 @@ "[] | undefined" ], "path": "src/plugins/unified_search/public/dataview_picker/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -580,7 +606,8 @@ "<{}> | undefined" ], "path": "src/plugins/unified_search/public/dataview_picker/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -596,6 +623,7 @@ ], "path": "src/plugins/unified_search/public/dataview_picker/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -613,6 +641,7 @@ ], "path": "src/plugins/unified_search/public/dataview_picker/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -630,7 +659,8 @@ "[] | undefined" ], "path": "src/plugins/unified_search/public/dataview_picker/index.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -648,6 +678,7 @@ ], "path": "src/plugins/unified_search/public/dataview_picker/index.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -661,6 +692,7 @@ ], "path": "src/plugins/unified_search/public/dataview_picker/index.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -680,6 +712,7 @@ ], "path": "src/plugins/unified_search/public/filter_bar/filter_item/filter_items.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -695,7 +728,8 @@ "[]" ], "path": "src/plugins/unified_search/public/filter_bar/filter_item/filter_items.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -710,7 +744,8 @@ "boolean | undefined" ], "path": "src/plugins/unified_search/public/filter_bar/filter_item/filter_items.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -728,6 +763,7 @@ ], "path": "src/plugins/unified_search/public/filter_bar/filter_item/filter_items.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -742,6 +778,7 @@ ], "path": "src/plugins/unified_search/public/filter_bar/filter_item/filter_items.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -767,7 +804,8 @@ "[]" ], "path": "src/plugins/unified_search/public/filter_bar/filter_item/filter_items.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -782,7 +820,8 @@ "ReactIntl.InjectedIntl" ], "path": "src/plugins/unified_search/public/filter_bar/filter_item/filter_items.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -797,7 +836,8 @@ "boolean | undefined" ], "path": "src/plugins/unified_search/public/filter_bar/filter_item/filter_items.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -813,7 +853,8 @@ "[] | undefined" ], "path": "src/plugins/unified_search/public/filter_bar/filter_item/filter_items.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -827,6 +868,7 @@ "description": [], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -847,7 +889,8 @@ ")[]" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -860,7 +903,8 @@ "{ query: string | { [key: string]: any; }; language: string; }" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -873,7 +917,8 @@ "boolean | undefined" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -886,7 +931,8 @@ "string | undefined" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -899,7 +945,8 @@ "any" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -919,7 +966,8 @@ " | undefined" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -932,7 +980,8 @@ "boolean | undefined" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -945,7 +994,8 @@ "string | undefined" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -958,7 +1008,8 @@ "boolean | undefined" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -971,7 +1022,8 @@ "\"upCenter\" | \"upLeft\" | \"upRight\" | \"downCenter\" | \"downLeft\" | \"downRight\" | \"leftCenter\" | \"leftUp\" | \"leftDown\" | \"rightCenter\" | \"rightUp\" | \"rightDown\" | undefined" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -985,6 +1037,7 @@ ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1002,6 +1055,7 @@ ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -1015,6 +1069,7 @@ ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1032,6 +1087,7 @@ ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -1045,6 +1101,7 @@ ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1064,6 +1121,7 @@ ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -1077,6 +1135,7 @@ ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1093,7 +1152,8 @@ "boolean | undefined" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -1106,7 +1166,8 @@ "string | undefined" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -1120,7 +1181,8 @@ " | undefined" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -1133,7 +1195,8 @@ "string | undefined" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -1146,7 +1209,8 @@ "boolean | undefined" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -1159,7 +1223,8 @@ "boolean | undefined" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -1173,7 +1238,8 @@ " | undefined" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -1186,7 +1252,8 @@ "\"text\" | \"lucene\" | undefined" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -1199,7 +1266,8 @@ "boolean | undefined" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -1212,7 +1280,8 @@ "string | undefined" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -1227,7 +1296,8 @@ "boolean | undefined" ], "path": "src/plugins/unified_search/public/query_string_input/query_string_input.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1247,6 +1317,7 @@ ], "path": "src/plugins/unified_search/public/actions/apply_filter_action.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1266,6 +1337,7 @@ ], "path": "src/plugins/unified_search/public/index_pattern_select/index_pattern_select.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1282,6 +1354,7 @@ ], "path": "src/plugins/unified_search/public/search_bar/search_bar.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1297,6 +1370,7 @@ ], "path": "src/plugins/unified_search/public/search_bar/create_search_bar.tsx", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1311,6 +1385,7 @@ ], "path": "src/plugins/unified_search/public/actions/update_filter_references_action.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1325,6 +1400,7 @@ ], "path": "src/plugins/unified_search/public/triggers/update_filter_references_trigger.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1340,6 +1416,7 @@ ], "path": "src/plugins/unified_search/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -1364,7 +1441,8 @@ "; }" ], "path": "src/plugins/unified_search/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -1379,7 +1457,8 @@ "UnifiedSearchPublicPluginStartUi" ], "path": "src/plugins/unified_search/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "start", @@ -1394,6 +1473,7 @@ "description": [], "path": "src/plugins/unified_search/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -1414,7 +1494,8 @@ "; getAutocompleteSettings: () => { terminateAfter: number; timeout: number; }; }" ], "path": "src/plugins/unified_search/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -1458,6 +1539,7 @@ ], "path": "src/plugins/unified_search/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -1471,6 +1553,7 @@ ], "path": "src/plugins/unified_search/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -1491,6 +1574,7 @@ ], "path": "src/plugins/unified_search/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1528,6 +1612,7 @@ ], "path": "src/plugins/unified_search/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -1558,6 +1643,7 @@ ], "path": "src/plugins/unified_search/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1572,6 +1658,7 @@ ], "path": "src/plugins/unified_search/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1599,6 +1686,7 @@ ], "path": "src/plugins/unified_search/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -1618,6 +1706,7 @@ ], "path": "src/plugins/unified_search/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1632,6 +1721,7 @@ ], "path": "src/plugins/unified_search/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1649,6 +1739,7 @@ ], "path": "src/plugins/unified_search/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1667,6 +1758,7 @@ "description": [], "path": "src/plugins/unified_search/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false } @@ -1683,6 +1775,7 @@ "description": [], "path": "src/plugins/unified_search/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -1695,7 +1788,8 @@ "{ getAutocompleteSettings: () => { terminateAfter: number; timeout: number; }; }" ], "path": "src/plugins/unified_search/server/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", diff --git a/api_docs/unified_search.mdx b/api_docs/unified_search.mdx index ae4d3f6a3cc1b..fc96cbb1e9cc0 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'unifiedSearch'] --- import unifiedSearchObj from './unified_search.devdocs.json'; diff --git a/api_docs/unified_search_autocomplete.devdocs.json b/api_docs/unified_search_autocomplete.devdocs.json index 3866502e40d22..b74b1ff916d1f 100644 --- a/api_docs/unified_search_autocomplete.devdocs.json +++ b/api_docs/unified_search_autocomplete.devdocs.json @@ -13,6 +13,7 @@ "description": [], "path": "src/plugins/unified_search/public/autocomplete/providers/query_suggestion_provider.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "unifiedSearch", @@ -22,7 +23,8 @@ "label": "language", "description": [], "path": "src/plugins/unified_search/public/autocomplete/providers/query_suggestion_provider.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -42,7 +44,8 @@ "[]" ], "path": "src/plugins/unified_search/public/autocomplete/providers/query_suggestion_provider.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -52,7 +55,8 @@ "label": "query", "description": [], "path": "src/plugins/unified_search/public/autocomplete/providers/query_suggestion_provider.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -62,7 +66,8 @@ "label": "selectionStart", "description": [], "path": "src/plugins/unified_search/public/autocomplete/providers/query_suggestion_provider.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -72,7 +77,8 @@ "label": "selectionEnd", "description": [], "path": "src/plugins/unified_search/public/autocomplete/providers/query_suggestion_provider.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -85,7 +91,8 @@ "AbortSignal | undefined" ], "path": "src/plugins/unified_search/public/autocomplete/providers/query_suggestion_provider.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -98,7 +105,8 @@ "boolean | undefined" ], "path": "src/plugins/unified_search/public/autocomplete/providers/query_suggestion_provider.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -111,7 +119,8 @@ "any" ], "path": "src/plugins/unified_search/public/autocomplete/providers/query_suggestion_provider.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "unifiedSearch", @@ -131,7 +140,8 @@ " | undefined" ], "path": "src/plugins/unified_search/public/autocomplete/providers/query_suggestion_provider.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -147,6 +157,7 @@ "description": [], "path": "src/plugins/unified_search/public/autocomplete/providers/query_suggestion_provider.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -173,6 +184,7 @@ ], "path": "src/plugins/unified_search/public/autocomplete/autocomplete_service.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -189,6 +201,7 @@ ], "path": "src/plugins/unified_search/public/autocomplete/providers/query_suggestion_provider.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -219,6 +232,7 @@ ], "path": "src/plugins/unified_search/public/autocomplete/providers/query_suggestion_provider.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -238,7 +252,8 @@ } ], "path": "src/plugins/unified_search/public/autocomplete/providers/query_suggestion_provider.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/unified_search_autocomplete.mdx b/api_docs/unified_search_autocomplete.mdx index cc370d0fc516a..34c1ea2a1354d 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'unifiedSearch.autocomplete'] --- import unifiedSearchAutocompleteObj from './unified_search_autocomplete.devdocs.json'; diff --git a/api_docs/url_forwarding.devdocs.json b/api_docs/url_forwarding.devdocs.json index 6957bd8e028e9..3f63d21cec057 100644 --- a/api_docs/url_forwarding.devdocs.json +++ b/api_docs/url_forwarding.devdocs.json @@ -11,6 +11,7 @@ "description": [], "path": "src/plugins/url_forwarding/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "urlForwarding", @@ -40,6 +41,7 @@ ], "path": "src/plugins/url_forwarding/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "urlForwarding", @@ -68,6 +70,7 @@ ], "path": "src/plugins/url_forwarding/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -101,6 +104,7 @@ ], "path": "src/plugins/url_forwarding/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "urlForwarding", @@ -120,6 +124,7 @@ ], "path": "src/plugins/url_forwarding/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -140,6 +145,7 @@ "description": [], "path": "src/plugins/url_forwarding/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "urlForwarding", @@ -149,7 +155,8 @@ "label": "legacyAppId", "description": [], "path": "src/plugins/url_forwarding/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "urlForwarding", @@ -159,7 +166,8 @@ "label": "newAppId", "description": [], "path": "src/plugins/url_forwarding/public/plugin.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "urlForwarding", @@ -173,6 +181,7 @@ ], "path": "src/plugins/url_forwarding/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "urlForwarding", @@ -186,6 +195,7 @@ ], "path": "src/plugins/url_forwarding/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -209,6 +219,7 @@ ], "path": "src/plugins/url_forwarding/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -231,6 +242,7 @@ ], "path": "src/plugins/url_forwarding/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/url_forwarding.mdx b/api_docs/url_forwarding.mdx index c407c87eee119..8a99fa786b150 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'urlForwarding'] --- import urlForwardingObj from './url_forwarding.devdocs.json'; diff --git a/api_docs/usage_collection.devdocs.json b/api_docs/usage_collection.devdocs.json index fc4e370e41c2f..091cf692aebb7 100644 --- a/api_docs/usage_collection.devdocs.json +++ b/api_docs/usage_collection.devdocs.json @@ -27,6 +27,7 @@ ], "path": "src/plugins/usage_collection/public/components/track_application_view/track_application_view.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "usageCollection", @@ -50,6 +51,7 @@ ], "path": "src/plugins/usage_collection/public/components/track_application_view/track_application_view.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -69,6 +71,7 @@ ], "path": "src/plugins/usage_collection/public/components/track_application_view/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "usageCollection", @@ -80,7 +83,8 @@ "\nThe name of the view to be tracked. The appId will be obtained automatically." ], "path": "src/plugins/usage_collection/public/components/track_application_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "usageCollection", @@ -95,7 +99,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "src/plugins/usage_collection/public/components/track_application_view/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -115,6 +120,7 @@ ], "path": "src/plugins/usage_collection/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "usageCollection", @@ -129,7 +135,8 @@ "{ ApplicationUsageTrackingProvider: React.FC<{}>; }" ], "path": "src/plugins/usage_collection/public/plugin.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "usageCollection", @@ -145,6 +152,7 @@ ], "path": "src/plugins/usage_collection/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "usageCollection", @@ -158,6 +166,7 @@ ], "path": "src/plugins/usage_collection/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -172,6 +181,7 @@ ], "path": "src/plugins/usage_collection/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -186,6 +196,7 @@ ], "path": "src/plugins/usage_collection/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -200,6 +211,7 @@ ], "path": "src/plugins/usage_collection/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -220,6 +232,7 @@ ], "path": "src/plugins/usage_collection/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "usageCollection", @@ -235,6 +248,7 @@ ], "path": "src/plugins/usage_collection/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "usageCollection", @@ -248,6 +262,7 @@ ], "path": "src/plugins/usage_collection/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -262,6 +277,7 @@ ], "path": "src/plugins/usage_collection/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -276,6 +292,7 @@ ], "path": "src/plugins/usage_collection/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -290,6 +307,7 @@ ], "path": "src/plugins/usage_collection/public/plugin.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -315,6 +333,7 @@ ], "path": "src/plugins/usage_collection/server/collector/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "usageCollection", @@ -1517,7 +1536,8 @@ "; }" ], "path": "src/plugins/usage_collection/server/collector/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "usageCollection", @@ -1532,7 +1552,8 @@ "SavedObjectsClientContract" ], "path": "src/plugins/usage_collection/server/collector/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1558,6 +1579,7 @@ ], "path": "src/plugins/usage_collection/server/collector/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "usageCollection", @@ -1572,7 +1594,8 @@ "Logger" ], "path": "src/plugins/usage_collection/server/collector/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "usageCollection", @@ -1584,7 +1607,8 @@ "The registered type (aka name) of the collector" ], "path": "src/plugins/usage_collection/server/collector/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "usageCollection", @@ -1616,6 +1640,7 @@ ], "path": "src/plugins/usage_collection/server/collector/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1635,7 +1660,8 @@ } ], "path": "src/plugins/usage_collection/server/collector/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -1653,6 +1679,7 @@ ], "path": "src/plugins/usage_collection/server/collector/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } @@ -1670,6 +1697,7 @@ ], "path": "src/plugins/usage_collection/server/usage_counters/usage_counter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "usageCollection", @@ -1681,7 +1709,8 @@ "The name of the counter" ], "path": "src/plugins/usage_collection/server/usage_counters/usage_counter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "usageCollection", @@ -1696,7 +1725,8 @@ "string | undefined" ], "path": "src/plugins/usage_collection/server/usage_counters/usage_counter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "usageCollection", @@ -1711,7 +1741,8 @@ "number | undefined" ], "path": "src/plugins/usage_collection/server/usage_counters/usage_counter.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1727,6 +1758,7 @@ ], "path": "src/plugins/usage_collection/server/usage_counters/usage_counter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "usageCollection", @@ -1750,6 +1782,7 @@ ], "path": "src/plugins/usage_collection/server/usage_counters/usage_counter.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "usageCollection", @@ -1771,6 +1804,7 @@ ], "path": "src/plugins/usage_collection/server/usage_counters/usage_counter.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1801,6 +1835,7 @@ ], "path": "src/plugins/usage_collection/server/usage_counters/saved_objects.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "usageCollection", @@ -1812,7 +1847,8 @@ "The domain ID registered in the Usage Counter" ], "path": "src/plugins/usage_collection/server/usage_counters/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "usageCollection", @@ -1824,7 +1860,8 @@ "The counter name" ], "path": "src/plugins/usage_collection/server/usage_counters/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "usageCollection", @@ -1836,7 +1873,8 @@ "The counter type" ], "path": "src/plugins/usage_collection/server/usage_counters/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "usageCollection", @@ -1848,7 +1886,8 @@ "Number of times the event has occurred" ], "path": "src/plugins/usage_collection/server/usage_counters/saved_objects.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1870,6 +1909,7 @@ ], "path": "node_modules/@types/kbn__analytics-client/index.d.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1902,6 +1942,7 @@ ], "path": "src/plugins/usage_collection/server/collector/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1921,7 +1962,8 @@ } ], "path": "src/plugins/usage_collection/server/collector/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1956,6 +1998,7 @@ ], "path": "src/plugins/usage_collection/server/collector/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1976,6 +2019,7 @@ ], "path": "src/plugins/usage_collection/server/collector/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1992,6 +2036,7 @@ ], "path": "src/plugins/usage_collection/server/usage_counters/saved_objects.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2040,6 +2085,7 @@ ], "path": "src/plugins/usage_collection/server/collector/usage_collector.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -2065,6 +2111,7 @@ ], "path": "src/plugins/usage_collection/server/usage_counters/saved_objects.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -2080,6 +2127,7 @@ ], "path": "src/plugins/usage_collection/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "usageCollection", @@ -2102,6 +2150,7 @@ ], "path": "src/plugins/usage_collection/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "usageCollection", @@ -2115,6 +2164,7 @@ ], "path": "src/plugins/usage_collection/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2142,6 +2192,7 @@ ], "path": "src/plugins/usage_collection/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "usageCollection", @@ -2155,6 +2206,7 @@ ], "path": "src/plugins/usage_collection/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2190,6 +2242,7 @@ ], "path": "src/plugins/usage_collection/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "usageCollection", @@ -2210,6 +2263,7 @@ ], "path": "src/plugins/usage_collection/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2237,6 +2291,7 @@ ], "path": "src/plugins/usage_collection/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "usageCollection", @@ -2257,6 +2312,7 @@ ], "path": "src/plugins/usage_collection/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2284,6 +2340,7 @@ ], "path": "src/plugins/usage_collection/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "usageCollection", @@ -2297,6 +2354,7 @@ ], "path": "src/plugins/usage_collection/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/usage_collection.mdx b/api_docs/usage_collection.mdx index 5cd4c2791d9fa..953cdbc32149c 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: 2022-09-05 +date: 2022-09-08 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 097aa466db1fb..88ae637d044d0 100644 --- a/api_docs/ux.devdocs.json +++ b/api_docs/ux.devdocs.json @@ -19,6 +19,7 @@ ], "path": "x-pack/plugins/ux/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "start", "initialIsOpen": true } diff --git a/api_docs/ux.mdx b/api_docs/ux.mdx index 69792bea430d3..3016625362ce1 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ux'] --- import uxObj from './ux.devdocs.json'; diff --git a/api_docs/vis_default_editor.devdocs.json b/api_docs/vis_default_editor.devdocs.json index f12ad0fd98f63..b45f50028d9be 100644 --- a/api_docs/vis_default_editor.devdocs.json +++ b/api_docs/vis_default_editor.devdocs.json @@ -28,6 +28,7 @@ ], "path": "src/plugins/vis_default_editor/public/default_editor_controller.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -41,6 +42,7 @@ ], "path": "src/plugins/vis_default_editor/public/default_editor_controller.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -54,6 +56,7 @@ ], "path": "src/plugins/vis_default_editor/public/default_editor_controller.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -83,6 +86,7 @@ ], "path": "src/plugins/vis_default_editor/public/default_editor_controller.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -97,6 +101,7 @@ ], "path": "src/plugins/vis_default_editor/public/default_editor_controller.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -117,6 +122,7 @@ ], "path": "src/plugins/vis_default_editor/public/default_editor_controller.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -142,6 +148,7 @@ ], "path": "src/plugins/vis_default_editor/public/default_editor_controller.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -161,6 +168,7 @@ ], "path": "src/plugins/vis_default_editor/public/default_editor_controller.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -178,6 +186,7 @@ ], "path": "src/plugins/vis_default_editor/public/default_editor_controller.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -206,6 +215,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/basic_options.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -226,6 +236,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/basic_options.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -244,6 +255,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/color_ranges.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -257,6 +269,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/color_ranges.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -275,6 +288,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/color_schema.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -288,6 +302,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/color_schema.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -314,6 +329,7 @@ ], "path": "src/plugins/vis_default_editor/public/editor_size.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -333,6 +349,7 @@ ], "path": "src/plugins/vis_default_editor/public/editor_size.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -361,6 +378,7 @@ ], "path": "src/plugins/vis_default_editor/public/utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -376,6 +394,7 @@ ], "path": "src/plugins/vis_default_editor/public/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -392,6 +411,7 @@ ], "path": "src/plugins/vis_default_editor/public/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -408,6 +428,7 @@ ], "path": "src/plugins/vis_default_editor/public/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -422,6 +443,7 @@ ], "path": "src/plugins/vis_default_editor/public/utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -442,6 +464,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/legend_size_settings.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -455,6 +478,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/legend_size_settings.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -475,6 +499,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/long_legend_options.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -488,6 +513,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/long_legend_options.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -508,6 +534,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/number_input.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -521,6 +548,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/number_input.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -541,6 +569,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/controls/palette_picker.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -555,6 +584,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/controls/palette_picker.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -575,6 +605,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/percentage_mode.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -588,6 +619,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/percentage_mode.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -606,6 +638,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/range.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -619,6 +652,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/range.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -637,6 +671,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/controls/ranges.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -650,6 +685,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/controls/ranges.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -670,6 +706,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/required_number_input.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -683,6 +720,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/required_number_input.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -701,6 +739,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/select.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -714,6 +753,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/select.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -732,6 +772,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/switch.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -745,6 +786,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/switch.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -763,6 +805,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/text_input.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -776,6 +819,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/text_input.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -796,6 +840,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/controls/utils/agg_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -809,6 +854,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/controls/utils/agg_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -823,6 +869,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/controls/utils/agg_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -840,6 +887,7 @@ "description": [], "path": "src/plugins/vis_default_editor/public/components/controls/ranges.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visDefaultEditor", @@ -852,7 +900,8 @@ "\"range\" | undefined" ], "path": "src/plugins/vis_default_editor/public/components/controls/ranges.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visDefaultEditor", @@ -865,7 +914,8 @@ "number | undefined" ], "path": "src/plugins/vis_default_editor/public/components/controls/ranges.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visDefaultEditor", @@ -878,7 +928,8 @@ "number | undefined" ], "path": "src/plugins/vis_default_editor/public/components/controls/ranges.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -894,6 +945,7 @@ "description": [], "path": "src/plugins/vis_default_editor/public/editor_size.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -910,6 +962,7 @@ ], "path": "src/plugins/vis_default_editor/public/utils.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -932,6 +985,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/color_ranges.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -942,7 +996,8 @@ "label": "paramName", "description": [], "path": "src/plugins/vis_default_editor/public/components/options/color_ranges.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visDefaultEditor", @@ -962,7 +1017,8 @@ "[]" ], "path": "src/plugins/vis_default_editor/public/components/options/color_ranges.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -995,6 +1051,7 @@ ], "path": "src/plugins/vis_default_editor/public/components/options/color_schema.tsx", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1008,7 +1065,8 @@ "T" ], "path": "src/plugins/vis_default_editor/public/components/options/color_schema.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visDefaultEditor", @@ -1028,7 +1086,8 @@ "[T]" ], "path": "src/plugins/vis_default_editor/public/components/options/color_schema.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/api_docs/vis_default_editor.mdx b/api_docs/vis_default_editor.mdx index 1d0cb712c018d..ff8015da299fa 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visDefaultEditor'] --- import visDefaultEditorObj from './vis_default_editor.devdocs.json'; diff --git a/api_docs/vis_type_gauge.devdocs.json b/api_docs/vis_type_gauge.devdocs.json index b47a32e23bcd2..11073416219fc 100644 --- a/api_docs/vis_type_gauge.devdocs.json +++ b/api_docs/vis_type_gauge.devdocs.json @@ -27,6 +27,7 @@ ], "path": "src/plugins/vis_types/gauge/public/vis_type/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeGauge", @@ -40,6 +41,7 @@ ], "path": "src/plugins/vis_types/gauge/public/vis_type/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -70,6 +72,7 @@ ], "path": "src/plugins/vis_types/gauge/public/vis_type/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeGauge", @@ -83,6 +86,7 @@ ], "path": "src/plugins/vis_types/gauge/public/vis_type/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -100,6 +104,7 @@ "description": [], "path": "src/plugins/vis_types/gauge/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false }, @@ -112,6 +117,7 @@ "description": [], "path": "src/plugins/vis_types/gauge/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false } @@ -146,6 +152,7 @@ ], "path": "src/plugins/vis_types/gauge/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/vis_type_gauge.mdx b/api_docs/vis_type_gauge.mdx index f955df7c34b5f..ff9ff105efb1a 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeGauge'] --- import visTypeGaugeObj from './vis_type_gauge.devdocs.json'; diff --git a/api_docs/vis_type_heatmap.devdocs.json b/api_docs/vis_type_heatmap.devdocs.json index 1bc2c73373f74..b069ca38ff068 100644 --- a/api_docs/vis_type_heatmap.devdocs.json +++ b/api_docs/vis_type_heatmap.devdocs.json @@ -27,6 +27,7 @@ ], "path": "src/plugins/vis_types/heatmap/public/vis_type/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeHeatmap", @@ -40,6 +41,7 @@ ], "path": "src/plugins/vis_types/heatmap/public/vis_type/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -78,6 +80,7 @@ ], "path": "src/plugins/vis_types/heatmap/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/vis_type_heatmap.mdx b/api_docs/vis_type_heatmap.mdx index 86b790e243847..f5265c4edc969 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeHeatmap'] --- import visTypeHeatmapObj from './vis_type_heatmap.devdocs.json'; diff --git a/api_docs/vis_type_pie.devdocs.json b/api_docs/vis_type_pie.devdocs.json index e7612bd29b859..b2bd3921dcfcb 100644 --- a/api_docs/vis_type_pie.devdocs.json +++ b/api_docs/vis_type_pie.devdocs.json @@ -33,6 +33,7 @@ ], "path": "src/plugins/vis_types/pie/public/vis_type/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypePie", @@ -46,6 +47,7 @@ ], "path": "src/plugins/vis_types/pie/public/vis_type/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -63,6 +65,7 @@ "description": [], "path": "src/plugins/vis_types/pie/public/types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypePie", @@ -72,7 +75,8 @@ "label": "accessor", "description": [], "path": "src/plugins/vis_types/pie/public/types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypePie", @@ -95,7 +99,8 @@ "> | undefined; }" ], "path": "src/plugins/vis_types/pie/public/types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -109,6 +114,7 @@ "description": [], "path": "src/plugins/vis_types/pie/public/types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypePie", @@ -127,7 +133,8 @@ } ], "path": "src/plugins/vis_types/pie/public/types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypePie", @@ -147,7 +154,8 @@ "[] | undefined" ], "path": "src/plugins/vis_types/pie/public/types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypePie", @@ -167,7 +175,8 @@ "[] | undefined" ], "path": "src/plugins/vis_types/pie/public/types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypePie", @@ -187,7 +196,8 @@ "[] | undefined" ], "path": "src/plugins/vis_types/pie/public/types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -223,6 +233,7 @@ ], "path": "src/plugins/vis_types/pie/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -237,6 +248,7 @@ ], "path": "src/plugins/vis_types/pie/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/vis_type_pie.mdx b/api_docs/vis_type_pie.mdx index 4a3d2f896113c..fc9bf5001a2ce 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypePie'] --- import visTypePieObj from './vis_type_pie.devdocs.json'; diff --git a/api_docs/vis_type_table.devdocs.json b/api_docs/vis_type_table.devdocs.json index 6c47f4a9fa1b7..58689e631c8e6 100644 --- a/api_docs/vis_type_table.devdocs.json +++ b/api_docs/vis_type_table.devdocs.json @@ -29,6 +29,7 @@ "description": [], "path": "src/plugins/vis_types/table/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeTable", @@ -41,7 +42,8 @@ "number | \"\"" ], "path": "src/plugins/vis_types/table/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeTable", @@ -51,7 +53,8 @@ "label": "showPartialRows", "description": [], "path": "src/plugins/vis_types/table/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeTable", @@ -61,7 +64,8 @@ "label": "showMetricsAtAllLevels", "description": [], "path": "src/plugins/vis_types/table/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeTable", @@ -71,7 +75,8 @@ "label": "showToolbar", "description": [], "path": "src/plugins/vis_types/table/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeTable", @@ -81,7 +86,8 @@ "label": "showTotal", "description": [], "path": "src/plugins/vis_types/table/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeTable", @@ -100,7 +106,8 @@ } ], "path": "src/plugins/vis_types/table/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeTable", @@ -110,7 +117,8 @@ "label": "percentageCol", "description": [], "path": "src/plugins/vis_types/table/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeTable", @@ -123,7 +131,8 @@ "boolean | undefined" ], "path": "src/plugins/vis_types/table/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeTable", @@ -136,7 +145,8 @@ "boolean | undefined" ], "path": "src/plugins/vis_types/table/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -152,6 +162,7 @@ "description": [], "path": "src/plugins/vis_types/table/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -168,6 +179,7 @@ ], "path": "src/plugins/vis_types/table/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/vis_type_table.mdx b/api_docs/vis_type_table.mdx index 4f56ac03deb41..0971c9d2d784d 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeTable'] --- import visTypeTableObj from './vis_type_table.devdocs.json'; diff --git a/api_docs/vis_type_timelion.devdocs.json b/api_docs/vis_type_timelion.devdocs.json index 7344110087c88..ed0f8f9f54261 100644 --- a/api_docs/vis_type_timelion.devdocs.json +++ b/api_docs/vis_type_timelion.devdocs.json @@ -16,6 +16,7 @@ "description": [], "path": "src/plugins/vis_types/timelion/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeTimelion", @@ -35,6 +36,7 @@ ], "path": "src/plugins/vis_types/timelion/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [] } diff --git a/api_docs/vis_type_timelion.mdx b/api_docs/vis_type_timelion.mdx index d5b0858ae2fff..1601dd0ca05b0 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeTimelion'] --- import visTypeTimelionObj from './vis_type_timelion.devdocs.json'; diff --git a/api_docs/vis_type_timeseries.devdocs.json b/api_docs/vis_type_timeseries.devdocs.json index c38dbfe482781..eb681813a0ef0 100644 --- a/api_docs/vis_type_timeseries.devdocs.json +++ b/api_docs/vis_type_timeseries.devdocs.json @@ -26,6 +26,7 @@ ], "path": "src/plugins/vis_types/timeseries/common/vis_data_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeTimeseries", @@ -39,6 +40,7 @@ ], "path": "src/plugins/vis_types/timeseries/common/vis_data_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -60,6 +62,7 @@ ], "path": "src/plugins/vis_types/timeseries/common/vis_data_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeTimeseries", @@ -73,6 +76,7 @@ ], "path": "src/plugins/vis_types/timeseries/common/vis_data_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -97,6 +101,7 @@ ], "path": "src/plugins/vis_types/timeseries/common/types/vis_data.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -110,6 +115,7 @@ "description": [], "path": "src/plugins/vis_types/timeseries/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeTimeseries", @@ -135,6 +141,7 @@ ], "path": "src/plugins/vis_types/timeseries/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeTimeseries", @@ -154,6 +161,7 @@ ], "path": "src/plugins/vis_types/timeseries/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -169,6 +177,7 @@ ], "path": "src/plugins/vis_types/timeseries/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -183,6 +192,7 @@ ], "path": "src/plugins/vis_types/timeseries/server/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/api_docs/vis_type_timeseries.mdx b/api_docs/vis_type_timeseries.mdx index 6207672a1d799..4442ae6bcf591 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeTimeseries'] --- import visTypeTimeseriesObj from './vis_type_timeseries.devdocs.json'; diff --git a/api_docs/vis_type_vega.devdocs.json b/api_docs/vis_type_vega.devdocs.json index 1ecbc7c48f289..ea85c1da79889 100644 --- a/api_docs/vis_type_vega.devdocs.json +++ b/api_docs/vis_type_vega.devdocs.json @@ -24,6 +24,7 @@ "description": [], "path": "src/plugins/vis_types/vega/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true @@ -37,6 +38,7 @@ "description": [], "path": "src/plugins/vis_types/vega/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true diff --git a/api_docs/vis_type_vega.mdx b/api_docs/vis_type_vega.mdx index bede45034b249..9804c7468413e 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeVega'] --- import visTypeVegaObj from './vis_type_vega.devdocs.json'; diff --git a/api_docs/vis_type_vislib.devdocs.json b/api_docs/vis_type_vislib.devdocs.json index 49de6b874a701..22b92af62d579 100644 --- a/api_docs/vis_type_vislib.devdocs.json +++ b/api_docs/vis_type_vislib.devdocs.json @@ -30,6 +30,7 @@ ], "path": "src/plugins/vis_types/vislib/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeVislib", @@ -42,7 +43,8 @@ "\"goal\" | \"metric\" | \"gauge\" | \"heatmap\" | \"pie\"" ], "path": "src/plugins/vis_types/vislib/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeVislib", @@ -52,7 +54,8 @@ "label": "addLegend", "description": [], "path": "src/plugins/vis_types/vislib/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeVislib", @@ -62,7 +65,8 @@ "label": "addTimeMarker", "description": [], "path": "src/plugins/vis_types/vislib/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeVislib", @@ -82,7 +86,8 @@ "[]" ], "path": "src/plugins/vis_types/vislib/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeVislib", @@ -95,7 +100,8 @@ "boolean | undefined" ], "path": "src/plugins/vis_types/vislib/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeVislib", @@ -114,7 +120,8 @@ } ], "path": "src/plugins/vis_types/vislib/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeVislib", @@ -133,7 +140,8 @@ } ], "path": "src/plugins/vis_types/vislib/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeVislib", @@ -153,7 +161,8 @@ "[]" ], "path": "src/plugins/vis_types/vislib/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeVislib", @@ -172,7 +181,8 @@ } ], "path": "src/plugins/vis_types/vislib/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeVislib", @@ -185,7 +195,8 @@ "{ percentageMode: boolean; } | undefined" ], "path": "src/plugins/vis_types/vislib/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeVislib", @@ -205,7 +216,8 @@ "[]" ], "path": "src/plugins/vis_types/vislib/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeVislib", @@ -219,7 +231,8 @@ "[]" ], "path": "src/plugins/vis_types/vislib/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeVislib", @@ -229,7 +242,8 @@ "label": "radiusRatio", "description": [], "path": "src/plugins/vis_types/vislib/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -243,6 +257,7 @@ "description": [], "path": "src/plugins/vis_types/vislib/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeVislib", @@ -252,7 +267,8 @@ "label": "addTooltip", "description": [], "path": "src/plugins/vis_types/vislib/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeVislib", @@ -262,7 +278,8 @@ "label": "addLegend", "description": [], "path": "src/plugins/vis_types/vislib/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeVislib", @@ -275,7 +292,8 @@ "\"top\" | \"bottom\" | \"left\" | \"right\"" ], "path": "src/plugins/vis_types/vislib/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeVislib", @@ -294,7 +312,8 @@ } ], "path": "src/plugins/vis_types/vislib/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -314,6 +333,7 @@ ], "path": "src/plugins/vis_types/vislib/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -328,6 +348,7 @@ ], "path": "src/plugins/vis_types/vislib/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -342,6 +363,7 @@ ], "path": "src/plugins/vis_types/vislib/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -360,6 +382,7 @@ ], "path": "src/plugins/vis_types/vislib/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -374,6 +397,7 @@ ], "path": "src/plugins/vis_types/vislib/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -388,6 +412,7 @@ ], "path": "src/plugins/vis_types/vislib/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] @@ -418,6 +443,7 @@ ], "path": "src/plugins/vis_types/vislib/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/vis_type_vislib.mdx b/api_docs/vis_type_vislib.mdx index 7e4937b15697f..0f5bedc6073f3 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeVislib'] --- import visTypeVislibObj from './vis_type_vislib.devdocs.json'; diff --git a/api_docs/vis_type_xy.devdocs.json b/api_docs/vis_type_xy.devdocs.json index ec7c7d42c4201..854b8f143a301 100644 --- a/api_docs/vis_type_xy.devdocs.json +++ b/api_docs/vis_type_xy.devdocs.json @@ -15,6 +15,7 @@ ], "path": "src/plugins/vis_types/xy/public/editor/positions.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -39,6 +40,7 @@ ], "path": "src/plugins/vis_types/xy/public/editor/scale_types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -57,6 +59,7 @@ ], "path": "src/plugins/vis_types/xy/public/editor/components/common/truncate_labels.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeXy", @@ -70,6 +73,7 @@ ], "path": "src/plugins/vis_types/xy/public/editor/components/common/truncate_labels.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -87,6 +91,7 @@ "description": [], "path": "src/plugins/vis_types/xy/public/types/param.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeXy", @@ -96,7 +101,8 @@ "label": "id", "description": [], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -115,7 +121,8 @@ } ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -128,7 +135,8 @@ "\"top\" | \"bottom\" | \"left\" | \"right\"" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -141,7 +149,8 @@ "Scale" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -151,7 +160,8 @@ "label": "show", "description": [], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -164,7 +174,8 @@ "{ text?: string | undefined; }" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -183,7 +194,8 @@ } ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -206,7 +218,8 @@ "> | undefined" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -220,6 +233,7 @@ "description": [], "path": "src/plugins/vis_types/xy/public/types/param.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeXy", @@ -239,7 +253,8 @@ " | null" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -259,7 +274,8 @@ "[]" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -279,7 +295,8 @@ "[] | undefined" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -299,7 +316,8 @@ "[] | undefined" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -319,7 +337,8 @@ "[] | undefined" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -339,7 +358,8 @@ "[] | undefined" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -359,7 +379,8 @@ "[] | undefined" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -373,6 +394,7 @@ "description": [], "path": "src/plugins/vis_types/xy/public/types/param.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeXy", @@ -382,7 +404,8 @@ "label": "categoryLines", "description": [], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -395,7 +418,8 @@ "string | undefined" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -409,6 +433,7 @@ "description": [], "path": "src/plugins/vis_types/xy/public/types/param.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeXy", @@ -421,7 +446,8 @@ "{ label: string; id: string; }" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -434,7 +460,8 @@ "boolean | undefined" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -448,7 +475,8 @@ " | undefined" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -461,7 +489,8 @@ "number | undefined" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -474,7 +503,8 @@ "ChartMode" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -484,7 +514,8 @@ "label": "show", "description": [], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -494,7 +525,8 @@ "label": "showCircles", "description": [], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -504,7 +536,8 @@ "label": "circlesRadius", "description": [], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -523,7 +556,8 @@ } ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -533,7 +567,8 @@ "label": "valueAxis", "description": [], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -547,6 +582,7 @@ "description": [], "path": "src/plugins/vis_types/xy/public/types/param.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeXy", @@ -556,7 +592,8 @@ "label": "show", "description": [], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -569,7 +606,8 @@ "number | null" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -582,7 +620,8 @@ "number | null" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -595,7 +634,8 @@ "ThresholdLineStyle" ], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visTypeXy", @@ -605,7 +645,8 @@ "label": "color", "description": [], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -637,6 +678,7 @@ ], "path": "src/plugins/vis_types/xy/public/editor/components/common/validation_wrapper.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeXy", @@ -650,6 +692,7 @@ ], "path": "src/plugins/vis_types/xy/public/editor/components/common/validation_wrapper.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeXy", @@ -663,6 +706,7 @@ ], "path": "src/plugins/vis_types/xy/public/editor/components/common/validation_wrapper.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -677,6 +721,7 @@ ], "path": "src/plugins/vis_types/xy/public/editor/components/common/validation_wrapper.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -711,6 +756,7 @@ ], "path": "src/plugins/vis_types/xy/public/types/param.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visTypeXy", @@ -720,7 +766,8 @@ "label": "name", "description": [], "path": "src/plugins/vis_types/xy/public/types/param.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -736,6 +783,7 @@ "description": [], "path": "src/plugins/vis_types/xy/public/types/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -749,6 +797,7 @@ ], "path": "src/plugins/vis_types/xy/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -760,6 +809,7 @@ "description": [], "path": "src/plugins/vis_types/xy/public/types/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -790,6 +840,7 @@ ], "path": "src/plugins/vis_types/xy/public/types/param.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -803,6 +854,7 @@ "description": [], "path": "src/plugins/vis_types/xy/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -832,6 +884,7 @@ ], "path": "src/plugins/vis_types/xy/common/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/api_docs/vis_type_xy.mdx b/api_docs/vis_type_xy.mdx index 3fa382e2dded5..a9531484ea581 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visTypeXy'] --- import visTypeXyObj from './vis_type_xy.devdocs.json'; diff --git a/api_docs/visualizations.devdocs.json b/api_docs/visualizations.devdocs.json index 15691cacaad28..dffacde50d651 100644 --- a/api_docs/visualizations.devdocs.json +++ b/api_docs/visualizations.devdocs.json @@ -21,6 +21,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -30,7 +31,8 @@ "label": "name", "description": [], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -40,7 +42,8 @@ "label": "title", "description": [], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -50,7 +53,8 @@ "label": "description", "description": [], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -60,7 +64,8 @@ "label": "note", "description": [], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -81,7 +86,8 @@ " | undefined) => string[]) | undefined" ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -118,7 +124,8 @@ " | null> | undefined) | undefined" ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -132,7 +139,8 @@ " | undefined" ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -145,7 +153,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -158,7 +167,8 @@ "\"experimental\" | \"beta\" | \"production\"" ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -168,7 +178,8 @@ "label": "isDeprecated", "description": [], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -187,7 +198,8 @@ } ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -197,7 +209,8 @@ "label": "titleInWizard", "description": [], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -210,7 +223,8 @@ "VisTypeOptions" ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -223,7 +237,8 @@ "any" ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -236,7 +251,8 @@ "any" ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -246,7 +262,8 @@ "label": "hidden", "description": [], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -256,7 +273,8 @@ "label": "requiresSearch", "description": [], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -269,7 +287,8 @@ "boolean | ((vis: { params: TVisParams; }) => boolean)" ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -282,7 +301,8 @@ "boolean | ((vis: { params: TVisParams; }) => boolean)" ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -311,7 +331,8 @@ ">) | undefined" ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -348,7 +369,8 @@ "[]>) | undefined" ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -376,7 +398,8 @@ ") | undefined" ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -386,7 +409,8 @@ "label": "fetchDatatable", "description": [], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -432,6 +456,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -452,7 +477,8 @@ "" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -471,7 +497,8 @@ } ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -502,7 +529,8 @@ ">) => React.ReactNode) | undefined" ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -523,7 +551,8 @@ ") => string | undefined) | undefined" ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -536,7 +565,8 @@ "Schemas" ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -550,6 +580,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -570,6 +601,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/base_vis_type.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -597,6 +629,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -610,6 +643,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -623,6 +657,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -637,6 +672,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -654,6 +690,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -667,6 +704,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -681,6 +719,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -698,6 +737,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -711,6 +751,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -725,6 +766,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -742,6 +784,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -755,6 +798,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -769,6 +813,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -786,6 +831,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -801,6 +847,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -814,6 +861,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -831,6 +879,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -846,6 +895,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -861,6 +911,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -876,6 +927,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -889,6 +941,7 @@ ], "path": "src/plugins/visualizations/public/persisted_state/persisted_state.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -916,6 +969,7 @@ ], "path": "src/plugins/visualizations/public/vis.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -935,7 +989,8 @@ "" ], "path": "src/plugins/visualizations/public/vis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -948,7 +1003,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -958,7 +1014,8 @@ "label": "title", "description": [], "path": "src/plugins/visualizations/public/vis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -968,7 +1025,8 @@ "label": "description", "description": [], "path": "src/plugins/visualizations/public/vis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -981,7 +1039,8 @@ "TVisParams" ], "path": "src/plugins/visualizations/public/vis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -992,6 +1051,7 @@ "description": [], "path": "src/plugins/visualizations/public/vis.ts", "deprecated": false, + "trackAdoption": false, "children": [] }, { @@ -1011,7 +1071,8 @@ } ], "path": "src/plugins/visualizations/public/vis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -1025,6 +1086,7 @@ ], "path": "src/plugins/visualizations/public/vis.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -1038,6 +1100,7 @@ ], "path": "src/plugins/visualizations/public/vis.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1059,6 +1122,7 @@ ], "path": "src/plugins/visualizations/public/vis.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1076,6 +1140,7 @@ ], "path": "src/plugins/visualizations/public/vis.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -1089,6 +1154,7 @@ ], "path": "src/plugins/visualizations/public/vis.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1114,6 +1180,7 @@ ], "path": "src/plugins/visualizations/public/vis.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1145,6 +1212,7 @@ ], "path": "src/plugins/visualizations/public/vis.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1160,6 +1228,7 @@ ], "path": "src/plugins/visualizations/public/vis.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1222,6 +1291,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -1234,7 +1304,8 @@ "\"visualization\"" ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -1248,6 +1319,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -1267,6 +1339,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1281,6 +1354,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1301,6 +1375,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1328,6 +1403,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -1365,6 +1441,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -1382,6 +1459,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1397,6 +1475,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1428,6 +1507,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1447,6 +1527,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "Local/panel-level array of filters for Visualize embeddable" @@ -1470,6 +1551,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "Local/panel-level query for Visualize embeddable" @@ -1495,6 +1577,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1512,6 +1595,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1529,6 +1613,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1544,6 +1629,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1559,6 +1645,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1574,6 +1661,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1589,6 +1677,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1612,6 +1701,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -1631,6 +1721,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1650,6 +1741,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -1663,6 +1755,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1688,6 +1781,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -1701,6 +1795,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1722,6 +1817,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1739,6 +1835,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1754,6 +1851,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1769,6 +1867,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1793,6 +1892,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -1812,6 +1912,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1831,6 +1932,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -1848,6 +1950,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -1868,6 +1971,7 @@ ], "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -1881,6 +1985,7 @@ ], "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -1916,6 +2021,7 @@ ], "path": "src/plugins/visualizations/public/vis_schemas.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -1936,6 +2042,7 @@ ], "path": "src/plugins/visualizations/public/vis_schemas.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -1956,6 +2063,7 @@ ], "path": "src/plugins/visualizations/public/vis_schemas.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2020,6 +2128,7 @@ ], "path": "src/plugins/visualizations/common/utils/prepare_log_table.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -2039,6 +2148,7 @@ ], "path": "src/plugins/visualizations/common/utils/prepare_log_table.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2060,6 +2170,7 @@ ], "path": "src/plugins/visualizations/common/utils/prepare_log_table.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2074,6 +2185,7 @@ ], "path": "src/plugins/visualizations/common/utils/prepare_log_table.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2102,6 +2214,7 @@ ], "path": "src/plugins/visualizations/public/legacy/vis_update_state.d.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -2115,6 +2228,7 @@ ], "path": "src/plugins/visualizations/public/legacy/vis_update_state.d.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2133,6 +2247,7 @@ ], "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -2146,6 +2261,7 @@ ], "path": "src/plugins/visualizations/public/utils/saved_visualize_utils.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2166,6 +2282,7 @@ ], "path": "src/plugins/visualizations/public/components/visualization_container.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -2179,6 +2296,7 @@ ], "path": "src/plugins/visualizations/public/components/visualization_container.tsx", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2196,6 +2314,7 @@ "description": [], "path": "src/plugins/visualizations/common/expression_functions/xy_dimension.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -2205,7 +2324,8 @@ "label": "date", "description": [], "path": "src/plugins/visualizations/common/expression_functions/xy_dimension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2215,7 +2335,8 @@ "label": "interval", "description": [], "path": "src/plugins/visualizations/common/expression_functions/xy_dimension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2225,7 +2346,8 @@ "label": "intervalESValue", "description": [], "path": "src/plugins/visualizations/common/expression_functions/xy_dimension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2235,7 +2357,8 @@ "label": "intervalESUnit", "description": [], "path": "src/plugins/visualizations/common/expression_functions/xy_dimension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2245,7 +2368,8 @@ "label": "format", "description": [], "path": "src/plugins/visualizations/common/expression_functions/xy_dimension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2258,7 +2382,8 @@ "{ min: string | number; max: string | number; } | undefined" ], "path": "src/plugins/visualizations/common/expression_functions/xy_dimension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2272,6 +2397,7 @@ "description": [], "path": "src/plugins/visualizations/public/visualize_app/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -2290,7 +2416,8 @@ } ], "path": "src/plugins/visualizations/public/visualize_app/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2309,7 +2436,8 @@ } ], "path": "src/plugins/visualizations/public/visualize_app/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2323,7 +2451,8 @@ "[]" ], "path": "src/plugins/visualizations/public/visualize_app/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2336,7 +2465,8 @@ "{ from: string; to: string; mode?: \"absolute\" | \"relative\" | undefined; }" ], "path": "src/plugins/visualizations/public/visualize_app/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2350,7 +2480,8 @@ " | undefined" ], "path": "src/plugins/visualizations/public/visualize_app/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2370,7 +2501,8 @@ " | undefined" ], "path": "src/plugins/visualizations/public/visualize_app/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2389,7 +2521,8 @@ } ], "path": "src/plugins/visualizations/public/visualize_app/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2401,7 +2534,8 @@ "\nFlag to determine if visualiztion is linked to the saved search" ], "path": "src/plugins/visualizations/public/visualize_app/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2415,6 +2549,7 @@ "description": [], "path": "src/plugins/visualizations/common/expression_functions/xy_dimension.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -2424,7 +2559,8 @@ "label": "defaultValue", "description": [], "path": "src/plugins/visualizations/common/expression_functions/xy_dimension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2438,6 +2574,7 @@ "description": [], "path": "src/plugins/visualizations/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -2450,7 +2587,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2463,7 +2601,8 @@ "boolean | undefined" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2477,7 +2616,8 @@ " | undefined" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2490,7 +2630,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2503,7 +2644,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2516,7 +2658,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2530,6 +2673,7 @@ "description": [], "path": "src/plugins/visualizations/common/expression_functions/xy_dimension.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -2539,7 +2683,8 @@ "label": "interval", "description": [], "path": "src/plugins/visualizations/common/expression_functions/xy_dimension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2553,6 +2698,7 @@ "description": [], "path": "src/plugins/visualizations/public/visualize_app/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -2574,6 +2720,7 @@ ], "path": "src/plugins/visualizations/public/visualize_app/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -2593,6 +2740,7 @@ ], "path": "src/plugins/visualizations/public/visualize_app/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2610,6 +2758,7 @@ ], "path": "src/plugins/visualizations/public/visualize_app/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -2625,6 +2774,7 @@ "description": [], "path": "src/plugins/visualizations/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -2637,7 +2787,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2647,7 +2798,8 @@ "label": "title", "description": [], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2660,7 +2812,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2679,7 +2832,8 @@ } ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2699,7 +2853,8 @@ " | undefined" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2712,7 +2867,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2725,7 +2881,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2738,7 +2895,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2751,7 +2909,8 @@ "{ outcome?: \"exactMatch\" | \"aliasMatch\" | \"conflict\" | undefined; aliasTargetId?: string | undefined; aliasPurpose?: \"savedObjectConversion\" | \"savedObjectImport\" | undefined; errorJSON?: string | undefined; } | undefined" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2765,6 +2924,7 @@ "description": [], "path": "src/plugins/visualizations/public/vis_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -2784,7 +2944,8 @@ "[]" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2804,7 +2965,8 @@ "[]" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2824,7 +2986,8 @@ "[]" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2838,6 +3001,7 @@ "description": [], "path": "src/plugins/visualizations/public/vis_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -2858,7 +3022,8 @@ "; }" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2868,7 +3033,8 @@ "label": "type", "description": [], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2881,7 +3047,8 @@ "{ fill: string | number; legend: { isVisible: boolean; position: string; shouldTruncate: boolean; maxLines: number; showSingleSeries: boolean; }; gridLinesVisibility: { x: boolean; yLeft: boolean; yRight: boolean; }; tickLabelsVisibility?: { x: boolean; yLeft: boolean; yRight: boolean; } | undefined; axisTitlesVisibility?: { x: boolean; yLeft: boolean; yRight: boolean; } | undefined; valueLabels?: boolean | undefined; extents?: { yLeftExtent: AxisExtents; yRightExtent: AxisExtents; } | undefined; }" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -2895,6 +3062,7 @@ "description": [], "path": "src/plugins/visualizations/public/vis_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -2907,7 +3075,8 @@ "string[]" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2920,7 +3089,8 @@ "\"none\" | \"buckets\" | \"metrics\"" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2930,7 +3100,8 @@ "label": "max", "description": [], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2940,7 +3111,8 @@ "label": "min", "description": [], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2950,7 +3122,8 @@ "label": "name", "description": [], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2970,7 +3143,8 @@ "[]" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2980,7 +3154,8 @@ "label": "title", "description": [], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -2993,7 +3168,8 @@ "unknown" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3006,7 +3182,8 @@ "boolean | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3019,7 +3196,8 @@ "boolean | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3032,7 +3210,8 @@ "any" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3045,7 +3224,8 @@ "boolean | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3058,7 +3238,8 @@ "boolean | React.ReactChild | React.ReactFragment | React.ReactPortal | null | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3072,6 +3253,7 @@ "description": [], "path": "src/plugins/visualizations/public/vis_schemas.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -3081,7 +3263,8 @@ "label": "accessor", "description": [], "path": "src/plugins/visualizations/public/vis_schemas.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3091,7 +3274,8 @@ "label": "label", "description": [], "path": "src/plugins/visualizations/public/vis_schemas.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3106,7 +3290,8 @@ " | undefined; }" ], "path": "src/plugins/visualizations/public/vis_schemas.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3119,7 +3304,8 @@ "SchemaConfigParams" ], "path": "src/plugins/visualizations/public/vis_schemas.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3129,7 +3315,8 @@ "label": "aggType", "description": [], "path": "src/plugins/visualizations/public/vis_schemas.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3153,6 +3340,7 @@ ], "path": "src/plugins/visualizations/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -3165,7 +3353,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3175,7 +3364,8 @@ "label": "title", "description": [], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3188,7 +3378,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3198,7 +3389,8 @@ "label": "type", "description": [], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3211,7 +3403,8 @@ "T" ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3224,7 +3417,8 @@ "any" ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3243,7 +3437,8 @@ } ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3257,6 +3452,7 @@ "description": [], "path": "src/plugins/visualizations/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -3269,7 +3465,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3284,7 +3481,8 @@ " | undefined; schema?: string | undefined; }[]" ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3351,7 +3549,8 @@ " | undefined; }" ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3364,7 +3563,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3378,6 +3578,7 @@ "description": [], "path": "src/plugins/visualizations/public/vis.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -3390,7 +3591,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3410,7 +3612,8 @@ " | undefined" ], "path": "src/plugins/visualizations/public/vis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3430,7 +3633,8 @@ " | undefined" ], "path": "src/plugins/visualizations/public/vis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3450,7 +3654,8 @@ " | undefined" ], "path": "src/plugins/visualizations/public/vis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3463,7 +3668,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3487,6 +3693,7 @@ ], "path": "src/plugins/visualizations/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -3505,7 +3712,8 @@ } ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3515,7 +3723,8 @@ "label": "hasHistogramAgg", "description": [], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3525,7 +3734,8 @@ "label": "isTabSelected", "description": [], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3538,7 +3748,8 @@ "VisParamType" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3566,7 +3777,8 @@ ">" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3585,7 +3797,8 @@ } ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3599,6 +3812,7 @@ ], "path": "src/plugins/visualizations/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -3612,6 +3826,7 @@ ], "path": "src/plugins/visualizations/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -3626,6 +3841,7 @@ ], "path": "src/plugins/visualizations/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3643,6 +3859,7 @@ ], "path": "src/plugins/visualizations/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -3656,6 +3873,7 @@ ], "path": "src/plugins/visualizations/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3673,6 +3891,7 @@ ], "path": "src/plugins/visualizations/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -3686,6 +3905,7 @@ ], "path": "src/plugins/visualizations/public/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -3703,6 +3923,7 @@ "description": [], "path": "src/plugins/visualizations/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -3715,7 +3936,8 @@ "[key: string]: any" ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3746,6 +3968,7 @@ ], "path": "src/plugins/visualizations/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -3755,7 +3978,8 @@ "label": "lastSavedTitle", "description": [], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3769,6 +3993,7 @@ ], "path": "src/plugins/visualizations/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3784,6 +4009,7 @@ ], "path": "src/plugins/visualizations/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -3795,7 +4021,8 @@ "label": "displayName", "description": [], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3809,7 +4036,8 @@ " | undefined" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3829,7 +4057,8 @@ " | undefined" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3842,7 +4071,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -3855,7 +4085,8 @@ "string[] | undefined" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -3869,6 +4100,7 @@ "description": [], "path": "src/plugins/visualizations/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -3989,7 +4221,8 @@ "; }" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4002,7 +4235,8 @@ "any" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4015,7 +4249,8 @@ "AbortSignal | undefined" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4029,6 +4264,7 @@ "description": [], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -4038,7 +4274,8 @@ "label": "aliasPath", "description": [], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4048,7 +4285,8 @@ "label": "aliasApp", "description": [], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4058,7 +4296,8 @@ "label": "name", "description": [], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4068,7 +4307,8 @@ "label": "title", "description": [], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4078,7 +4318,8 @@ "label": "icon", "description": [], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4091,7 +4332,8 @@ "boolean | undefined" ], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4101,7 +4343,8 @@ "label": "description", "description": [], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4114,7 +4357,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4128,6 +4372,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -4142,7 +4387,8 @@ "\"experimental\" | \"beta\" | \"production\"" ], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4155,7 +4401,8 @@ "boolean | undefined" ], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4170,7 +4417,8 @@ "; } | undefined" ], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4196,6 +4444,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -4207,7 +4456,8 @@ "\nVisualization unique name" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4219,7 +4469,8 @@ "\nIt is the displayed text on the wizard and the vis listing" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4234,7 +4485,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4249,7 +4501,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4273,6 +4526,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -4293,6 +4547,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4336,6 +4591,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -4356,6 +4612,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -4377,6 +4634,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -4420,6 +4678,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -4439,6 +4698,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4455,7 +4715,8 @@ "boolean | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4471,7 +4732,8 @@ " | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4486,7 +4748,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4503,7 +4766,8 @@ "\"experimental\" | \"beta\" | \"production\" | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4518,7 +4782,8 @@ "boolean | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4542,7 +4807,8 @@ " | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4557,7 +4823,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4572,7 +4839,8 @@ "boolean | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4587,7 +4855,8 @@ "boolean | ((vis: { params: TVisParams; }) => boolean) | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4600,7 +4869,8 @@ "boolean | ((vis: { params: TVisParams; }) => boolean) | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4628,7 +4898,8 @@ ") | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4660,6 +4931,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -4688,6 +4960,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4708,7 +4981,8 @@ "boolean | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4756,6 +5030,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -4776,7 +5051,8 @@ "" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4795,7 +5071,8 @@ } ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] }, @@ -4821,6 +5098,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -4840,6 +5118,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4873,6 +5152,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -4893,6 +5173,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/types.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -4909,7 +5190,8 @@ "boolean | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4924,7 +5206,8 @@ "> | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4939,7 +5222,8 @@ "DefaultEditorConfig | CustomEditorConfig" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4954,7 +5238,8 @@ "{ [x: string]: any; }" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -4968,6 +5253,7 @@ "description": [], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -4977,7 +5263,8 @@ "label": "editUrl", "description": [], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -4990,7 +5277,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5003,7 +5291,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5013,7 +5302,8 @@ "label": "icon", "description": [], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5023,7 +5313,8 @@ "label": "id", "description": [], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5036,7 +5327,8 @@ "\"experimental\" | \"beta\" | \"production\"" ], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5046,7 +5338,8 @@ "label": "savedObjectType", "description": [], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5056,7 +5349,8 @@ "label": "title", "description": [], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5069,7 +5363,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5083,6 +5378,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -5094,7 +5390,8 @@ "label": "typeTitle", "description": [], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5107,7 +5404,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5136,7 +5434,8 @@ "> | undefined" ], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5150,6 +5449,7 @@ "description": [], "path": "src/plugins/visualizations/public/vis_types/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -5159,7 +5459,8 @@ "label": "indexPatternId", "description": [], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5172,7 +5473,8 @@ "boolean | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5185,7 +5487,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5198,7 +5501,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5211,7 +5515,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5224,7 +5529,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5237,7 +5543,8 @@ "Record | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5250,7 +5557,8 @@ "string[] | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5263,7 +5571,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5276,7 +5585,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5289,7 +5599,8 @@ "SplitByFilters[] | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5303,7 +5614,8 @@ "<{ [key: string]: unknown; }> | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5316,7 +5628,8 @@ "VisualizeEditorMetricContext[]" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5329,7 +5642,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5342,7 +5656,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5355,7 +5670,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5368,7 +5684,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5381,7 +5698,8 @@ "boolean | undefined" ], "path": "src/plugins/visualizations/public/vis_types/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5412,6 +5730,7 @@ ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -5424,7 +5743,8 @@ "{ colors?: { [key: string]: string; } | undefined; } | undefined" ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5452,7 +5772,8 @@ "> | undefined" ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5472,7 +5793,8 @@ " | undefined" ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5485,7 +5807,8 @@ "unknown" ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5499,7 +5822,8 @@ " | undefined" ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5513,7 +5837,8 @@ "[] | undefined" ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5527,7 +5852,22 @@ " | undefined" ], "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false + }, + { + "parentPluginId": "visualizations", + "id": "def-public.VisualizeInput.timeslice", + "type": "Object", + "tags": [], + "label": "timeslice", + "description": [], + "signature": [ + "[number, number] | undefined" + ], + "path": "src/plugins/visualizations/public/embeddable/visualize_embeddable.tsx", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5543,6 +5883,7 @@ "description": [], "path": "src/plugins/visualizations/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5554,6 +5895,7 @@ "description": [], "path": "src/plugins/visualizations/public/vis_types/vis_groups_enum.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -5570,6 +5912,7 @@ ], "path": "src/plugins/visualizations/public/triggers/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5591,6 +5934,7 @@ ], "path": "src/plugins/visualizations/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5605,6 +5949,7 @@ ], "path": "src/plugins/visualizations/common/utils/prepare_log_table.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5627,6 +5972,7 @@ ], "path": "src/plugins/visualizations/common/expression_functions/vis_dimension.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5665,6 +6011,7 @@ ], "path": "src/plugins/visualizations/common/expression_functions/xy_dimension.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5679,6 +6026,7 @@ ], "path": "src/plugins/visualizations/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5693,6 +6041,7 @@ ], "path": "src/plugins/visualizations/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5709,6 +6058,7 @@ ], "path": "src/plugins/visualizations/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5755,6 +6105,7 @@ ], "path": "src/plugins/visualizations/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -5775,7 +6126,8 @@ "" ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -5794,7 +6146,8 @@ } ], "path": "src/plugins/visualizations/public/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -5811,6 +6164,7 @@ ], "path": "src/plugins/visualizations/public/vis_types/vis_type_alias_registry.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5825,6 +6179,7 @@ ], "path": "src/plugins/visualizations/public/triggers/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5839,6 +6194,7 @@ ], "path": "src/plugins/visualizations/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -5853,6 +6209,7 @@ ], "path": "src/plugins/visualizations/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6095,6 +6452,7 @@ ], "path": "src/plugins/visualizations/public/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6277,6 +6635,7 @@ ], "path": "src/plugins/visualizations/public/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -6293,6 +6652,7 @@ ], "path": "src/plugins/visualizations/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -6304,6 +6664,7 @@ "description": [], "path": "src/plugins/visualizations/public/embeddable/events.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -6316,7 +6677,8 @@ "\"FILTER_TRIGGER\"" ], "path": "src/plugins/visualizations/public/embeddable/events.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -6329,7 +6691,8 @@ "\"SELECT_RANGE_TRIGGER\"" ], "path": "src/plugins/visualizations/public/embeddable/events.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -6342,7 +6705,8 @@ "\"VALUE_CLICK_TRIGGER\"" ], "path": "src/plugins/visualizations/public/embeddable/events.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -6355,7 +6719,8 @@ "\"ROW_CLICK_TRIGGER\"" ], "path": "src/plugins/visualizations/public/embeddable/events.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -6405,6 +6770,7 @@ ], "path": "src/plugins/visualizations/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "lifecycle": "setup", "initialIsOpen": true }, @@ -6475,6 +6841,7 @@ ], "path": "src/plugins/visualizations/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -6490,6 +6857,7 @@ ], "path": "src/plugins/visualizations/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -6503,7 +6871,8 @@ "ShowNewVisModalParams" ], "path": "src/plugins/visualizations/public/wizard/show_new_vis.tsx", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ] } @@ -6530,6 +6899,7 @@ ], "path": "src/plugins/visualizations/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -6543,6 +6913,7 @@ "description": [], "path": "src/plugins/visualizations/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "setup", "initialIsOpen": true @@ -6556,6 +6927,7 @@ "description": [], "path": "src/plugins/visualizations/server/types.ts", "deprecated": false, + "trackAdoption": false, "children": [], "lifecycle": "start", "initialIsOpen": true @@ -6591,6 +6963,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -6604,6 +6977,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6625,6 +6999,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6658,6 +7033,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -6678,6 +7054,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6712,6 +7089,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -6732,6 +7110,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6753,6 +7132,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6795,6 +7175,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -6815,6 +7196,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6836,6 +7218,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -6880,6 +7263,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -6900,6 +7284,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6921,6 +7306,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -6944,6 +7330,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -6970,6 +7357,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -6991,6 +7379,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -7055,6 +7444,7 @@ ], "path": "src/plugins/visualizations/common/utils/prepare_log_table.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -7074,6 +7464,7 @@ ], "path": "src/plugins/visualizations/common/utils/prepare_log_table.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7095,6 +7486,7 @@ ], "path": "src/plugins/visualizations/common/utils/prepare_log_table.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -7109,6 +7501,7 @@ ], "path": "src/plugins/visualizations/common/utils/prepare_log_table.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7169,6 +7562,7 @@ ], "path": "src/plugins/visualizations/common/expression_functions/range.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -7201,6 +7595,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -7222,6 +7617,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -7243,6 +7639,7 @@ ], "path": "src/plugins/visualizations/common/utils/accessors.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -7311,6 +7708,7 @@ ], "path": "src/plugins/visualizations/common/expression_functions/vis_dimension.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -7326,6 +7724,7 @@ "description": [], "path": "src/plugins/visualizations/common/expression_functions/vis_dimension.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -7338,7 +7737,8 @@ "string | number" ], "path": "src/plugins/visualizations/common/expression_functions/vis_dimension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -7351,7 +7751,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/common/expression_functions/vis_dimension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -7364,7 +7765,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/common/expression_functions/vis_dimension.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7388,6 +7790,7 @@ ], "path": "src/plugins/visualizations/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -7400,7 +7803,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -7410,7 +7814,8 @@ "label": "title", "description": [], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -7423,7 +7828,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -7433,7 +7839,8 @@ "label": "type", "description": [], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -7446,7 +7853,8 @@ "T" ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -7459,7 +7867,8 @@ "any" ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -7478,7 +7887,8 @@ } ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7492,6 +7902,7 @@ "description": [], "path": "src/plugins/visualizations/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -7504,7 +7915,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -7519,7 +7931,8 @@ " | undefined; schema?: string | undefined; }[]" ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -7586,7 +7999,8 @@ " | undefined; }" ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -7599,7 +8013,8 @@ "string | undefined" ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7613,6 +8028,7 @@ "description": [], "path": "src/plugins/visualizations/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -7625,7 +8041,8 @@ "[key: string]: any" ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7650,6 +8067,7 @@ ], "path": "src/plugins/visualizations/common/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "visualizations", @@ -7659,7 +8077,8 @@ "label": "description", "description": [], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -7672,7 +8091,8 @@ "{ searchSourceJSON: string; }" ], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -7682,7 +8102,8 @@ "label": "title", "description": [], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -7692,7 +8113,8 @@ "label": "version", "description": [], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -7702,7 +8124,8 @@ "label": "visState", "description": [], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "visualizations", @@ -7712,7 +8135,8 @@ "label": "uiStateJSON", "description": [], "path": "src/plugins/visualizations/common/types.ts", - "deprecated": false + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -7728,6 +8152,7 @@ "description": [], "path": "src/plugins/visualizations/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -7751,6 +8176,7 @@ ], "path": "src/plugins/visualizations/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7765,6 +8191,7 @@ ], "path": "src/plugins/visualizations/common/utils/prepare_log_table.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7787,6 +8214,7 @@ ], "path": "src/plugins/visualizations/common/expression_functions/vis_dimension.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -7803,6 +8231,7 @@ ], "path": "src/plugins/visualizations/common/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -7819,6 +8248,7 @@ ], "path": "src/plugins/visualizations/common/constants.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ] diff --git a/api_docs/visualizations.mdx b/api_docs/visualizations.mdx index 824e92becc855..5229d1a341157 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: 2022-09-05 +date: 2022-09-08 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'visualizations'] --- import visualizationsObj from './visualizations.devdocs.json'; @@ -21,7 +21,7 @@ Contact [Vis Editors](https://github.com/orgs/elastic/teams/kibana-vis-editors) | Public API count | Any count | Items lacking comments | Missing exports | |-------------------|-----------|------------------------|-----------------| -| 416 | 12 | 388 | 15 | +| 417 | 12 | 389 | 15 | ## Client diff --git a/dev_docs/tutorials/adding_performance_metrics.mdx b/dev_docs/tutorials/adding_performance_metrics.mdx index ad74ef83eaf77..56ed044e327df 100644 --- a/dev_docs/tutorials/adding_performance_metrics.mdx +++ b/dev_docs/tutorials/adding_performance_metrics.mdx @@ -37,7 +37,7 @@ Each document in the index has the following structure: "_source": { "timestamp": "2022-08-31T11:29:58.275Z" "event_type": "performance_metric", // All events share a common event type to simplify mapping - "eventName": "dashboard_loaded", // Event name as specified when reporting it + "eventName": APP_ACTION, // Event name as specified when reporting it "duration": 736, // Event duration as specified when reporting it "context": { // Context holds information identifying the deployment, version, application and page that generated the event "version": "8.5.0-SNAPSHOT", @@ -159,6 +159,55 @@ to follow if it's important for you to look inside of a specific event e.g. `pag - **Keep performance in mind**. Reporting the performance of Kibana should never harm its own performance. Avoid sending events too frequently (`onMouseMove`) or adding serialized JSON objects (whole `SavedObjects`) into the meta object. +### Benchmarking performance on CI + +One of the use cases for event based telemetry is benchmarking the performance of features over time. +In order to keep track of their stability, the #kibana-performance team has developed a special set of +functional tests called `Journeys`. These journeys execute a UI workflow and allow the telemetry to be +reported to a cluster where it can then be analysed. + +Those journeys run on the key branches (main, release versions) on dedicated machines to produce results +as stable and reproducible as possible. + +#### Machine specifications + +All benchmarks are run on bare-metal machines with the [following specifications](https://www.hetzner.com/dedicated-rootserver/ex100): + +CPU: Intel® Core™ i9-12900K +RAM: 128 GB +SSD: 1.92 TB Datacenter Gen4 NVMe + +Since the tests are run on a local machine, there is also realistic throttling applied to the network to +simulate real life internet connection. This means that all requests have a [fixed latency and limited bandwidth](https://github.com/elastic/kibana/blob/main/x-pack/test/performance/services/performance.ts#L157). + +#### Journey implementation + +If you would like to keep track of the stability of your events, implement a journey by adding a functional +test to the `x-pack/test/performance/journeys` folder. + +The telemetry reported during the execution of those journeys will be reported to the `telemetry-v2-staging` cluster +alongside with execution context. Use the `context.labels.ciBuildName` label to filter down events to only those originating +from performance runs and visualize the duration of events (or their breakdowns). + +Run the test locally for troubleshooting purposes by running + +``` +node scripts/functional_test_runner --config x-pack/test/performance/journeys/$YOUR_JOURNEY_NAME/config.ts +``` + +#### Analyzing journey results + + - Be sure to narrow your analysis down to performance events by specifying a filter `context.labels.ciBuildName: kibana-single-user-performance`. + Otherwise you might be looking at results originating from different hardware. + - You can look at the results of a specific journey by filtering on `context.labels.journeyName`. + +Please contact the #kibana-performance team if you need more help visualising and tracking the results. + +### Production performance tracking + +All users who are opted in to report telemetry will start reporting event based telemetry as well. +The data is available to be analysed on the production telemetry cluster. + # Analytics Client Holds the public APIs to report events, enrich the events' context and set up the transport mechanisms. Please checkout package documentation to get more information about diff --git a/dev_docs/tutorials/kibana_page_template.mdx b/dev_docs/tutorials/kibana_page_template.mdx index 5c037f4f3d062..4b21b9222b395 100644 --- a/dev_docs/tutorials/kibana_page_template.mdx +++ b/dev_docs/tutorials/kibana_page_template.mdx @@ -2,96 +2,26 @@ id: kibDevDocsKPTTutorial slug: /kibana-dev-docs/tutorials/kibana-page-template title: Kibana Page Template -description: Learn how to create pages in Kibana +description: Learn how to create page layouts in Kibana date: 2021-03-20 -tags: ['kibana', 'dev', 'ui', 'tutorials'] +tags: ['kibana', 'dev', 'ui', 'tutorials', 'pages', 'layout'] --- -`KibanaPageTemplate` is a thin wrapper around [EuiPageTemplate](https://elastic.github.io/eui/#/layout/page) that makes setting up common types of Kibana pages quicker and easier while also adhering to any Kibana-specific requirements and patterns. - -Refer to EUI's documentation on [**EuiPageTemplate**](https://elastic.github.io/eui/#/layout/page) for constructing page layouts. - -## `isEmptyState` - -Use the `isEmptyState` prop for when there is no page content to show. For example, before the user has created something, when no search results are found, before data is populated, or when permissions aren't met. - -The default empty state uses any `pageHeader` info provided to populate an [**EuiEmptyPrompt**](https://elastic.github.io/eui/#/display/empty-prompt) and uses the `centeredBody` template type. - -```tsx - - Create new dashboard - , - ], - }} -/> -``` - -![Screenshot of demo empty state code. Shows the Kibana navigation bars and a centered empty state with the dashboard app icon, a level 1 heading "Dashboards", body text "You don't have any dashboards yet.", and a button that says "Create new dashboard".](../assets/kibana_default_empty_state.png) - - - Because all properties of the page header are optional, the empty state has the potential to - render blank. Make sure your empty state doesn't leave the user confused. + + Be sure to import the `KibanaPageTemplate` from `@kbn/shared-ux-page-kibana-template`. -### Custom empty state - -You can also provide a custom empty prompt to replace the pre-built one. You'll want to remove any `pageHeader` props and pass an [`EuiEmptyPrompt`](https://elastic.github.io/eui/#/display/empty-prompt) directly as the child of KibanaPageTemplate. - -```tsx - - No data} - body="You have no data. Would you like some of ours?" - actions={[ - - Get sample data - , - ]} - /> - -``` - -![Screenshot of demo custom empty state code. Shows the Kibana navigation bars and a centered empty state with the a level 1 heading "No data", body text "You have no data. Would you like some of ours?", and a button that says "Get sample data".](../assets/kibana_custom_empty_state.png) +`KibanaPageTemplate` is a Kibana-specific wrapper around [EuiPageTemplate](https://elastic.github.io/eui/#/templates/page-template) and it's namespaced components such as `KibanaPageTemplate.Header`. This component makes setting up common types of Kibana pages quicker and easier while also adhering to certain Kibana-specific requirements and patterns. -### Empty states with a page header +**Refer to EUI's own documentation on [**EuiPageTemplate**](https://elastic.github.io/eui/#/templates/page-template) for constructing page layouts and inherited props.** -When passing both a `pageHeader` configuration and `isEmptyState`, the component will render the proper template (`centeredContent`). Be sure to reduce the heading level within your child empty prompt to `

`. - -```tsx - - No data

} - body="You have no data. Would you like some of ours?" - actions={[ - - Get sample data - , - ]} - /> -
-``` - -![Screenshot of demo custom empty state code with a page header. Shows the Kibana navigation bars, a level 1 heading "Dashboards", and a centered empty state with the a level 2 heading "No data", body text "You have no data. Would you like some of ours?", and a button that says "Get sample data".](../assets/kibana_header_and_empty_state.png) +The following props are Kibana-specific extensions. ## `solutionNav` -To add left side navigation for your solution, we recommend passing [**EuiSideNav**](https://elastic.github.io/eui/#/navigation/side-nav) props to the `solutionNav` prop. The template component will then handle the mobile views and add the solution nav embellishments. On top of the EUI props, you'll need to pass your solution `name` and an optional `icon`. - -If you need to custom side bar content, you will need to pass you own navigation component to `pageSideBar`. We still recommend using [**EuiSideNav**](https://elastic.github.io/eui/#/navigation/side-nav). +To add left side navigation for your solution, we recommend using the provided `solutionNav` prop which is an object that extends [**EuiSideNavProps**](https://elastic.github.io/eui/#/navigation/side-nav). -When using `EuiSideNav`, root level items should not be linked but provide section labelling only. +Simply pass your array of `solutionNav.items` and the required `solution.name` and the template component will then handle the mobile views and collapsibility. For solutions and larger applications, we recommend also passing an `solutionNav.icon`. ```tsx ``` +> When using `EuiSideNav`, root level items should not be linked but provide section labelling only. ![Screenshot of Stack Management empty state with a provided solution navigation shown on the left, outlined in pink.](../assets/kibana_template_solution_nav.png) ![Screenshots of Stack Management page in mobile view. Menu closed on the left, menu open on the right.](../assets/kibana_template_solution_nav_mobile.png) +If you need custom solution navigation **content**, you can pass your own `solutionNav.children` instead of the items or supply your own componen with `` We still recommend using [**EuiSideNav**](https://elastic.github.io/eui/#/navigation/side-nav). + ## `noDataConfig` -Increases the consistency in messaging across all the solutions during the getting started process when no data exists. Each solution/template instance decides when is the most appropriate time to show this configuration, but is messaged specifically towards having no indices or index patterns at all or that match the particular solution. +Increases the consistency in messaging across all the solutions during the getting started process when no data exists. Each solution/template instance decides when is the most appropriate time to show this configuration, but is messaged specifically towards having **no indices and/or data views at all or that match the particular solution**. -This is a built-in configuration that displays a very specific UI and requires very specific keys. It will also ignore all other configurations of the template including `pageHeader` and `children`, with the exception of continuing to show `solutionNav`. +This is a built-in configuration that displays a very specific UI and requires very specific object keys. It will also ignore all other configurations of the template including `pageHeader` and `children`, with the exception of continuing to show `solutionNav`. -The `noDataConfig` is of type [`NoDataPagProps`](https://github.com/elastic/kibana/blob/main/src/plugins/kibana_react/public/page_template/no_data_page/no_data_page.tsx): +The `noDataConfig` is of type [`NoDataPageProps`](https://github.com/elastic/kibana/blob/main/packages/kbn-shared-ux-components/src/page_template/no_data_page/types.ts): -1. `solution: string`: Single name for the current solution, used to auto-generate the title, logo, and description *(required)* -2. `docsLink: string`: Required to set the docs link for the whole solution *(required)* +1. `solution: string`: Single name for the current solution, used to auto-generate the title, logo, and description _(required)_ +2. `docsLink: string`: Required to set the docs link for the whole solution _(required)_ 3. `logo?: string`: Optionally replace the auto-generated logo 4. `pageTitle?: string`: Optionally replace the auto-generated page title (h1) -5. `actions: NoDataPageActionsProps`: An object of `NoDataPageActions` configurations with unique primary keys *(required)* +5. `action: NoDataPageActions`: An object of `NoDataPageActions` configurations with a single primary key _(required)_ ### `NoDataPageActions` -There are two main actions for adding data that we promote throughout Kibana, Elastic Agent and Beats. They are added to the cards that are displayed by using the keys `elasticAgent` and `beats` respectively. For consistent messaging, these two cards are pre-configured but require specific `href`s and/or `onClick` handlers for directing the user to the right location for that solution. - -It also accepts a `recommended` prop as a boolean to promote one or more of the cards through visuals added to the UI. It will also place the `recommended` ones first in the list. Optionally you can also replace the `button` label by passing a string, or the whole component by passing a `ReactNode`. +There is currently only one promotoed path to ingesting data and that is through the Fleet / Ingest UI. This gets presented to the user by rendering a card that provides consistent messaging. It is mostly pre-configured but require specific `href`s and/or `onClick` handlers for directing the user to the right location for that solution. +Optionally you can also replace the `button` label by passing a string, or the whole button component by passing a `ReactNode`. ```tsx // Perform your own check @@ -148,10 +80,7 @@ const noDataConfig: KibanaPageTemplateProps['noDataConfig'] = { solution: 'Analytics', logo: 'logoKibana', docsLink: '#', - actions: { - beats: { - href: '#', - }, + action: { elasticAgent: { href: '#', }, @@ -165,8 +94,80 @@ const noDataConfig: KibanaPageTemplateProps['noDataConfig'] = { noDataConfig={hasData ? undefined : noDataConfig} > {/* Children will be ignored */} +; +``` + +![Screenshot of and example in Analytics using the no data configuration and using the corresponding list numbers to point out the UI elements that they adjust.](../assets/kibana_template_no_data_config.png) + +## `isEmptyState` + +Use the `isEmptyState` prop for when there is no page **content** to show. This is for when the user **has data** but has not created the thing that the page displays. For example, before the user has created something, when no search results are found, before data is populated, or when permissions aren't met. + +This prop is a simple boolean uses any `pageHeader` info provided to populate an centered [**EuiPageTemplate.EmptyPrompt**](https://elastic.github.io/eui/#/templates/page-template#empty-pages-or-content). + +```tsx + + Create new dashboard + , + ], + }} +/> +``` + +![Screenshot of demo empty state code. Shows the Kibana navigation bars and a centered empty state with the dashboard app icon, a level 1 heading "Dashboards", body text "You don't have any dashboards yet.", and a button that says "Create new dashboard".](../assets/kibana_default_empty_state.png) + + + Because all properties of the page header are optional, the empty state has the potential to + render blank. Make sure your empty state doesn't leave the user confused. + + +### Custom empty states + +You can also provide a custom empty prompt to replace the pre-built one using [`KibanaPageTemplate.EmptyPrompt`](https://elastic.github.io/eui/#/display/empty-prompt) as a child of KibanaPageTemplate. + +```tsx + + No data} + body="You have no data. Would you like some of ours?" + actions={[ + + Get sample data + , + ]} + /> ``` +![Screenshot of demo custom empty state code. Shows the Kibana navigation bars and a centered empty state with the a level 1 heading "No data", body text "You have no data. Would you like some of ours?", and a button that says "Get sample data".](../assets/kibana_custom_empty_state.png) + +### Empty states with a page header + +When passing both a `pageHeader` configuration and rendering a `KibanaPageTemplate.EmptyPrompt`, be sure to reduce the heading level within your child empty prompt to `

`. + +```tsx + + No data

} + body="You have no data. Would you like some of ours?" + actions={[ + + Get sample data + , + ]} + /> +
+``` -![Screenshot of and example in Observability using the no data configuration and using the corresponding list numbers to point out the UI elements that they adjust.](../assets/kibana_template_no_data_config.png) +![Screenshot of demo custom empty state code with a page header. Shows the Kibana navigation bars, a level 1 heading "Dashboards", and a centered empty state with the a level 2 heading "No data", body text "You have no data. Would you like some of ours?", and a button that says "Get sample data".](../assets/kibana_header_and_empty_state.png) diff --git a/docs/api/actions-and-connectors/create.asciidoc b/docs/api/actions-and-connectors/create.asciidoc index 0dccbd4597c6d..e8533e0561cce 100644 --- a/docs/api/actions-and-connectors/create.asciidoc +++ b/docs/api/actions-and-connectors/create.asciidoc @@ -36,9 +36,26 @@ vary depending on the connector type. For example: + -- // tag::connector-config[] -.Index connectors +.Config properties [%collapsible%open] ==== + +.{ibm-r} connectors +[%collapsible%open] +===== +`apiUrl`:: +(Required, string) The {ibm-r} instance URL. + +`orgId`:: +(Required, string) The {ibm-r} organization ID. + +For more information, refer to <>. +===== + +.Index connectors +[%collapsible%open] +===== + `executionTimeField`:: (Optional, string) Specifies a field that will contain the time the alert condition was detected. The default value is `null`. @@ -51,11 +68,11 @@ condition was detected. The default value is `null`. request. The default value is `false`. For more information, refer to <>. -==== +===== .{jira} connectors [%collapsible%open] -==== +===== `apiUrl`:: (Required, string) The {jira} instance URL. @@ -64,11 +81,139 @@ For more information, refer to <>. (Required, string) The {jira} project key. For more information, refer to <>. -==== +===== + +.{swimlane} connectors +[%collapsible%open] +===== +`apiUrl`:: +(Required, string) The {swimlane} instance URL. + +`appId`:: +(Required, string) The {swimlane} application ID. + +`connectorType`:: +(Required, String) The type of the connector. Valid values are: `all`, `alerts`, `cases`. + +`mappings`:: +(Optional, object) The field mapping. ++ +.Mappings properties +[%collapsible%open] +====== + +`alertIdConfig`::: +(Optional, object) Mapping for the alert ID. + +`fieldType`:::: +(Required, object) The type of the field in {swimlane}. + +`id`:::: +(Required, string) The id of the field in {swimlane}. + +`key`:::: +(Required, string) The key of the field in {swimlane}. + +`name`:::: +(Required, string) The name of the field in {swimlane}. + +`caseIdConfig`::: +(Optional, object) Mapping for the case ID. + +`fieldType`:::: +(Required, object) The type of the field in {swimlane}. + +`id`:::: +(Required, string) The id of the field in {swimlane}. + +`key`:::: +(Required, string) The key of the field in {swimlane}. + +`name`:::: +(Required, string) The name of the field in {swimlane}. + +`caseNameConfig`::: +(Optional, object) Mapping for the case name. + +`fieldType`:::: +(Required, object) The type of the field in {swimlane}. + +`id`:::: +(Required, string) The id of the field in {swimlane}. + +`key`:::: +(Required, string) The key of the field in {swimlane}. + +`name`:::: +(Required, string) The name of the field in {swimlane}. + +`commentsConfig`::: +(Optional, object) Mapping for the case comments. + +`fieldType`:::: +(Required, object) The type of the field in {swimlane}. + +`id`:::: +(Required, string) The id of the field in {swimlane}. + +`key`:::: +(Required, string) The key of the field in {swimlane}. + +`name`:::: +(Required, string) The name of the field in {swimlane}. + +`descriptionConfig`::: +(Optional, object) Mapping for the case description. + +`fieldType`:::: +(Required, object) The type of the field in {swimlane}. + +`id`:::: +(Required, string) The id of the field in {swimlane}. + +`key`:::: +(Required, string) The key of the field in {swimlane}. + +`name`:::: +(Required, string) The name of the field in {swimlane}. + +`ruleNameConfig`::: +(Optional, object) Mapping for the name of the alert's rule. + +`fieldType`:::: +(Required, Object) The type of the field in {swimlane}. + +`id`:::: +(Required, string) The id of the field in {swimlane}. + +`key`:::: +(Required, string) The key of the field in {swimlane}. + +`name`:::: +(Required, string) The name of the field in {swimlane}. + +`severityConfig`::: +(Optional, object) Mapping for the severity. + +`fieldType`:::: +(Required, object) The type of the field in {swimlane}. + +`id`:::: +(Required, string) The id of the field in {swimlane}. + +`key`:::: +(Required, string) The key of the field in {swimlane}. + +`name`:::: +(Required, string) The name of the field in {swimlane}. + +====== +For more information, refer to <>. +===== .{webhook-cm} connectors [%collapsible%open] -==== +===== `createCommentJson`:: (Optional, string) A JSON payload sent to the create comment URL to create a @@ -217,11 +362,12 @@ https://testing-jira.atlassian.net/browse/{{{external.system.title}}} ---- For more information, refer to <>. -==== +===== This object is not required for server log connectors. For more configuration properties, refer to <>. +==== // end::connector-config[] -- @@ -239,32 +385,51 @@ about the secrets configuration properties, refer to <>. + -- WARNING: Remember these values. You must provide them each time you call the <> API. --- -+ --- + // tag::connector-secrets[] -.{jira} connectors +.Secrets properties [%collapsible%open] ==== + +.{ibm-r} connectors +[%collapsible%open] +===== +`apiKeyId`:: +(Required, string) The authentication key ID for HTTP Basic authentication. + +`apiKeySecret`:: +(Required, string) The authentication key secret for HTTP Basic authentication. +===== + +.{jira} connectors +[%collapsible%open] +===== `apiToken`:: (Required, string) The {jira} API authentication token for HTTP basic authentication. `email`:: (Required, string) The account email for HTTP Basic authentication. -==== +===== + +.{swimlane} connectors +[%collapsible%open] +===== +`apiToken`:: +(string) {swimlane} API authentication token. +===== .{webhook-cm} connectors [%collapsible%open] -==== +===== `password`:: (Optional, string) The password for HTTP basic authentication. `user`:: (Optional, string) The username for HTTP basic authentication. -==== - +===== This object is not required for index or server log connectors. +==== // end::connector-secrets[] -- @@ -277,6 +442,8 @@ This object is not required for index or server log connectors. [[create-connector-api-example]] === {api-examples-title} +Create an index connector: + [source,sh] -------------------------------------------------- POST api/actions/connector @@ -308,3 +475,71 @@ The API returns the following: "is_missing_secrets": false } -------------------------------------------------- + +Create a {jira} connector: + +[source,sh] +-------------------------------------------------- +POST api/actions/connector +{ + "name": "my-jira-connector", + "connector_type_id": ".jira", + "config": { + "apiUrl": "https://elastic.atlassian.net", + "projectKey": "ES" + }, + "secrets": { + "email": "myEmail", + "apiToken": "myToken" + } +} +-------------------------------------------------- +// KIBANA + +Create an {ibm-r} connector: + +[source,sh] +-------------------------------------------------- +POST api/actions/connector +{ + "name": "my-resilient-connector", + "connector_type_id": ".resilient", + "config": { + "apiUrl": "https://elastic.resilient.net", + "orgId": "201" + }, + "secrets": { + "apiKeyId": "myKey", + "apiKeySecret": "myToken" + } +} +-------------------------------------------------- +// KIBANA + +Create a {swimlane} connector: + +[source,sh] +-------------------------------------------------- +POST api/actions/connector +{ + "name":"my-swimlane-connector", + "connector_type_id": ".swimlane", + "config":{ + "connectorType":"all", + "mappings":{ + "ruleNameConfig":{ + "id":"b6fst", + "name":"Alert Name", + "key":"alert-name", + "fieldType":"text" + } + }, + "appId":"myAppID", + "apiUrl":"https://myswimlaneinstance.com" + }, + "secrets":{ + "apiToken":"myToken" + } +} +-------------------------------------------------- +// KIBANA \ No newline at end of file diff --git a/docs/developer/advanced/sharing-saved-objects.asciidoc b/docs/developer/advanced/sharing-saved-objects.asciidoc index 69ffab1910b5e..6121201bb07c5 100644 --- a/docs/developer/advanced/sharing-saved-objects.asciidoc +++ b/docs/developer/advanced/sharing-saved-objects.asciidoc @@ -284,10 +284,10 @@ const getLegacyUrlConflictCallout = () => { return ( - + {/* If we have a legacy URL conflict callout to display, show it at the top of the page */} {getLegacyUrlConflictCallout()} - + ... ); ``` diff --git a/docs/management/action-types.asciidoc b/docs/management/action-types.asciidoc index a3d6586e6e851..415080c12a65f 100644 --- a/docs/management/action-types.asciidoc +++ b/docs/management/action-types.asciidoc @@ -71,25 +71,24 @@ a| <> [NOTE] ============================================== Some connector types are paid commercial features, while others are free. -For a comparison of the Elastic subscription levels, -see {subscriptions}[the subscription page]. +For a comparison of the Elastic subscription levels, go to +{subscriptions}[the subscription page]. ============================================== [float] [[connector-management]] -=== Managing Connectors +=== Managing connectors -Rules use *Connectors* to route actions to different destinations like log files, ticketing systems, and messaging tools. While each {kib} app can offer their own types of rules, they typically share connectors. The *Connectors* tab offers a central place to view and manage all the connectors in the current space. - -For more information on connectors and the types of actions available see <>. +Rules use connectors to route actions to different destinations like log files, ticketing systems, and messaging tools. While each {kib} app can offer their own types of rules, they typically share connectors. The *Connectors* tab offers a central place to view and manage all the connectors in the current space. [role="screenshot"] -image::images/connector-listing.png[Example connector listing in the Rules and Connectors UI] +image::images/connector-listing.png[Example connector listing in the {rules-ui} UI] [float] === Required permissions -Access to connectors is granted based on your privileges to alerting-enabled features. See <> for more information. +Access to connectors is granted based on your privileges to alerting-enabled +features. For more information, go to <>. [float] === Connector networking configuration @@ -100,18 +99,15 @@ Use the <> to customize connecto [[connectors-list]] === Connector list -The *Connectors* tab lists all connectors in the current space. The *search bar* can be used to find specific connectors by name and/or type. - -[role="screenshot"] -image::images/connector-filter-by-search.png[Filtering the connector list using the search bar] - - -The *type* dropdown also lets you filter to a subset of connector types. +The *Connectors* tab lists all connectors in the current space. The search bar +can be used to find specific connectors by name and type. The *Type* dropdown +also enables you to filter to a subset of connector types. [role="screenshot"] image::images/connector-filter-by-type.png[Filtering the connector list by types of connectors] -You can delete individual connectors using the trash icon. Connectors can also be deleted in bulk by multi-selecting them and clicking the *Delete* button to the left of the search box. +You can delete individual connectors using the trash icon. Alternatively, select +multiple connectors and delete them in bulk using the *Delete* button. [role="screenshot"] image::images/connector-delete.png[Deleting connectors individually or in bulk] @@ -119,28 +115,35 @@ image::images/connector-delete.png[Deleting connectors individually or in bulk] [NOTE] ============================================================================ You can delete a connector even if there are still actions referencing it. -When this happens the action will fail to execute, and appear as errors in the {kib} logs. +When this happens the action will fail to run and errors appear in the {kib} logs. ============================================================================ [float] [[creating-new-connector]] === Creating a new connector -New connectors can be created by clicking the *Create connector* button, which will guide you to select the type of connector and configure its properties. Refer to <> for the types of connectors available and how to configure them. Once you create a connector it will be made available to you anytime you set up an action in the current space. +New connectors can be created with the *Create connector* button, which guides +you to select the type of connector and configure its properties. [role="screenshot"] image::images/connector-select-type.png[Connector select type] +After you create a connector, it is available for use any time you set up an +action in the current space. + [float] [[importing-and-exporting-connectors]] === Importing and exporting connectors -To import and export connectors, use the <>. -After a successful import, the proper banner is displayed: +To import and export connectors, use the +<>. + [role="screenshot"] -image::images/coonectors-import-banner.png[Connectors import banner, width=50%] +image::images/connectors-import-banner.png[Connectors import banner, width=50%] + +If a connector is missing sensitive information after the import, a **Fix** +button appears in *{rules-ui}*. -If a connector is missing user sensitive information because of the import, a **Fix** button appears in the list view. [role="screenshot"] image::images/connectors-with-missing-secrets.png[Connectors with missing secrets] @@ -156,7 +159,7 @@ before {kib} starts. === Monitoring connectors The <> helps you understand the performance of all tasks in your environment. -However, if connectors fail to execute, they will report as successful to Task Manager. The failure stats will not +However, if connectors fail to run, they will report as successful to Task Manager. The failure stats will not accurately depict the performance of connectors. For more information on connector successes and failures, refer to the <>. diff --git a/docs/management/advanced-options.asciidoc b/docs/management/advanced-options.asciidoc index 8d93c89e5bb3c..2456b97a0d7ed 100644 --- a/docs/management/advanced-options.asciidoc +++ b/docs/management/advanced-options.asciidoc @@ -548,6 +548,10 @@ Disable this option if you prefer to use the new heatmap charts with improved pe Enables users to create, view, and edit experimental visualizations. When disabled, only production-ready visualizations are available to users. +[[lens-sampling]]`lens:useFieldExistenceSampling`:: +**This setting is deprecated and will not be supported as of 8.6.** +If enabled, document sampling is used to determine field existence (available or empty) for the Lens field list instead of relying on index mappings. + [float] [[kibana-telemetry-settings]] ==== Usage Data diff --git a/docs/management/connectors/images/connector-delete.png b/docs/management/connectors/images/connector-delete.png index ccb6bcea4bade..2e0e5d8a06b25 100644 Binary files a/docs/management/connectors/images/connector-delete.png and b/docs/management/connectors/images/connector-delete.png differ diff --git a/docs/management/connectors/images/connector-filter-by-search.png b/docs/management/connectors/images/connector-filter-by-search.png deleted file mode 100644 index 97348e70d91b3..0000000000000 Binary files a/docs/management/connectors/images/connector-filter-by-search.png and /dev/null differ diff --git a/docs/management/connectors/images/connector-filter-by-type.png b/docs/management/connectors/images/connector-filter-by-type.png index b95ef4e1a2e3e..c09a285d2af9c 100644 Binary files a/docs/management/connectors/images/connector-filter-by-type.png and b/docs/management/connectors/images/connector-filter-by-type.png differ diff --git a/docs/management/connectors/images/connector-listing.png b/docs/management/connectors/images/connector-listing.png index 68a529e16aa76..e7fb0899ef4a7 100644 Binary files a/docs/management/connectors/images/connector-listing.png and b/docs/management/connectors/images/connector-listing.png differ diff --git a/docs/management/connectors/images/connector-select-type.png b/docs/management/connectors/images/connector-select-type.png index ef5825b149311..90f26778dd957 100644 Binary files a/docs/management/connectors/images/connector-select-type.png and b/docs/management/connectors/images/connector-select-type.png differ diff --git a/docs/management/connectors/images/connectors-import-banner.png b/docs/management/connectors/images/connectors-import-banner.png new file mode 100644 index 0000000000000..92e4fe68d929d Binary files /dev/null and b/docs/management/connectors/images/connectors-import-banner.png differ diff --git a/docs/management/connectors/images/connectors-with-missing-secrets.png b/docs/management/connectors/images/connectors-with-missing-secrets.png new file mode 100644 index 0000000000000..f4f2ba0d73e13 Binary files /dev/null and b/docs/management/connectors/images/connectors-with-missing-secrets.png differ diff --git a/docs/management/images/connectors-with-missing-secrets.png b/docs/management/images/connectors-with-missing-secrets.png deleted file mode 100644 index ffc902d4a4768..0000000000000 Binary files a/docs/management/images/connectors-with-missing-secrets.png and /dev/null differ diff --git a/docs/management/images/coonectors-import-banner.png b/docs/management/images/coonectors-import-banner.png deleted file mode 100644 index 55a6e91d28c8d..0000000000000 Binary files a/docs/management/images/coonectors-import-banner.png and /dev/null differ diff --git a/docs/management/watcher-ui/index.asciidoc b/docs/management/watcher-ui/index.asciidoc index 3523fc3a9fc14..c4e5ef928b9b0 100644 --- a/docs/management/watcher-ui/index.asciidoc +++ b/docs/management/watcher-ui/index.asciidoc @@ -225,6 +225,10 @@ simulation. Be aware of these implementation details on overrides: * Condition overrides indicates if you want to force the condition to always be `true`. * Action overrides support {ref}/watcher-api-execute-watch.html#watcher-api-execute-watch-action-mode[multiple options]. +Some watches, such as those using basic auth credentials, contain passwords. For security +reasons, these passwords will be stripped from any watches that are loaded by the +Watcher UI. You will need to manually re-enter these passwords to simulate the watch. + After starting the simulation, you’ll see a results screen. For more information on the fields in the response, see the {ref}/watcher-api-execute-watch.html[Execute watch API]. diff --git a/docs/settings/security-settings.asciidoc b/docs/settings/security-settings.asciidoc index 9174995c5d9e1..941cfca92e603 100644 --- a/docs/settings/security-settings.asciidoc +++ b/docs/settings/security-settings.asciidoc @@ -162,6 +162,17 @@ Adds a message accessible at the login UI with additional help information for t xpack.security.authc.selector.enabled {ess-icon}:: Determines if the login selector UI should be enabled. By default, this setting is set to `true` if more than one authentication provider is configured. +[float] +[[authentication-access-agreement-settings]] +==== Configure a default access agreement + +You can configure the following settings in the `kibana.yml` file. + +xpack.security.accessAgreement.message {ess-icon}:: +This setting specifies the access agreement text in Markdown format that will be used as the default access agreement for all providers that do not +specify a value for `xpack.security.authc.providers...accessAgreement.message`. +For more information, refer to <>. + [float] [[security-session-and-cookie-settings]] ==== Session and cookie security settings diff --git a/docs/user/alerting/alerting-getting-started.asciidoc b/docs/user/alerting/alerting-getting-started.asciidoc index ca0b8ff8ee111..708c4f0ddfeff 100644 --- a/docs/user/alerting/alerting-getting-started.asciidoc +++ b/docs/user/alerting/alerting-getting-started.asciidoc @@ -1,17 +1,15 @@ -[role="xpack"] [[alerting-getting-started]] = Alerting - -- Alerting allows you to define *rules* to detect complex conditions within different {kib} apps and trigger actions when those conditions are met. Alerting is integrated with {observability-guide}/create-alerts.html[*Observability*], {security-guide}/prebuilt-rules.html[*Security*], <> and {ml-docs}/ml-configuring-alerts.html[*{ml-app}*], can be centrally managed from the <> UI, and provides a set of built-in <> and <> (known as stack rules) for you to use. -image::images/alerting-overview.png[Rules and Connectors UI] +image::images/alerting-overview.png[{rules-ui} UI] [IMPORTANT] ============================================== -To make sure you can access alerting and actions, see the <> section. +To make sure you can access alerting and actions, see the <> section. ============================================== [float] @@ -24,7 +22,7 @@ This section describes all of these elements and how they operate together. [float] === Rules -A rule specifies a background task that runs on the {kib} server to check for specific conditions. {kib} provides two types of rules: stack rules that are built into {kib} and the rules that are registered by Kibana apps. Refer to <> for more information. +A rule specifies a background task that runs on the {kib} server to check for specific conditions. {kib} provides two types of rules: stack rules that are built into {kib} and the rules that are registered by {kib} apps. Refer to <> for more information. A rule consists of three main parts: @@ -46,7 +44,7 @@ The following sections describe each part of the rule in more detail. [[alerting-concepts-conditions]] ==== Conditions -Under the hood, {kib} rules detect conditions by running a Javascript function on the {kib} server, which gives it the flexibility to support a wide range of conditions, anything from the results of a simple {es} query to heavy computations involving data from multiple sources or external systems. +Under the hood, {kib} rules detect conditions by running a JavaScript function on the {kib} server, which gives it the flexibility to support a wide range of conditions, anything from the results of a simple {es} query to heavy computations involving data from multiple sources or external systems. These conditions are packaged and exposed as *rule types*. A rule type hides the underlying details of the condition, and exposes a set of parameters to control the details of the conditions to detect. @@ -123,9 +121,9 @@ image::images/rule-concepts-summary.svg[Rules, connectors, alerts and actions wo [float] [[alerting-concepts-differences]] -== Differences from Watcher +== Differences from {watcher} -Alerting and <> are both used to detect conditions and can trigger actions in response, but they are completely independent alerting systems. +Alerting and <> are both used to detect conditions and can trigger actions in response, but they are completely independent alerting systems. This section will clarify some of the important differences in the function and intent of the two systems. @@ -137,6 +135,6 @@ Functionally, Alerting differs in that: * Actions are linked to *alerts* in Alerting. Actions are fired for each occurrence of a detected condition, rather than for the entire rule. At a higher level, Alerting allows rich integrations across use cases like <>, <>, <>, and <>. -Pre-packaged *rule types* simplify setup and hide the details of complex, domain-specific detections, while providing a consistent interface across {kib}. +Prepackaged *rule types* simplify setup and hide the details of complex, domain-specific detections, while providing a consistent interface across {kib}. -- diff --git a/docs/user/alerting/alerting-setup.asciidoc b/docs/user/alerting/alerting-setup.asciidoc index c797620987996..819f20005d7a4 100644 --- a/docs/user/alerting/alerting-setup.asciidoc +++ b/docs/user/alerting/alerting-setup.asciidoc @@ -11,7 +11,7 @@ configuration. [float] [[alerting-prerequisites]] === Prerequisites -If you are using an *on-premises* Elastic Stack deployment: +If you are using an *on-premises* {stack} deployment: * In the `kibana.yml` configuration file, add the <> @@ -19,7 +19,7 @@ setting. * For emails to have a footer with a link back to {kib}, set the <> configuration setting. -If you are using an *on-premises* Elastic Stack deployment with +If you are using an *on-premises* {stack} deployment with <>: * If you are unable to access {kib} {alert-features}, ensure that you have not diff --git a/docs/user/alerting/alerting-troubleshooting.asciidoc b/docs/user/alerting/alerting-troubleshooting.asciidoc index 32c77d7fa57a7..95c07fccf3b47 100644 --- a/docs/user/alerting/alerting-troubleshooting.asciidoc +++ b/docs/user/alerting/alerting-troubleshooting.asciidoc @@ -31,7 +31,7 @@ and Task Manager <>. [float] [[alerting-managment-detail]] === Using rules and connectors list for the current state and finding issues -*Rules and Connectors* in *Stack Management* lists the rules and connectors available in the space you’re currently in. When you click a rule name, you are navigated to the <> for the rule, where you can see currently active alerts. +*{rules-ui}* in *{stack-manage-app}* lists the rules and connectors available in the space you're currently in. When you click a rule name, you are navigated to the <> for the rule, where you can see currently active alerts. The start date on this page indicates when a rule is triggered, and for what alerts. In addition, the duration of the condition indicates how long the instance is active. [role="screenshot"] image::images/rule-details-alerts-inactive.png[Alerting management details] @@ -44,7 +44,9 @@ When creating or editing an index threshold rule, you see a graph of the data th [role="screenshot"] image::images/index-threshold-chart.png[Index Threshold chart] -The end date is related to the rule interval (IIRC, 30 “intervals” worth of time). You can use this view to see if the rule is getting the data you expect, and visually compare to the threshold value (a horizontal line in the graph). If the graph does not contain any lines except for the threshold line, then the rule has an issue, for example, no data is available given the specified index and fields or there is a permission error. +The end date is related to the rule interval. +//(IIRC, 30 “intervals” worth of time) +You can use this view to see if the rule is getting the data you expect, and visually compare to the threshold value (a horizontal line in the graph). If the graph does not contain any lines except for the threshold line, then the rule has an issue, for example, no data is available given the specified index and fields or there is a permission error. Diagnosing these may be difficult - but there may be log messages for error conditions. [float] @@ -52,7 +54,7 @@ Diagnosing these may be difficult - but there may be log messages for error cond === Use the REST APIs There is a rich set of HTTP endpoints to introspect and manage rules and connectors. -One of the http endpoints available for actions is the POST <>. You can use this to “test” an action. For instance, if you have a server log action created, you can run it via curling the endpoint: +One of the HTTP endpoints available for actions is the POST <>. You can use this to “test” an action. For instance, if you have a server log action created, you can run it via curling the endpoint: [source, txt] -------------------------------------------------- curl -X POST -k \ @@ -62,7 +64,7 @@ curl -X POST -k \ -d '{"params":{"subject":"hallo","message":"hallo!","to":["me@example.com"]}}' -------------------------------------------------- -experimental[] In addition, there is a command-line client that uses legacy Rules and Connectors APIs, which can be easier to use, but must be updated for the new APIs. +experimental[] In addition, there is a command-line client that uses legacy {rules-ui} APIs, which can be easier to use, but must be updated for the new APIs. CLI tools to list, create, edit, and delete alerts (rules) and actions (connectors) are available in https://github.com/pmuellr/kbn-action[kbn-action], which you can install as follows: [source, txt] -------------------------------------------------- @@ -75,7 +77,7 @@ The same REST POST _execute API command will be: kbn-action execute a692dc89-15b9-4a3c-9e47-9fb6872e49ce ‘{"params":{"subject":"hallo","message":"hallo!","to":["me@example.com"]}}’ -------------------------------------------------- -The result of this http request (and printed to stdout by https://github.com/pmuellr/kbn-action[kbn-action]) will be data returned by the action, along with error messages if errors were encountered. +The result of this HTTP request (and printed to stdout by https://github.com/pmuellr/kbn-action[kbn-action]) will be data returned by the action, along with error messages if errors were encountered. [float] [[alerting-error-banners]] diff --git a/docs/user/alerting/create-and-manage-rules.asciidoc b/docs/user/alerting/create-and-manage-rules.asciidoc index 6f52ef632da99..a3af0d89164c8 100644 --- a/docs/user/alerting/create-and-manage-rules.asciidoc +++ b/docs/user/alerting/create-and-manage-rules.asciidoc @@ -10,7 +10,7 @@ central place to: * <> rules * <> including enabling/disabling, muting/unmuting, and deleting -* Drill-down to <> +* Drill down to <> [role="screenshot"] image:images/rules-and-connectors-ui.png[Example rule listing in {rules-ui}] @@ -99,7 +99,7 @@ image::images/rule-flyout-general-details.png[alt='All rules have name, tags, ch [[defining-rules-type-conditions]] ==== Rule type and conditions -Depending upon the {kib} app and context, you might be prompted to choose the type of rule to create. Some apps will pre-select the type of rule for you. +Depending upon the {kib} app and context, you might be prompted to choose the type of rule to create. Some apps will preselect the type of rule for you. [role="screenshot"] image::images/rule-flyout-rule-type-selection.png[Choosing the type of rule to create] @@ -218,7 +218,7 @@ image::images/rules-imported-banner.png[Rules import banner, width=50%] [float] [[rule-details]] -=== Drilldown to rule details +=== Drill down to rule details Select a rule name from the rule listing to access the *Rule details* page, which tells you about the state of the rule and provides granular control over the actions it is taking. diff --git a/docs/user/alerting/images/rule-types-es-query-conditions.png b/docs/user/alerting/images/rule-types-es-query-conditions.png index cfa5dcfcd1ca9..4bc5f4f61fc07 100644 Binary files a/docs/user/alerting/images/rule-types-es-query-conditions.png and b/docs/user/alerting/images/rule-types-es-query-conditions.png differ diff --git a/docs/user/alerting/rule-types.asciidoc b/docs/user/alerting/rule-types.asciidoc index 120c580330b9f..7aab91b27e030 100644 --- a/docs/user/alerting/rule-types.asciidoc +++ b/docs/user/alerting/rule-types.asciidoc @@ -2,8 +2,8 @@ [[rule-types]] == Rule types -A rule is a set of <>, <>, and <> that enable notifications. {kib} provides rules built into the Elastic Stack and rules registered by one of the {kib} apps. -You can create most rules types in < Rules and Connectors>>. For information on creating security rules, refer to {security-guide}/rules-ui-create.html[Create a detection rule]. +A rule is a set of <>, <>, and <> that enable notifications. {kib} provides rules built into the {stack} and rules registered by one of the {kib} apps. +You can create most rules types in < {rules-ui}>>. For information on creating security rules, refer to {security-guide}/rules-ui-create.html[Create a detection rule]. [NOTE] ============================================== @@ -37,9 +37,9 @@ see {subscriptions}[the subscription page]. [float] [[observability-rules]] -=== Observability rules +=== {observability} rules -Observability rules are categorized into APM and User Experience, Logs, Metrics, Stack Monitoring, and Uptime. +{observability} rules are categorized into APM and {user-experience}, Logs, Metrics, {stack-monitor-app}, and Uptime. [NOTE] ============================================== @@ -55,16 +55,16 @@ If you create a rule in the {observability} app, its alerts are not visible in | Detect complex conditions in *APM* data and trigger built-in actions when the conditions are met. | {observability-guide}/create-alerts.html[Logs rules] -| Detect complex conditions in the *Logs* app. +| Detect complex conditions in the {logs-app}. | {observability-guide}/create-alerts.html[Metrics rules] -| Detect complex conditions in the *Metrics* app. +| Detect complex conditions in the {metrics-app}. -| <> -| Provide {kib} Alerting rules out-of-the box to notify you of potential issues in the Elastic Stack. +| <> +| Provide {kib} alerting rules out-of-the box to notify you of potential issues in the {stack}. | {observability-guide}/create-alerts.html[Uptime rules] -| Detect complex conditions in the *Uptime* app. +| Detect complex conditions in the {uptime-app}. |=== @@ -87,5 +87,5 @@ they are not visible in *{stack-manage-app} > {rules-ui}*. ============================================== include::rule-types/index-threshold.asciidoc[] -include::rule-types/es-query.asciidoc[] +include::rule-types/es-query.asciidoc[leveloffset=+1] include::rule-types/geo-rule-types.asciidoc[] diff --git a/docs/user/alerting/rule-types/es-query.asciidoc b/docs/user/alerting/rule-types/es-query.asciidoc index 8556aa11d19db..715fabc6fdc38 100644 --- a/docs/user/alerting/rule-types/es-query.asciidoc +++ b/docs/user/alerting/rule-types/es-query.asciidoc @@ -1,6 +1,5 @@ [[rule-type-es-query]] -[role="xpack"] -=== {es} query +== {es} query The {es} query rule type runs a user-configured query, compares the number of matches to a configured threshold, and schedules actions to run when the @@ -8,14 +7,14 @@ threshold condition is met. [float] -==== Create the rule +=== Create the rule Fill in the <>, then select *{es} query*. [float] -==== Define the conditions +=== Define the conditions Define properties to detect the condition. @@ -38,11 +37,11 @@ Time window:: Defines how far back to search for documents, using the value higher than the *check every* value in the <>, to avoid gaps in detection. -Exclude the hits from previous run:: Turn on to avoid alert duplication by +Exclude matches from previous run:: Turn on to avoid alert duplication by excluding documents that have already been detected by the previous rule run. [float] -==== Add action variables +=== Add action variables <> to run when the rule condition is met. The following variables are specific to the {es} query rule. You can @@ -109,7 +108,7 @@ Labels: -- [float] -==== Test your query +=== Test your query Use the *Test query* feature to verify that your query DSL is valid. @@ -125,11 +124,12 @@ image::user/alerting/images/rule-types-es-query-valid.png[Test {es} query return image::user/alerting/images/rule-types-es-query-invalid.png[Test {es} query shows error when invalid] [float] -==== Handling multiple matches of the same document +=== Handling multiple matches of the same document -This rule type checks for duplication of document matches across multiple runs. -If you configure the rule with a schedule interval smaller than the time window, -and a document matches a query in multiple runs, it is alerted on only once. +By default, *Exclude matches from previous run* is turned on and the rule checks +for duplication of document matches across multiple runs. If you configure the +rule with a schedule interval smaller than the time window and a document +matches a query in multiple runs, it is alerted on only once. The rule uses the timestamp of the matches to avoid alerting on the same match multiple times. The timestamp of the latest match is used for evaluating the diff --git a/docs/user/alerting/troubleshooting/alerting-common-issues.asciidoc b/docs/user/alerting/troubleshooting/alerting-common-issues.asciidoc index 75a158e6d364f..e33641af8b7f0 100644 --- a/docs/user/alerting/troubleshooting/alerting-common-issues.asciidoc +++ b/docs/user/alerting/troubleshooting/alerting-common-issues.asciidoc @@ -72,7 +72,7 @@ By default, only users with a `superuser` role can query the experimental[] {kib *Solution* -By default, rules have a `5m` timeout. Rules that run longer than this timeout are automatically cancelled to prevent them from consuming too much of {kib}'s resources. Alerts and actions that may have been scheduled before the rule timed out are discarded. When a rule times out, you will see this error in the {kib} logs: +By default, rules have a `5m` timeout. Rules that run longer than this timeout are automatically canceled to prevent them from consuming too much of {kib}'s resources. Alerts and actions that may have been scheduled before the rule timed out are discarded. When a rule times out, you will see this error in the {kib} logs: [source,sh] -------------------------------------------------- @@ -243,7 +243,7 @@ Use the <> to retrieve additional information about r [float] [[rule-cannot-decrypt-api-key]] -==== Rule cannot decrypt apiKey +==== Rule cannot decrypt API key *Problem*: @@ -266,3 +266,23 @@ This error happens when the `xpack.encryptedSavedObjects.encryptionKey` value us | Generate a new API key for the rule by disabling then enabling the rule. |=== + +[float] +[[known-issue-upgrade-rule]] +==== Rules stop running after upgrade + +*Problem*: + +Alerting rules that were created or edited in 8.2 stop running after you upgrade +to later releases. The following error occurs: + +[source,text] +---- +:: execution failed - security_exception: [security_exception] Reason: missing authentication credentials for REST request [/_security/user/_has_privileges], caused by: "" +---- + +*Solution*: + +Upgrade to 8.3.2 or later releases, then go to *{stack-manage-app} > {rules-ui}* and multi-select the failed rules. Choose +**Manage rules > Update API Keys** to generate new API keys. For more details +about API key authorization, refer to <>. diff --git a/docs/user/alerting/troubleshooting/testing-connectors.asciidoc b/docs/user/alerting/troubleshooting/testing-connectors.asciidoc index fd5a897dfd4c3..4207a6af23239 100644 --- a/docs/user/alerting/troubleshooting/testing-connectors.asciidoc +++ b/docs/user/alerting/troubleshooting/testing-connectors.asciidoc @@ -3,7 +3,7 @@ === Test connectors -By using Kibana Management UI you can test a newly created Connector by navigating to the Test tab of Connector Edit flyout or by clicking "Save & test" button on Create flyout: +In *{stack-manage-app} > {rules-ui}*, you can test a newly created connector by navigating to the Test tab of Connector Edit flyout or by clicking "Save & test" button on Create flyout: [role="screenshot"] image::user/alerting/images/connector-save-and-test.png[Rule management page with the errors banner] diff --git a/docs/user/security/access-agreement.asciidoc b/docs/user/security/access-agreement.asciidoc index 9d9a0bb61a90b..03e5a312937a5 100644 --- a/docs/user/security/access-agreement.asciidoc +++ b/docs/user/security/access-agreement.asciidoc @@ -6,6 +6,9 @@ Access agreement is a https://www.elastic.co/subscriptions[subscription feature] agreement before accessing {kib}. The agreement text supports Markdown format and can be specified using the `xpack.security.authc.providers...accessAgreement.message` setting. +You can specify a default access agreement using the `xpack.security.accessAgreement.message` setting. +This message will be used for each provider who doesn't specify an access agreement. + [NOTE] ============================================================================ You need to acknowledge the access agreement only once per session, and {kib} reports the acknowledgement in the audit logs. diff --git a/examples/bfetch_explorer/public/components/page/index.tsx b/examples/bfetch_explorer/public/components/page/index.tsx index 7f9f6ee9be940..b4ce0806b1356 100644 --- a/examples/bfetch_explorer/public/components/page/index.tsx +++ b/examples/bfetch_explorer/public/components/page/index.tsx @@ -9,8 +9,8 @@ import * as React from 'react'; import { EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiPageHeader, EuiPageHeaderSection, EuiTitle, diff --git a/examples/bfetch_explorer/public/containers/app/sidebar/index.tsx b/examples/bfetch_explorer/public/containers/app/sidebar/index.tsx index 7bb2a5737c4ac..fe0902f88f321 100644 --- a/examples/bfetch_explorer/public/containers/app/sidebar/index.tsx +++ b/examples/bfetch_explorer/public/containers/app/sidebar/index.tsx @@ -7,7 +7,7 @@ */ import React from 'react'; -import { EuiPageSideBar, EuiSideNav } from '@elastic/eui'; +import { EuiPageSideBar_Deprecated as EuiPageSideBar, EuiSideNav } from '@elastic/eui'; import { useHistory } from 'react-router-dom'; import { routes } from '../../../routes'; diff --git a/examples/dashboard_embeddable_examples/public/app.tsx b/examples/dashboard_embeddable_examples/public/app.tsx index 69d4668d829d7..531a78a35999c 100644 --- a/examples/dashboard_embeddable_examples/public/app.tsx +++ b/examples/dashboard_embeddable_examples/public/app.tsx @@ -12,9 +12,9 @@ import { BrowserRouter as Router, Route, RouteComponentProps, withRouter } from import { EuiPage, - EuiPageContent, - EuiPageContentBody, - EuiPageSideBar, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, + EuiPageSideBar_Deprecated as EuiPageSideBar, EuiSideNav, } from '@elastic/eui'; import 'brace/mode/json'; diff --git a/examples/data_view_field_editor_example/public/app.tsx b/examples/data_view_field_editor_example/public/app.tsx index 846ff0b290fb4..9fae5797c8d61 100644 --- a/examples/data_view_field_editor_example/public/app.tsx +++ b/examples/data_view_field_editor_example/public/app.tsx @@ -15,8 +15,8 @@ import { EuiInMemoryTable, EuiPage, EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiPageHeader, EuiText, useGeneratedHtmlId, diff --git a/examples/developer_examples/public/app.tsx b/examples/developer_examples/public/app.tsx index a179ebb6abb6a..15fa925a0f56b 100644 --- a/examples/developer_examples/public/app.tsx +++ b/examples/developer_examples/public/app.tsx @@ -11,9 +11,9 @@ import ReactDOM from 'react-dom'; import { EuiText, - EuiPageContent, + EuiPageContent_Deprecated as EuiPageContent, EuiCard, - EuiPageContentHeader, + EuiPageContentHeader_Deprecated as EuiPageContentHeader, EuiFlexGroup, EuiFlexItem, EuiFieldSearch, diff --git a/examples/embeddable_explorer/public/app.tsx b/examples/embeddable_explorer/public/app.tsx index ad7eb76188b54..e37765b007ee3 100644 --- a/examples/embeddable_explorer/public/app.tsx +++ b/examples/embeddable_explorer/public/app.tsx @@ -10,7 +10,7 @@ import React from 'react'; import ReactDOM from 'react-dom'; import { BrowserRouter as Router, Route, withRouter, RouteComponentProps } from 'react-router-dom'; -import { EuiPage, EuiPageSideBar, EuiSideNav } from '@elastic/eui'; +import { EuiPage, EuiPageSideBar_Deprecated as EuiPageSideBar, EuiSideNav } from '@elastic/eui'; import { EmbeddableStart } from '@kbn/embeddable-plugin/public'; import { UiActionsStart } from '@kbn/ui-actions-plugin/public'; diff --git a/examples/embeddable_explorer/public/embeddable_panel_example.tsx b/examples/embeddable_explorer/public/embeddable_panel_example.tsx index 50c941938cb74..e656bb8958aaf 100644 --- a/examples/embeddable_explorer/public/embeddable_panel_example.tsx +++ b/examples/embeddable_explorer/public/embeddable_panel_example.tsx @@ -10,8 +10,8 @@ import React, { useState, useEffect, useRef } from 'react'; import { EuiPanel, EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiPageHeader, EuiPageHeaderSection, EuiTitle, diff --git a/examples/embeddable_explorer/public/hello_world_embeddable_example.tsx b/examples/embeddable_explorer/public/hello_world_embeddable_example.tsx index 228dd0b9c14e7..4df857fa80c0e 100644 --- a/examples/embeddable_explorer/public/hello_world_embeddable_example.tsx +++ b/examples/embeddable_explorer/public/hello_world_embeddable_example.tsx @@ -9,8 +9,8 @@ import React from 'react'; import { EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiPageHeader, EuiPageHeaderSection, EuiPanel, diff --git a/examples/embeddable_explorer/public/list_container_example.tsx b/examples/embeddable_explorer/public/list_container_example.tsx index 764f02b28e14c..f04bf8a5dfa25 100644 --- a/examples/embeddable_explorer/public/list_container_example.tsx +++ b/examples/embeddable_explorer/public/list_container_example.tsx @@ -9,8 +9,8 @@ import React from 'react'; import { EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiPageHeader, EuiPageHeaderSection, EuiPanel, diff --git a/examples/embeddable_explorer/public/todo_embeddable_example.tsx b/examples/embeddable_explorer/public/todo_embeddable_example.tsx index 0710f5b0d082e..5bf05bdc97d5d 100644 --- a/examples/embeddable_explorer/public/todo_embeddable_example.tsx +++ b/examples/embeddable_explorer/public/todo_embeddable_example.tsx @@ -14,8 +14,8 @@ import { EuiFlexItem, EuiFormRow, EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiPageHeader, EuiPageHeaderSection, EuiPanel, diff --git a/examples/expressions_explorer/public/actions_and_expressions.tsx b/examples/expressions_explorer/public/actions_and_expressions.tsx index a42a7d3b31f10..d7322cd34e236 100644 --- a/examples/expressions_explorer/public/actions_and_expressions.tsx +++ b/examples/expressions_explorer/public/actions_and_expressions.tsx @@ -11,8 +11,8 @@ import { EuiFlexItem, EuiFlexGroup, EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiPageHeader, EuiPageHeaderSection, EuiPanel, diff --git a/examples/expressions_explorer/public/actions_and_expressions2.tsx b/examples/expressions_explorer/public/actions_and_expressions2.tsx index 9745fbbb3241b..10a3c7a679195 100644 --- a/examples/expressions_explorer/public/actions_and_expressions2.tsx +++ b/examples/expressions_explorer/public/actions_and_expressions2.tsx @@ -11,8 +11,8 @@ import { EuiFlexItem, EuiFlexGroup, EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiPageHeader, EuiPageHeaderSection, EuiPanel, diff --git a/examples/expressions_explorer/public/app.tsx b/examples/expressions_explorer/public/app.tsx index 0ff1ae36f7a9b..6b36d7cba036b 100644 --- a/examples/expressions_explorer/public/app.tsx +++ b/examples/expressions_explorer/public/app.tsx @@ -12,8 +12,8 @@ import { EuiPage, EuiPageHeader, EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiSpacer, EuiText, EuiLink, diff --git a/examples/expressions_explorer/public/render_expressions.tsx b/examples/expressions_explorer/public/render_expressions.tsx index c0301a3f07281..768aaff133686 100644 --- a/examples/expressions_explorer/public/render_expressions.tsx +++ b/examples/expressions_explorer/public/render_expressions.tsx @@ -11,8 +11,8 @@ import { EuiFlexItem, EuiFlexGroup, EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiPageHeader, EuiPageHeaderSection, EuiPanel, diff --git a/examples/expressions_explorer/public/run_expressions.tsx b/examples/expressions_explorer/public/run_expressions.tsx index 6e29f3fbad3ba..0b0558568522e 100644 --- a/examples/expressions_explorer/public/run_expressions.tsx +++ b/examples/expressions_explorer/public/run_expressions.tsx @@ -13,8 +13,8 @@ import { EuiFlexItem, EuiFlexGroup, EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiPageHeader, EuiPageHeaderSection, EuiPanel, diff --git a/examples/field_formats_example/public/app.tsx b/examples/field_formats_example/public/app.tsx index 4b9cffeec1862..a354a767d7df7 100644 --- a/examples/field_formats_example/public/app.tsx +++ b/examples/field_formats_example/public/app.tsx @@ -15,8 +15,8 @@ import { EuiLink, EuiPage, EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiPageHeader, EuiPageHeaderSection, EuiSpacer, diff --git a/examples/locator_examples/public/app.tsx b/examples/locator_examples/public/app.tsx index c874319de8120..048da396833bf 100644 --- a/examples/locator_examples/public/app.tsx +++ b/examples/locator_examples/public/app.tsx @@ -10,8 +10,8 @@ import React from 'react'; import ReactDOM from 'react-dom'; import { EuiPageBody } from '@elastic/eui'; -import { EuiPageContent } from '@elastic/eui'; -import { EuiPageContentBody } from '@elastic/eui'; +import { EuiPageContent_Deprecated as EuiPageContent } from '@elastic/eui'; +import { EuiPageContentBody_Deprecated as EuiPageContentBody } from '@elastic/eui'; import { Route, Switch, Redirect, Router, useLocation } from 'react-router-dom'; import { createBrowserHistory } from 'history'; import { EuiText } from '@elastic/eui'; diff --git a/examples/locator_explorer/public/app.tsx b/examples/locator_explorer/public/app.tsx index 951320ba83a5c..66bb295891fd6 100644 --- a/examples/locator_explorer/public/app.tsx +++ b/examples/locator_explorer/public/app.tsx @@ -11,8 +11,8 @@ import ReactDOM from 'react-dom'; import { EuiPage } from '@elastic/eui'; import { EuiButton } from '@elastic/eui'; import { EuiPageBody } from '@elastic/eui'; -import { EuiPageContent } from '@elastic/eui'; -import { EuiPageContentBody } from '@elastic/eui'; +import { EuiPageContent_Deprecated as EuiPageContent } from '@elastic/eui'; +import { EuiPageContentBody_Deprecated as EuiPageContentBody } from '@elastic/eui'; import { EuiSpacer } from '@elastic/eui'; import { EuiText } from '@elastic/eui'; import { EuiFieldText } from '@elastic/eui'; diff --git a/examples/locator_explorer/public/page.tsx b/examples/locator_explorer/public/page.tsx index cc7aead1c9cfc..05d64781c2ea3 100644 --- a/examples/locator_explorer/public/page.tsx +++ b/examples/locator_explorer/public/page.tsx @@ -10,8 +10,8 @@ import React from 'react'; import { EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiPageHeader, EuiPageHeaderSection, EuiTitle, diff --git a/examples/partial_results_example/public/app/app.tsx b/examples/partial_results_example/public/app/app.tsx index 1f71a398ddb7f..8988b631a8e94 100644 --- a/examples/partial_results_example/public/app/app.tsx +++ b/examples/partial_results_example/public/app/app.tsx @@ -14,8 +14,8 @@ import { EuiCodeBlock, EuiPage, EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiPageHeader, EuiPageHeaderSection, EuiSpacer, diff --git a/examples/preboot_example/public/app.tsx b/examples/preboot_example/public/app.tsx index 095b8af4fef82..10d5cfd57a06e 100644 --- a/examples/preboot_example/public/app.tsx +++ b/examples/preboot_example/public/app.tsx @@ -12,7 +12,7 @@ import { EuiFieldText, EuiFlexGroup, EuiFlexItem, - EuiPageTemplate, + EuiPageTemplate_Deprecated as EuiPageTemplate, EuiPanel, EuiText, } from '@elastic/eui'; diff --git a/examples/response_stream/public/components/page.tsx b/examples/response_stream/public/components/page.tsx index 86267a97a441d..15455d58d54e1 100644 --- a/examples/response_stream/public/components/page.tsx +++ b/examples/response_stream/public/components/page.tsx @@ -10,8 +10,8 @@ import * as React from 'react'; import { EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiPageHeader, EuiPageHeaderSection, EuiTitle, diff --git a/examples/response_stream/public/containers/app/sidebar.tsx b/examples/response_stream/public/containers/app/sidebar.tsx index 28783a8704c6d..eb29ace491376 100644 --- a/examples/response_stream/public/containers/app/sidebar.tsx +++ b/examples/response_stream/public/containers/app/sidebar.tsx @@ -7,7 +7,7 @@ */ import React from 'react'; -import { EuiPageSideBar, EuiSideNav } from '@elastic/eui'; +import { EuiPageSideBar_Deprecated as EuiPageSideBar, EuiSideNav } from '@elastic/eui'; import { useHistory } from 'react-router-dom'; import { routes } from '../../routes'; diff --git a/examples/routing_example/public/app.tsx b/examples/routing_example/public/app.tsx index 37b6d18a4e669..51389ae913424 100644 --- a/examples/routing_example/public/app.tsx +++ b/examples/routing_example/public/app.tsx @@ -12,10 +12,10 @@ import { AppMountParameters } from '@kbn/core/public'; import { EuiPage, EuiPageBody, - EuiPageContent, + EuiPageContent_Deprecated as EuiPageContent, EuiText, EuiHorizontalRule, - EuiPageContentHeader, + EuiPageContentHeader_Deprecated as EuiPageContentHeader, EuiListGroup, } from '@elastic/eui'; import { RandomNumberRouteExample } from './random_number_example'; diff --git a/examples/screenshot_mode_example/public/components/app.tsx b/examples/screenshot_mode_example/public/components/app.tsx index ed4475a9a90b5..be4a193f2ddba 100644 --- a/examples/screenshot_mode_example/public/components/app.tsx +++ b/examples/screenshot_mode_example/public/components/app.tsx @@ -13,9 +13,9 @@ import { FormattedMessage, I18nProvider } from '@kbn/i18n-react'; import { EuiPage, EuiPageBody, - EuiPageContent, - EuiPageContentBody, - EuiPageContentHeader, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, + EuiPageContentHeader_Deprecated as EuiPageContentHeader, EuiPageHeader, EuiTitle, EuiText, diff --git a/examples/search_examples/public/common/example_page.tsx b/examples/search_examples/public/common/example_page.tsx index 502d6545be76c..15def7e18c5bc 100644 --- a/examples/search_examples/public/common/example_page.tsx +++ b/examples/search_examples/public/common/example_page.tsx @@ -7,7 +7,7 @@ */ import React, { PropsWithChildren } from 'react'; -import { EuiPage, EuiPageSideBar, EuiSideNav } from '@elastic/eui'; +import { EuiPage, EuiPageSideBar_Deprecated as EuiPageSideBar, EuiSideNav } from '@elastic/eui'; import { IBasePath } from '@kbn/core/public'; import { PLUGIN_ID } from '../../common'; diff --git a/examples/search_examples/public/search/app.tsx b/examples/search_examples/public/search/app.tsx index b668630bc05ba..94cf19436c3f5 100644 --- a/examples/search_examples/public/search/app.tsx +++ b/examples/search_examples/public/search/app.tsx @@ -18,8 +18,8 @@ import { EuiFormLabel, EuiHorizontalRule, EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiPageHeader, EuiProgress, EuiSpacer, diff --git a/examples/search_examples/public/search_sessions/app.tsx b/examples/search_examples/public/search_sessions/app.tsx index 63657765af8b4..b9aa8e6fe961a 100644 --- a/examples/search_examples/public/search_sessions/app.tsx +++ b/examples/search_examples/public/search_sessions/app.tsx @@ -21,8 +21,8 @@ import { EuiFormLabel, EuiLoadingSpinner, EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiPageHeader, EuiPageHeaderSection, EuiSpacer, diff --git a/examples/search_examples/public/sql_search/app.tsx b/examples/search_examples/public/sql_search/app.tsx index b63425bbe2679..cd0db29db8a81 100644 --- a/examples/search_examples/public/sql_search/app.tsx +++ b/examples/search_examples/public/sql_search/app.tsx @@ -14,8 +14,8 @@ import { EuiFlexItem, EuiForm, EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiPageHeader, EuiPanel, EuiSuperUpdateButton, diff --git a/examples/state_containers_examples/public/common/example_page.tsx b/examples/state_containers_examples/public/common/example_page.tsx index 91107066e3bc6..ab1141fd96e6c 100644 --- a/examples/state_containers_examples/public/common/example_page.tsx +++ b/examples/state_containers_examples/public/common/example_page.tsx @@ -7,7 +7,7 @@ */ import React, { PropsWithChildren } from 'react'; -import { EuiPage, EuiPageSideBar, EuiSideNav } from '@elastic/eui'; +import { EuiPage, EuiPageSideBar_Deprecated as EuiPageSideBar, EuiSideNav } from '@elastic/eui'; import { CoreStart } from '@kbn/core/public'; export interface ExampleLink { diff --git a/examples/state_containers_examples/public/todo/todo.tsx b/examples/state_containers_examples/public/todo/todo.tsx index 1a4e85fbb0928..a02e27d91c4ad 100644 --- a/examples/state_containers_examples/public/todo/todo.tsx +++ b/examples/state_containers_examples/public/todo/todo.tsx @@ -14,8 +14,8 @@ import { EuiCheckbox, EuiFieldText, EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiPageHeader, EuiPageHeaderSection, EuiSpacer, diff --git a/examples/state_containers_examples/public/with_data_services/app.tsx b/examples/state_containers_examples/public/with_data_services/app.tsx index 04d41cb6aa6a5..7a3520ff333d1 100644 --- a/examples/state_containers_examples/public/with_data_services/app.tsx +++ b/examples/state_containers_examples/public/with_data_services/app.tsx @@ -13,7 +13,7 @@ import { Router } from 'react-router-dom'; import { EuiFieldText, EuiPageBody, - EuiPageContent, + EuiPageContent_Deprecated as EuiPageContent, EuiPageHeader, EuiText, EuiTitle, diff --git a/examples/ui_actions_explorer/public/app.tsx b/examples/ui_actions_explorer/public/app.tsx index f1f0bcb314c27..b467c4c47d585 100644 --- a/examples/ui_actions_explorer/public/app.tsx +++ b/examples/ui_actions_explorer/public/app.tsx @@ -13,8 +13,8 @@ import { EuiPage } from '@elastic/eui'; import { EuiButton } from '@elastic/eui'; import { EuiPageBody } from '@elastic/eui'; -import { EuiPageContent } from '@elastic/eui'; -import { EuiPageContentBody } from '@elastic/eui'; +import { EuiPageContent_Deprecated as EuiPageContent } from '@elastic/eui'; +import { EuiPageContentBody_Deprecated as EuiPageContentBody } from '@elastic/eui'; import { EuiSpacer } from '@elastic/eui'; import { EuiText } from '@elastic/eui'; import { EuiFieldText } from '@elastic/eui'; diff --git a/examples/ui_actions_explorer/public/page.tsx b/examples/ui_actions_explorer/public/page.tsx index cc7aead1c9cfc..05d64781c2ea3 100644 --- a/examples/ui_actions_explorer/public/page.tsx +++ b/examples/ui_actions_explorer/public/page.tsx @@ -10,8 +10,8 @@ import React from 'react'; import { EuiPageBody, - EuiPageContent, - EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, EuiPageHeader, EuiPageHeaderSection, EuiTitle, diff --git a/examples/user_profile_examples/public/plugin.tsx b/examples/user_profile_examples/public/plugin.tsx index 4a273dc097291..e821ebebcd7d9 100755 --- a/examples/user_profile_examples/public/plugin.tsx +++ b/examples/user_profile_examples/public/plugin.tsx @@ -10,7 +10,7 @@ import ReactDOM from 'react-dom'; import { AppMountParameters, CoreSetup, CoreStart, Plugin } from '@kbn/core/public'; import { DeveloperExamplesSetup } from '@kbn/developer-examples-plugin/public'; import { SecurityPluginSetup, SecurityPluginStart } from '@kbn/security-plugin/public'; -import { EuiPageTemplate } from '@elastic/eui'; +import { KibanaPageTemplate } from '@kbn/shared-ux-page-kibana-template'; import { AvatarDemo } from './avatar_demo'; import { PopoverDemo } from './popover_demo'; import { SelectableDemo } from './selectable_demo'; @@ -38,7 +38,7 @@ export class UserProfilesPlugin implements Plugin - , + , element ); return () => ReactDOM.unmountComponentAtNode(element); diff --git a/nav-kibana-dev.docnav.json b/nav-kibana-dev.docnav.json index 40c4858d89f7d..b9fd0eef45c10 100644 --- a/nav-kibana-dev.docnav.json +++ b/nav-kibana-dev.docnav.json @@ -171,6 +171,9 @@ { "label": "Contributors Newsletters", "items": [ + { + "id": "kibAugust2022ContributorNewsletter" + }, { "id": "kibJuly2022ContributorNewsletter" }, diff --git a/package.json b/package.json index 7a59e569a7b4d..92dc1590d9a51 100644 --- a/package.json +++ b/package.json @@ -105,11 +105,11 @@ "@dnd-kit/utilities": "^2.0.0", "@elastic/apm-rum": "^5.12.0", "@elastic/apm-rum-react": "^1.4.2", - "@elastic/charts": "47.2.1", + "@elastic/charts": "48.0.0", "@elastic/datemath": "5.0.3", "@elastic/elasticsearch": "npm:@elastic/elasticsearch-canary@8.3.0-canary.1", "@elastic/ems-client": "8.3.3", - "@elastic/eui": "62.2.4", + "@elastic/eui": "63.0.6", "@elastic/filesaver": "1.1.2", "@elastic/node-crypto": "1.2.1", "@elastic/numeral": "^2.5.1", @@ -250,6 +250,8 @@ "@kbn/core-preboot-server": "link:bazel-bin/packages/core/preboot/core-preboot-server", "@kbn/core-preboot-server-internal": "link:bazel-bin/packages/core/preboot/core-preboot-server-internal", "@kbn/core-preboot-server-mocks": "link:bazel-bin/packages/core/preboot/core-preboot-server-mocks", + "@kbn/core-rendering-browser-internal": "link:bazel-bin/packages/core/rendering/core-rendering-browser-internal", + "@kbn/core-rendering-browser-mocks": "link:bazel-bin/packages/core/rendering/core-rendering-browser-mocks", "@kbn/core-saved-objects-api-browser": "link:bazel-bin/packages/core/saved-objects/core-saved-objects-api-browser", "@kbn/core-saved-objects-api-server": "link:bazel-bin/packages/core/saved-objects/core-saved-objects-api-server", "@kbn/core-saved-objects-api-server-internal": "link:bazel-bin/packages/core/saved-objects/core-saved-objects-api-server-internal", @@ -444,6 +446,7 @@ "deep-freeze-strict": "^1.1.1", "deepmerge": "^4.2.2", "del": "^6.1.0", + "elastic-apm-http-client": "^11.0.1", "elastic-apm-node": "^3.38.0", "email-addresses": "^5.0.0", "execa": "^4.0.2", @@ -934,6 +937,8 @@ "@types/kbn__core-preboot-server-internal": "link:bazel-bin/packages/core/preboot/core-preboot-server-internal/npm_module_types", "@types/kbn__core-preboot-server-mocks": "link:bazel-bin/packages/core/preboot/core-preboot-server-mocks/npm_module_types", "@types/kbn__core-public-internal-base": "link:bazel-bin/packages/core/public/internal-base/npm_module_types", + "@types/kbn__core-rendering-browser-internal": "link:bazel-bin/packages/core/rendering/core-rendering-browser-internal/npm_module_types", + "@types/kbn__core-rendering-browser-mocks": "link:bazel-bin/packages/core/rendering/core-rendering-browser-mocks/npm_module_types", "@types/kbn__core-saved-objects-api-browser": "link:bazel-bin/packages/core/saved-objects/core-saved-objects-api-browser/npm_module_types", "@types/kbn__core-saved-objects-api-server": "link:bazel-bin/packages/core/saved-objects/core-saved-objects-api-server/npm_module_types", "@types/kbn__core-saved-objects-api-server-internal": "link:bazel-bin/packages/core/saved-objects/core-saved-objects-api-server-internal/npm_module_types", diff --git a/packages/BUILD.bazel b/packages/BUILD.bazel index 79c8384b9fdaf..b5bd2f384d76b 100644 --- a/packages/BUILD.bazel +++ b/packages/BUILD.bazel @@ -115,6 +115,8 @@ filegroup( "//packages/core/preboot/core-preboot-server:build", "//packages/core/preboot/core-preboot-server-internal:build", "//packages/core/preboot/core-preboot-server-mocks:build", + "//packages/core/rendering/core-rendering-browser-internal:build", + "//packages/core/rendering/core-rendering-browser-mocks:build", "//packages/core/saved-objects/core-saved-objects-api-browser:build", "//packages/core/saved-objects/core-saved-objects-api-server:build", "//packages/core/saved-objects/core-saved-objects-api-server-internal:build", @@ -418,6 +420,8 @@ filegroup( "//packages/core/preboot/core-preboot-server:build_types", "//packages/core/preboot/core-preboot-server-internal:build_types", "//packages/core/preboot/core-preboot-server-mocks:build_types", + "//packages/core/rendering/core-rendering-browser-internal:build_types", + "//packages/core/rendering/core-rendering-browser-mocks:build_types", "//packages/core/saved-objects/core-saved-objects-api-browser:build_types", "//packages/core/saved-objects/core-saved-objects-api-server:build_types", "//packages/core/saved-objects/core-saved-objects-api-server-internal:build_types", diff --git a/packages/analytics/client/src/analytics_client/types.ts b/packages/analytics/client/src/analytics_client/types.ts index 2af29d88b5ceb..9a25f821b70a3 100644 --- a/packages/analytics/client/src/analytics_client/types.ts +++ b/packages/analytics/client/src/analytics_client/types.ts @@ -169,6 +169,8 @@ export interface IAnalyticsClient { * Reports a telemetry event. * @param eventType The event type registered via the `registerEventType` API. * @param eventData The properties matching the schema declared in the `registerEventType` API. + * + * @track-adoption */ reportEvent: ( eventType: EventType, @@ -198,8 +200,10 @@ export interface IAnalyticsClient { */ optIn: (optInConfig: OptInConfig) => void; /** - * Registers the context provider to enrich the any reported events. + * Registers the context provider to enrich any reported events. * @param contextProviderOpts {@link ContextProviderOpts} + * + * @track-adoption */ registerContextProvider: (contextProviderOpts: ContextProviderOpts) => void; /** diff --git a/packages/core/application/core-application-browser-internal/src/ui/app_not_found_screen.tsx b/packages/core/application/core-application-browser-internal/src/ui/app_not_found_screen.tsx index b0f71d69e31e2..924f59d973878 100644 --- a/packages/core/application/core-application-browser-internal/src/ui/app_not_found_screen.tsx +++ b/packages/core/application/core-application-browser-internal/src/ui/app_not_found_screen.tsx @@ -6,7 +6,12 @@ * Side Public License, v 1. */ -import { EuiEmptyPrompt, EuiPage, EuiPageBody, EuiPageContent } from '@elastic/eui'; +import { + EuiEmptyPrompt, + EuiPage, + EuiPageBody, + EuiPageContent_Deprecated as EuiPageContent, +} from '@elastic/eui'; import React from 'react'; import { FormattedMessage } from '@kbn/i18n-react'; diff --git a/packages/core/chrome/core-chrome-browser-internal/src/chrome_service.tsx b/packages/core/chrome/core-chrome-browser-internal/src/chrome_service.tsx index 5a4183eb88fc9..3c4b42cddfae7 100644 --- a/packages/core/chrome/core-chrome-browser-internal/src/chrome_service.tsx +++ b/packages/core/chrome/core-chrome-browser-internal/src/chrome_service.tsx @@ -223,6 +223,7 @@ export class ChromeService { navControlsLeft$={navControls.getLeft$()} navControlsCenter$={navControls.getCenter$()} navControlsRight$={navControls.getRight$()} + navControlsExtension$={navControls.getExtension$()} onIsLockedUpdate={setIsNavDrawerLocked} isLocked$={getIsNavDrawerLocked$} /> diff --git a/packages/core/chrome/core-chrome-browser-internal/src/nav_controls/nav_controls_service.ts b/packages/core/chrome/core-chrome-browser-internal/src/nav_controls/nav_controls_service.ts index b38cfb76cb3be..36f448b187e13 100644 --- a/packages/core/chrome/core-chrome-browser-internal/src/nav_controls/nav_controls_service.ts +++ b/packages/core/chrome/core-chrome-browser-internal/src/nav_controls/nav_controls_service.ts @@ -19,6 +19,7 @@ export class NavControlsService { const navControlsLeft$ = new BehaviorSubject>(new Set()); const navControlsRight$ = new BehaviorSubject>(new Set()); const navControlsCenter$ = new BehaviorSubject>(new Set()); + const navControlsExtension$ = new BehaviorSubject>(new Set()); return { // In the future, registration should be moved to the setup phase. This @@ -32,6 +33,9 @@ export class NavControlsService { registerCenter: (navControl: ChromeNavControl) => navControlsCenter$.next(new Set([...navControlsCenter$.value.values(), navControl])), + registerExtension: (navControl: ChromeNavControl) => + navControlsExtension$.next(new Set([...navControlsExtension$.value.values(), navControl])), + getLeft$: () => navControlsLeft$.pipe( map((controls) => sortBy([...controls.values()], 'order')), @@ -47,6 +51,11 @@ export class NavControlsService { map((controls) => sortBy([...controls.values()], 'order')), takeUntil(this.stop$) ), + getExtension$: () => + navControlsExtension$.pipe( + map((controls) => sortBy([...controls.values()], 'order')), + takeUntil(this.stop$) + ), }; } diff --git a/packages/core/chrome/core-chrome-browser-internal/src/ui/header/__snapshots__/header.test.tsx.snap b/packages/core/chrome/core-chrome-browser-internal/src/ui/header/__snapshots__/header.test.tsx.snap index d00e26bfcfe99..2a42112f30a81 100644 --- a/packages/core/chrome/core-chrome-browser-internal/src/ui/header/__snapshots__/header.test.tsx.snap +++ b/packages/core/chrome/core-chrome-browser-internal/src/ui/header/__snapshots__/header.test.tsx.snap @@ -65,6 +65,9 @@ exports[`Header renders 1`] = `
+
diff --git a/packages/core/chrome/core-chrome-browser-internal/src/ui/header/header.test.tsx b/packages/core/chrome/core-chrome-browser-internal/src/ui/header/header.test.tsx index ac317b1262f55..58ac26174f205 100644 --- a/packages/core/chrome/core-chrome-browser-internal/src/ui/header/header.test.tsx +++ b/packages/core/chrome/core-chrome-browser-internal/src/ui/header/header.test.tsx @@ -38,6 +38,7 @@ function mockProps() { navControlsLeft$: new BehaviorSubject([]), navControlsCenter$: new BehaviorSubject([]), navControlsRight$: new BehaviorSubject([]), + navControlsExtension$: new BehaviorSubject([]), basePath: http.basePath, isLocked$: new BehaviorSubject(false), loadingCount$: new BehaviorSubject(0), diff --git a/packages/core/chrome/core-chrome-browser-internal/src/ui/header/header.tsx b/packages/core/chrome/core-chrome-browser-internal/src/ui/header/header.tsx index 94933dcbcf3ff..5ff0989f16485 100644 --- a/packages/core/chrome/core-chrome-browser-internal/src/ui/header/header.tsx +++ b/packages/core/chrome/core-chrome-browser-internal/src/ui/header/header.tsx @@ -65,6 +65,7 @@ export interface HeaderProps { navControlsLeft$: Observable; navControlsCenter$: Observable; navControlsRight$: Observable; + navControlsExtension$: Observable; basePath: HttpStart['basePath']; isLocked$: Observable; loadingCount$: ReturnType; @@ -135,7 +136,13 @@ export function Header({ { items: [ - + <> + + + + , + + , { registerLeft: jest.fn(), registerCenter: jest.fn(), registerRight: jest.fn(), + registerExtension: jest.fn(), getLeft$: jest.fn(), getCenter$: jest.fn(), getRight$: jest.fn(), + getExtension$: jest.fn(), }, setIsVisible: jest.fn(), getIsVisible$: jest.fn(), diff --git a/packages/core/chrome/core-chrome-browser/src/nav_controls.ts b/packages/core/chrome/core-chrome-browser/src/nav_controls.ts index 354bd796c4af1..44529b1edf122 100644 --- a/packages/core/chrome/core-chrome-browser/src/nav_controls.ts +++ b/packages/core/chrome/core-chrome-browser/src/nav_controls.ts @@ -41,6 +41,9 @@ export interface ChromeNavControls { /** Register a nav control to be presented on the top-center side of the chrome header. */ registerCenter(navControl: ChromeNavControl): void; + /** Register an extension to be presented to the left of the top-right side of the chrome header. */ + registerExtension(navControl: ChromeNavControl): void; + /** @internal */ getLeft$(): Observable; @@ -49,4 +52,7 @@ export interface ChromeNavControls { /** @internal */ getCenter$(): Observable; + + /** @internal */ + getExtension$(): Observable; } diff --git a/packages/core/fatal-errors/core-fatal-errors-browser-internal/src/__snapshots__/fatal_errors_screen.test.tsx.snap b/packages/core/fatal-errors/core-fatal-errors-browser-internal/src/__snapshots__/fatal_errors_screen.test.tsx.snap index 7b7debc128fb1..93ee3f89667ca 100644 --- a/packages/core/fatal-errors/core-fatal-errors-browser-internal/src/__snapshots__/fatal_errors_screen.test.tsx.snap +++ b/packages/core/fatal-errors/core-fatal-errors-browser-internal/src/__snapshots__/fatal_errors_screen.test.tsx.snap @@ -9,7 +9,7 @@ exports[`FatalErrorsScreen rendering render matches snapshot 1`] = ` } > - @@ -93,7 +93,7 @@ Error: bar stack...bar.js:1:1 - + `; diff --git a/packages/core/fatal-errors/core-fatal-errors-browser-internal/src/fatal_errors_screen.tsx b/packages/core/fatal-errors/core-fatal-errors-browser-internal/src/fatal_errors_screen.tsx index 6fbf6ab80aebb..bdcb6334eb48e 100644 --- a/packages/core/fatal-errors/core-fatal-errors-browser-internal/src/fatal_errors_screen.tsx +++ b/packages/core/fatal-errors/core-fatal-errors-browser-internal/src/fatal_errors_screen.tsx @@ -14,7 +14,7 @@ import { EuiEmptyPrompt, EuiPage, EuiPageBody, - EuiPageContent, + EuiPageContent_Deprecated as EuiPageContent, } from '@elastic/eui'; import React from 'react'; import { Observable, Subscription, merge, tap, fromEvent } from 'rxjs'; diff --git a/packages/core/rendering/core-rendering-browser-internal/BUILD.bazel b/packages/core/rendering/core-rendering-browser-internal/BUILD.bazel new file mode 100644 index 0000000000000..e9f1ff1b1e19d --- /dev/null +++ b/packages/core/rendering/core-rendering-browser-internal/BUILD.bazel @@ -0,0 +1,138 @@ +load("@npm//@bazel/typescript:index.bzl", "ts_config") +load("@build_bazel_rules_nodejs//:index.bzl", "js_library") +load("//src/dev/bazel:index.bzl", "jsts_transpiler", "pkg_npm", "pkg_npm_types", "ts_project") + +PKG_DIRNAME = "core-rendering-browser-internal" +PKG_REQUIRE_NAME = "@kbn/core-rendering-browser-internal" + +SOURCE_FILES = glob( + [ + "**/*.ts", + "**/*.tsx", + ], + exclude = [ + "**/*.config.js", + "**/*.mock.*", + "**/*.test.*", + "**/*.stories.*", + "**/__snapshots__/**", + "**/integration_tests/**", + "**/mocks/**", + "**/scripts/**", + "**/storybook/**", + "**/test_fixtures/**", + "**/test_helpers/**", + ], +) + +SRCS = SOURCE_FILES + +filegroup( + name = "srcs", + srcs = SRCS, +) + +NPM_MODULE_EXTRA_FILES = [ + "package.json", +] + +RUNTIME_DEPS = [ + "@npm//react", + "@npm//react-dom", + "@npm//rxjs", + "@npm//classnames", + "@npm//react-use", + "//packages/core/application/core-application-common", + "//packages/core/theme/core-theme-browser-internal", + ### test dependencies + "//packages/core/application/core-application-browser-mocks", + "//packages/core/chrome/core-chrome-browser-mocks", + "//packages/core/overlays/core-overlays-browser-mocks", + "//packages/core/theme/core-theme-browser-mocks", + "//packages/core/i18n/core-i18n-browser-mocks", +] + +TYPES_DEPS = [ + "@npm//@types/node", + "@npm//@types/jest", + "@npm//@types/react", + "@npm//@types/classnames", + "@npm//@types/react-dom", + "@npm//rxjs", + "@npm//react-use", + "//packages/core/application/core-application-common:npm_module_types", + "//packages/core/application/core-application-browser-internal:npm_module_types", + "//packages/core/theme/core-theme-browser:npm_module_types", + "//packages/core/theme/core-theme-browser-internal:npm_module_types", + "//packages/core/i18n/core-i18n-browser:npm_module_types", + "//packages/core/overlays/core-overlays-browser:npm_module_types", + "//packages/core/chrome/core-chrome-browser-internal:npm_module_types", +] + +jsts_transpiler( + name = "target_node", + srcs = SRCS, + build_pkg_name = package_name(), +) + +jsts_transpiler( + name = "target_web", + srcs = SRCS, + build_pkg_name = package_name(), + web = True, +) + +ts_config( + name = "tsconfig", + src = "tsconfig.json", + deps = [ + "//:tsconfig.base.json", + "//:tsconfig.bazel.json", + ], +) + +ts_project( + name = "tsc_types", + args = ['--pretty'], + srcs = SRCS, + deps = TYPES_DEPS, + declaration = True, + declaration_map = True, + emit_declaration_only = True, + out_dir = "target_types", + tsconfig = ":tsconfig", +) + +js_library( + name = PKG_DIRNAME, + srcs = NPM_MODULE_EXTRA_FILES, + deps = RUNTIME_DEPS + [":target_node", ":target_web"], + package_name = PKG_REQUIRE_NAME, + visibility = ["//visibility:public"], +) + +pkg_npm( + name = "npm_module", + deps = [":" + PKG_DIRNAME], +) + +filegroup( + name = "build", + srcs = [":npm_module"], + visibility = ["//visibility:public"], +) + +pkg_npm_types( + name = "npm_module_types", + srcs = SRCS, + deps = [":tsc_types"], + package_name = PKG_REQUIRE_NAME, + tsconfig = ":tsconfig", + visibility = ["//visibility:public"], +) + +filegroup( + name = "build_types", + srcs = [":npm_module_types"], + visibility = ["//visibility:public"], +) diff --git a/packages/core/rendering/core-rendering-browser-internal/README.md b/packages/core/rendering/core-rendering-browser-internal/README.md new file mode 100644 index 0000000000000..abdcdb2906957 --- /dev/null +++ b/packages/core/rendering/core-rendering-browser-internal/README.md @@ -0,0 +1,4 @@ +# @kbn/core-rendering-browser-internal + +This package contains the internal types and implementation for Core's browser-side rendering service. + diff --git a/packages/core/rendering/core-rendering-browser-internal/index.ts b/packages/core/rendering/core-rendering-browser-internal/index.ts new file mode 100644 index 0000000000000..52507be5106d2 --- /dev/null +++ b/packages/core/rendering/core-rendering-browser-internal/index.ts @@ -0,0 +1,9 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +export { RenderingService } from './src'; diff --git a/packages/core/rendering/core-rendering-browser-internal/jest.config.js b/packages/core/rendering/core-rendering-browser-internal/jest.config.js new file mode 100644 index 0000000000000..2e15197b4b8a6 --- /dev/null +++ b/packages/core/rendering/core-rendering-browser-internal/jest.config.js @@ -0,0 +1,13 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +module.exports = { + preset: '@kbn/test', + rootDir: '../../../..', + roots: ['/packages/core/rendering/core-rendering-browser-internal'], +}; diff --git a/packages/core/rendering/core-rendering-browser-internal/package.json b/packages/core/rendering/core-rendering-browser-internal/package.json new file mode 100644 index 0000000000000..78cf06e44c4dc --- /dev/null +++ b/packages/core/rendering/core-rendering-browser-internal/package.json @@ -0,0 +1,9 @@ +{ + "name": "@kbn/core-rendering-browser-internal", + "private": true, + "version": "1.0.0", + "main": "./target_node/index.js", + "browser": "./target_web/index.js", + "author": "Kibana Core", + "license": "SSPL-1.0 OR Elastic License 2.0" +} diff --git a/src/core/public/rendering/app_containers.test.tsx b/packages/core/rendering/core-rendering-browser-internal/src/app_containers.test.tsx similarity index 100% rename from src/core/public/rendering/app_containers.test.tsx rename to packages/core/rendering/core-rendering-browser-internal/src/app_containers.test.tsx diff --git a/src/core/public/rendering/app_containers.tsx b/packages/core/rendering/core-rendering-browser-internal/src/app_containers.tsx similarity index 100% rename from src/core/public/rendering/app_containers.tsx rename to packages/core/rendering/core-rendering-browser-internal/src/app_containers.tsx diff --git a/src/core/public/rendering/index.ts b/packages/core/rendering/core-rendering-browser-internal/src/index.ts similarity index 100% rename from src/core/public/rendering/index.ts rename to packages/core/rendering/core-rendering-browser-internal/src/index.ts diff --git a/src/core/public/rendering/rendering_service.test.tsx b/packages/core/rendering/core-rendering-browser-internal/src/rendering_service.test.tsx similarity index 100% rename from src/core/public/rendering/rendering_service.test.tsx rename to packages/core/rendering/core-rendering-browser-internal/src/rendering_service.test.tsx index 9c63fea250c38..5dcde921837b1 100644 --- a/src/core/public/rendering/rendering_service.test.tsx +++ b/packages/core/rendering/core-rendering-browser-internal/src/rendering_service.test.tsx @@ -10,12 +10,12 @@ import React from 'react'; import { act } from 'react-dom/test-utils'; import { BehaviorSubject } from 'rxjs'; -import { RenderingService } from './rendering_service'; import { applicationServiceMock } from '@kbn/core-application-browser-mocks'; import { chromeServiceMock } from '@kbn/core-chrome-browser-mocks'; import { overlayServiceMock } from '@kbn/core-overlays-browser-mocks'; import { themeServiceMock } from '@kbn/core-theme-browser-mocks'; import { i18nServiceMock } from '@kbn/core-i18n-browser-mocks'; +import { RenderingService } from './rendering_service'; describe('RenderingService#start', () => { let application: ReturnType; diff --git a/src/core/public/rendering/rendering_service.tsx b/packages/core/rendering/core-rendering-browser-internal/src/rendering_service.tsx similarity index 100% rename from src/core/public/rendering/rendering_service.tsx rename to packages/core/rendering/core-rendering-browser-internal/src/rendering_service.tsx diff --git a/packages/core/rendering/core-rendering-browser-internal/tsconfig.json b/packages/core/rendering/core-rendering-browser-internal/tsconfig.json new file mode 100644 index 0000000000000..2249e2ee93761 --- /dev/null +++ b/packages/core/rendering/core-rendering-browser-internal/tsconfig.json @@ -0,0 +1,19 @@ +{ + "extends": "../../../../tsconfig.bazel.json", + "compilerOptions": { + "declaration": true, + "declarationMap": true, + "emitDeclarationOnly": true, + "outDir": "target_types", + "stripInternal": false, + "types": [ + "jest", + "node", + "react" + ] + }, + "include": [ + "**/*.ts", + "**/*.tsx", + ] +} diff --git a/packages/core/rendering/core-rendering-browser-mocks/BUILD.bazel b/packages/core/rendering/core-rendering-browser-mocks/BUILD.bazel new file mode 100644 index 0000000000000..7493624fa2e65 --- /dev/null +++ b/packages/core/rendering/core-rendering-browser-mocks/BUILD.bazel @@ -0,0 +1,114 @@ +load("@npm//@bazel/typescript:index.bzl", "ts_config") +load("@build_bazel_rules_nodejs//:index.bzl", "js_library") +load("//src/dev/bazel:index.bzl", "jsts_transpiler", "pkg_npm", "pkg_npm_types", "ts_project") + +PKG_DIRNAME = "core-rendering-browser-mocks" +PKG_REQUIRE_NAME = "@kbn/core-rendering-browser-mocks" + +SOURCE_FILES = glob( + [ + "**/*.ts", + "**/*.tsx", + ], + exclude = [ + "**/*.config.js", + "**/*.test.*", + "**/*.stories.*", + "**/__snapshots__/**", + "**/integration_tests/**", + "**/mocks/**", + "**/scripts/**", + "**/storybook/**", + "**/test_fixtures/**", + "**/test_helpers/**", + ], +) + +SRCS = SOURCE_FILES + +filegroup( + name = "srcs", + srcs = SRCS, +) + +NPM_MODULE_EXTRA_FILES = [ + "package.json", +] + +RUNTIME_DEPS = [ +] + +TYPES_DEPS = [ + "@npm//@types/node", + "@npm//@types/jest", + "//packages/kbn-utility-types:npm_module_types", + "//packages/core/rendering/core-rendering-browser-internal:npm_module_types", +] + +jsts_transpiler( + name = "target_node", + srcs = SRCS, + build_pkg_name = package_name(), +) + +jsts_transpiler( + name = "target_web", + srcs = SRCS, + build_pkg_name = package_name(), + web = True, +) + +ts_config( + name = "tsconfig", + src = "tsconfig.json", + deps = [ + "//:tsconfig.base.json", + "//:tsconfig.bazel.json", + ], +) + +ts_project( + name = "tsc_types", + args = ['--pretty'], + srcs = SRCS, + deps = TYPES_DEPS, + declaration = True, + declaration_map = True, + emit_declaration_only = True, + out_dir = "target_types", + tsconfig = ":tsconfig", +) + +js_library( + name = PKG_DIRNAME, + srcs = NPM_MODULE_EXTRA_FILES, + deps = RUNTIME_DEPS + [":target_node", ":target_web"], + package_name = PKG_REQUIRE_NAME, + visibility = ["//visibility:public"], +) + +pkg_npm( + name = "npm_module", + deps = [":" + PKG_DIRNAME], +) + +filegroup( + name = "build", + srcs = [":npm_module"], + visibility = ["//visibility:public"], +) + +pkg_npm_types( + name = "npm_module_types", + srcs = SRCS, + deps = [":tsc_types"], + package_name = PKG_REQUIRE_NAME, + tsconfig = ":tsconfig", + visibility = ["//visibility:public"], +) + +filegroup( + name = "build_types", + srcs = [":npm_module_types"], + visibility = ["//visibility:public"], +) diff --git a/packages/core/rendering/core-rendering-browser-mocks/README.md b/packages/core/rendering/core-rendering-browser-mocks/README.md new file mode 100644 index 0000000000000..d4a495f84134c --- /dev/null +++ b/packages/core/rendering/core-rendering-browser-mocks/README.md @@ -0,0 +1,4 @@ +# @kbn/core-rendering-browser-mocks + +This package contains mocks for Core's browser-side rendering service. +- `renderingServiceMock` \ No newline at end of file diff --git a/packages/core/rendering/core-rendering-browser-mocks/index.ts b/packages/core/rendering/core-rendering-browser-mocks/index.ts new file mode 100644 index 0000000000000..e7ce72ce797fb --- /dev/null +++ b/packages/core/rendering/core-rendering-browser-mocks/index.ts @@ -0,0 +1,9 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +export { renderingServiceMock } from './src'; diff --git a/packages/core/rendering/core-rendering-browser-mocks/jest.config.js b/packages/core/rendering/core-rendering-browser-mocks/jest.config.js new file mode 100644 index 0000000000000..f9e233526e63a --- /dev/null +++ b/packages/core/rendering/core-rendering-browser-mocks/jest.config.js @@ -0,0 +1,13 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +module.exports = { + preset: '@kbn/test', + rootDir: '../../../..', + roots: ['/packages/core/rendering/core-rendering-browser-mocks'], +}; diff --git a/packages/core/rendering/core-rendering-browser-mocks/package.json b/packages/core/rendering/core-rendering-browser-mocks/package.json new file mode 100644 index 0000000000000..525a131a56f61 --- /dev/null +++ b/packages/core/rendering/core-rendering-browser-mocks/package.json @@ -0,0 +1,9 @@ +{ + "name": "@kbn/core-rendering-browser-mocks", + "private": true, + "version": "1.0.0", + "main": "./target_node/index.js", + "browser": "./target_web/index.js", + "author": "Kibana Core", + "license": "SSPL-1.0 OR Elastic License 2.0" +} diff --git a/packages/core/rendering/core-rendering-browser-mocks/src/index.ts b/packages/core/rendering/core-rendering-browser-mocks/src/index.ts new file mode 100644 index 0000000000000..d56794e3e9ac6 --- /dev/null +++ b/packages/core/rendering/core-rendering-browser-mocks/src/index.ts @@ -0,0 +1,9 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +export { renderingServiceMock } from './rendering_service.mock'; diff --git a/src/core/public/rendering/rendering_service.mock.ts b/packages/core/rendering/core-rendering-browser-mocks/src/rendering_service.mock.ts similarity index 89% rename from src/core/public/rendering/rendering_service.mock.ts rename to packages/core/rendering/core-rendering-browser-mocks/src/rendering_service.mock.ts index 28d79de8bb043..fa1965a25a15f 100644 --- a/src/core/public/rendering/rendering_service.mock.ts +++ b/packages/core/rendering/core-rendering-browser-mocks/src/rendering_service.mock.ts @@ -7,9 +7,10 @@ */ import type { PublicMethodsOf } from '@kbn/utility-types'; -import { RenderingService } from './rendering_service'; +import type { RenderingService } from '@kbn/core-rendering-browser-internal'; type RenderingServiceContract = PublicMethodsOf; + const createMock = () => { const mocked: jest.Mocked = { start: jest.fn(), diff --git a/packages/core/rendering/core-rendering-browser-mocks/tsconfig.json b/packages/core/rendering/core-rendering-browser-mocks/tsconfig.json new file mode 100644 index 0000000000000..26b4c7aca3a67 --- /dev/null +++ b/packages/core/rendering/core-rendering-browser-mocks/tsconfig.json @@ -0,0 +1,18 @@ +{ + "extends": "../../../../tsconfig.bazel.json", + "compilerOptions": { + "declaration": true, + "declarationMap": true, + "emitDeclarationOnly": true, + "outDir": "target_types", + "stripInternal": false, + "types": [ + "jest", + "node" + ] + }, + "include": [ + "**/*.ts", + "**/*.tsx", + ] +} diff --git a/packages/kbn-apm-synthtrace/BUILD.bazel b/packages/kbn-apm-synthtrace/BUILD.bazel index b3cd2939135de..2f87b86044915 100644 --- a/packages/kbn-apm-synthtrace/BUILD.bazel +++ b/packages/kbn-apm-synthtrace/BUILD.bazel @@ -47,6 +47,7 @@ RUNTIME_DEPS = [ "@npm//yargs", "@npm//node-fetch", "@npm//semver", + "@npm//elastic-apm-http-client", ] TYPES_DEPS = [ diff --git a/packages/kbn-apm-synthtrace/README.md b/packages/kbn-apm-synthtrace/README.md index 3afc25fb7e9a8..dcd50215c6a85 100644 --- a/packages/kbn-apm-synthtrace/README.md +++ b/packages/kbn-apm-synthtrace/README.md @@ -155,3 +155,19 @@ Note: | `--logLevel` | [enum] | `info` | Log level | | `--gcpRepository` | [string] | | Allows you to register a GCP repository in :[:base_path] format | | `-p` | [string] | | Specify multiple sets of streamaggregators to be included in the StreamProcessor | + +## Testing + +Run the Jest tests: + +``` +node scripts/jest --config ./packages/kbn-apm-synthtrace/jest.config.js +``` + +## Typescript + +Run the type checker: + +``` +node scripts/type_check.js --project packages/kbn-apm-synthtrace/tsconfig.json +``` diff --git a/packages/kbn-apm-synthtrace/src/cli/run_synthtrace.ts b/packages/kbn-apm-synthtrace/src/cli/run_synthtrace.ts index 4fd9167052def..ecfbd4a387f34 100644 --- a/packages/kbn-apm-synthtrace/src/cli/run_synthtrace.ts +++ b/packages/kbn-apm-synthtrace/src/cli/run_synthtrace.ts @@ -32,6 +32,11 @@ function options(y: Argv) { describe: 'Kibana target, used to bootstrap datastreams/mappings/templates/settings', string: true, }) + .option('apm', { + describe: + 'APM Server target. Send data to APM over the intake API instead of generating ES documents', + string: true, + }) .option('cloudId', { describe: 'Provide connection information and will force APM on the cloud to migrate to run as a Fleet integration', @@ -98,6 +103,11 @@ function options(y: Argv) { describe: 'Force writing to legacy indices', boolean: true, }) + .option('skipPackageInstall', { + describe: 'Skip automatically installing the package', + boolean: true, + default: false, + }) .option('scenarioOpts', { describe: 'Options specific to the scenario', coerce: (arg) => { @@ -144,7 +154,7 @@ export function runSynthtrace() { const runOptions = parseRunCliFlags(argv); - const { logger, apmEsClient } = getCommonServices(runOptions); + const { logger, apmEsClient, apmIntakeClient } = getCommonServices(runOptions); const toMs = datemath.parse(String(argv.to ?? 'now'))!.valueOf(); const to = new Date(toMs); @@ -181,12 +191,14 @@ export function runSynthtrace() { kibanaUrl = await kibanaClient.discoverLocalKibana(); } if (!kibanaUrl) throw Error('kibanaUrl could not be determined'); - await kibanaClient.installApmPackage( - kibanaUrl, - version, - runOptions.username, - runOptions.password - ); + if (!argv.skipPackageInstall) { + await kibanaClient.installApmPackage( + kibanaUrl, + version, + runOptions.username, + runOptions.password + ); + } } } @@ -210,7 +222,11 @@ export function runSynthtrace() { } } if (argv.clean) { - await apmEsClient.clean(aggregators.map((a) => a.getDataStreamName() + '-*')); + if (argv.apm) { + await apmEsClient.clean(['metrics-apm.service-*']); + } else { + await apmEsClient.clean(aggregators.map((a) => a.getDataStreamName() + '-*')); + } } if (runOptions.gcpRepository) { await apmEsClient.registerGcpRepository(runOptions.gcpRepository); @@ -234,7 +250,7 @@ export function runSynthtrace() { await startHistoricalDataUpload(apmEsClient, logger, runOptions, from, to, version); if (live) { - await startLiveDataUpload(apmEsClient, logger, runOptions, to, version); + await startLiveDataUpload(apmEsClient, apmIntakeClient, logger, runOptions, to, version); } } ) diff --git a/packages/kbn-apm-synthtrace/src/cli/utils/get_common_services.ts b/packages/kbn-apm-synthtrace/src/cli/utils/get_common_services.ts index e39aa9fa7112e..c51b435c15c32 100644 --- a/packages/kbn-apm-synthtrace/src/cli/utils/get_common_services.ts +++ b/packages/kbn-apm-synthtrace/src/cli/utils/get_common_services.ts @@ -7,6 +7,7 @@ */ import { Client, ClientOptions } from '@elastic/elasticsearch'; +import { ApmSynthtraceApmClient } from '../../lib/apm/client/apm_synthtrace_apm_client'; import { ApmSynthtraceEsClient } from '../../lib/apm/client/apm_synthtrace_es_client'; import { createLogger, Logger } from '../../lib/utils/create_logger'; import { RunOptions } from './parse_run_cli_flags'; @@ -16,7 +17,7 @@ export function getLogger({ logLevel }: RunOptions) { } export function getCommonServices( - { target, cloudId, username, password, logLevel, forceLegacyIndices }: RunOptions, + { target, cloudId, apm, username, password, logLevel, forceLegacyIndices }: RunOptions, logger?: Logger ) { if (!target && !cloudId) { @@ -44,10 +45,12 @@ export function getCommonServices( forceLegacyIndices, refreshAfterIndex: false, }); + const apmIntakeClient = apm ? new ApmSynthtraceApmClient(apm, logger) : null; return { logger, apmEsClient, + apmIntakeClient, }; } diff --git a/packages/kbn-apm-synthtrace/src/cli/utils/parse_run_cli_flags.ts b/packages/kbn-apm-synthtrace/src/cli/utils/parse_run_cli_flags.ts index 7b873ee480f90..ce4c10931278a 100644 --- a/packages/kbn-apm-synthtrace/src/cli/utils/parse_run_cli_flags.ts +++ b/packages/kbn-apm-synthtrace/src/cli/utils/parse_run_cli_flags.ts @@ -66,6 +66,7 @@ export function parseRunCliFlags(flags: RunCliFlags) { 'maxDocs', 'maxDocsConfidence', 'target', + 'apm', 'cloudId', 'username', 'password', diff --git a/packages/kbn-apm-synthtrace/src/cli/utils/start_historical_data_upload.ts b/packages/kbn-apm-synthtrace/src/cli/utils/start_historical_data_upload.ts index 093a34914bbe9..99396c28dfdd7 100644 --- a/packages/kbn-apm-synthtrace/src/cli/utils/start_historical_data_upload.ts +++ b/packages/kbn-apm-synthtrace/src/cli/utils/start_historical_data_upload.ts @@ -54,7 +54,7 @@ export async function startHistoricalDataUpload( } const events = logger.perf('generate_scenario', () => generate({ from, to })); - const ratePerMinute = events.ratePerMinute(); + const ratePerMinute = events.estimatedRatePerMinute(); logger.info( `Scenario is generating ${ratePerMinute.toLocaleString()} events per minute interval` ); @@ -62,7 +62,7 @@ export async function startHistoricalDataUpload( if (runOptions.maxDocs) { // estimate a more accurate range end for when --maxDocs is specified rangeEnd = moment(from) - // ratePerMinute() is not exact if the generator is yielding variable documents + // estimatedRatePerMinute() is not exact if the generator is yielding variable documents // the rate is calculated by peeking the first yielded event and its children. // for real complex cases manually specifying --to is encouraged. .subtract((runOptions.maxDocs / ratePerMinute) * runOptions.maxDocsConfidence, 'm') @@ -211,7 +211,7 @@ export async function startHistoricalDataUpload( return Promise.all(workers.map((worker) => limiter(() => worker()))) .then(async () => { if (!runOptions.dryRun) { - await esClient.refresh(); + await esClient.refresh(runOptions.apm ? ['metrics-apm.service-*'] : []); } }) .then(() => { diff --git a/packages/kbn-apm-synthtrace/src/cli/utils/start_live_data_upload.ts b/packages/kbn-apm-synthtrace/src/cli/utils/start_live_data_upload.ts index 154b804626c03..6615d16aa91a9 100644 --- a/packages/kbn-apm-synthtrace/src/cli/utils/start_live_data_upload.ts +++ b/packages/kbn-apm-synthtrace/src/cli/utils/start_live_data_upload.ts @@ -14,9 +14,11 @@ import { ApmSynthtraceEsClient } from '../../lib/apm'; import { Logger } from '../../lib/utils/create_logger'; import { EntityArrayIterable } from '../../lib/entity_iterable'; import { StreamProcessor } from '../../lib/stream_processor'; +import { ApmSynthtraceApmClient } from '../../lib/apm/client/apm_synthtrace_apm_client'; export async function startLiveDataUpload( esClient: ApmSynthtraceEsClient, + apmIntakeClient: ApmSynthtraceApmClient | null, logger: Logger, runOptions: RunOptions, start: Date, @@ -41,7 +43,7 @@ export async function startLiveDataUpload( generate({ from: bucketFrom, to: bucketTo }).toArray() ); - logger.debug( + logger.info( `Requesting ${new Date(bucketFrom).toISOString()} to ${new Date( bucketTo ).toISOString()}, events: ${nextEvents.length}` @@ -65,18 +67,20 @@ export async function startLiveDataUpload( maxSourceEvents: runOptions.maxDocs, name: `Live index`, }); - await logger.perf('index_live_scenario', () => - esClient.index( - new EntityArrayIterable(eventsToUpload), - { - concurrency: runOptions.workers, - maxDocs: runOptions.maxDocs, - mapToIndex, - dryRun: false, - }, - streamProcessor - ) - ); + await logger.perf('index_live_scenario', async () => { + const events = new EntityArrayIterable(eventsToUpload); + const streamToBulkOptions = { + concurrency: runOptions.workers, + maxDocs: runOptions.maxDocs, + mapToIndex, + dryRun: false, + }; + if (apmIntakeClient) { + await apmIntakeClient.index(events, streamToBulkOptions, streamProcessor); + } else { + await esClient.index(events, streamToBulkOptions, streamProcessor); + } + }); } do { diff --git a/packages/kbn-apm-synthtrace/src/cli/utils/synthtrace_worker.ts b/packages/kbn-apm-synthtrace/src/cli/utils/synthtrace_worker.ts index af075d0652c34..720b1b0527e80 100644 --- a/packages/kbn-apm-synthtrace/src/cli/utils/synthtrace_worker.ts +++ b/packages/kbn-apm-synthtrace/src/cli/utils/synthtrace_worker.ts @@ -38,7 +38,7 @@ export interface WorkerData { const { bucketFrom, bucketTo, runOptions, workerIndex, version } = workerData as WorkerData; -const { logger, apmEsClient } = getCommonServices(runOptions, l); +const { logger, apmEsClient, apmIntakeClient } = getCommonServices(runOptions, l); const file = runOptions.file; let scenario: Scenario; let events: EntityIterable; @@ -64,10 +64,11 @@ async function setup() { } }; const aggregators: StreamAggregator[] = [new ServiceLatencyAggregator()]; + // If we are sending data to apm-server we do not have to create any aggregates in the stream processor streamProcessor = new StreamProcessor({ version, - processors: StreamProcessor.apmProcessors, - streamAggregators: aggregators, + processors: apmIntakeClient ? [] : StreamProcessor.apmProcessors, + streamAggregators: apmIntakeClient ? [] : aggregators, maxSourceEvents: runOptions.maxDocs, logger: l, processedCallback: (processedDocuments) => { @@ -78,10 +79,13 @@ async function setup() { } async function doWork() { - await logger.perf( - 'index_scenario', - async () => await apmEsClient.index(events, streamToBulkOptions, streamProcessor) - ); + await logger.perf('index_scenario', async () => { + if (apmIntakeClient) { + await apmIntakeClient.index(events, streamToBulkOptions, streamProcessor); + } else { + await apmEsClient.index(events, streamToBulkOptions, streamProcessor); + } + }); } parentPort!.on('message', async (message) => { diff --git a/packages/kbn-apm-synthtrace/src/lib/apm/apm_fields.ts b/packages/kbn-apm-synthtrace/src/lib/apm/apm_fields.ts index b5181e80a92e9..690e6c3563f27 100644 --- a/packages/kbn-apm-synthtrace/src/lib/apm/apm_fields.ts +++ b/packages/kbn-apm-synthtrace/src/lib/apm/apm_fields.ts @@ -32,6 +32,7 @@ export interface ApmException { message: string; } export interface Observer { + type: string; version: string; version_major: number; } @@ -42,6 +43,8 @@ export type ApmFields = Fields & 'agent.name': string; 'agent.version': string; 'container.id': string; + 'destination.address': string; + 'destination.port': number; 'ecs.version': string; 'event.outcome': string; 'event.ingested': number; @@ -75,6 +78,8 @@ export type ApmFields = Fields & 'service.runtime.name': string; 'service.runtime.version': string; 'service.framework.name': string; + 'service.target.name': string; + 'service.target.type': string; 'span.id': string; 'span.name': string; 'span.type': string; diff --git a/packages/kbn-apm-synthtrace/src/lib/apm/base_span.ts b/packages/kbn-apm-synthtrace/src/lib/apm/base_span.ts index fa57c2871d8a8..f8c058592a494 100644 --- a/packages/kbn-apm-synthtrace/src/lib/apm/base_span.ts +++ b/packages/kbn-apm-synthtrace/src/lib/apm/base_span.ts @@ -76,4 +76,12 @@ export class BaseSpan extends Serializable { isTransaction(): this is Transaction { return this.fields['processor.event'] === 'transaction'; } + + labels(labels: Record) { + Object.entries(labels).forEach(([key, value]) => { + // @ts-expect-error + this.fields[`labels.${key}`] = value; + }); + return this; + } } diff --git a/packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_apm_client.ts b/packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_apm_client.ts new file mode 100644 index 0000000000000..da836cd8a2119 --- /dev/null +++ b/packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_apm_client.ts @@ -0,0 +1,346 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import Client from 'elastic-apm-http-client'; +import Util from 'util'; +import { Logger } from '../../utils/create_logger'; +import { ApmFields } from '../apm_fields'; +import { EntityIterable } from '../../entity_iterable'; +import { StreamProcessor } from '../../stream_processor'; +import { EntityStreams } from '../../entity_streams'; +import { Fields } from '../../entity'; +import { Span } from './intake_v2/span'; +import { Error } from './intake_v2/error'; +import { Metadata } from './intake_v2/metadata'; +import { Transaction } from './intake_v2/transaction'; + +export interface StreamToBulkOptions { + concurrency?: number; + // the maximum number of documents to process + maxDocs?: number; + // the number of documents to flush the bulk operation defaults to 10k + flushInterval?: number; + mapToIndex?: (document: Record) => string; + dryRun: boolean; + itemStartStopCallback?: (item: TFields | null, done: boolean) => void; +} + +export interface ApmSynthtraceApmClientOptions { + forceLegacyIndices?: boolean; + // defaults to true if unspecified + refreshAfterIndex?: boolean; +} + +interface ClientState { + client: Client; + enqueued: number; + sendSpan: (s: Span) => Promise; + sendTransaction: (s: Transaction) => Promise; + sendError: (e: Error) => Promise; + flush: (o: any) => Promise; +} +interface ClientStats { + numEvents: number; + numEventsDropped: number; + numEventsEnqueued: number; + numEventsSent: number; + slowWriteBatch: number; + backoffReconnectCount: number; +} +export class ApmSynthtraceApmClient { + private readonly _serviceClients: Map = new Map(); + constructor( + private readonly apmTarget: string, + private readonly logger: Logger, + options?: ApmSynthtraceApmClientOptions + ) {} + + map(fields: ApmFields): [Span | Transaction, Error[]] { + const set = ( + key: T, + context: NonNullable, + setter: (context: NonNullable, value: NonNullable) => void + ) => { + if (fields[key]) { + setter(context, fields[key]!); + } + }; + const metadata: Metadata = { + service: { + name: fields['service.name'] ?? 'unknown', + agent: { + name: fields['agent.name'] ?? 'unknown', + version: fields['agent.version'] ?? 'unknown', + }, + }, + }; + + const system = (metadata.system = metadata.system ?? {}); + const container = (system.container = system.container ?? {}); + const kubernetes = (system.kubernetes = system.kubernetes ?? {}); + const pod = (kubernetes.pod = kubernetes.pod ?? {}); + set('container.id', container, (c, v) => (c.id = v)); + set('host.name', system, (c, v) => (c.hostname = v)); + set('host.hostname', system, (c, v) => (c.configured_hostname = v)); + set('kubernetes.pod.name', pod, (c, v) => (c.name = v)); + set('kubernetes.pod.uid', pod, (c, v) => (c.uid = v)); + + const e: Span | Transaction = fields['span.id'] + ? { + kind: 'span', + duration: fields['span.duration.us'] ?? 0, + id: fields['span.id'] ?? '', + name: fields['span.name'] ?? 'unknown', + parent_id: fields['parent.id'] ?? '', + type: fields['span.type'] ?? '', + timestamp: Math.trunc((fields['@timestamp'] ?? 0) * 1000), + trace_id: fields['trace.id'] ?? '', + } + : { + kind: 'transaction', + timestamp: Math.trunc((fields['@timestamp'] ?? 0) * 1000), + duration: fields['transaction.duration.us'] ?? 0, + id: fields['transaction.id'] ?? '', + type: fields['transaction.type'] ?? '', + trace_id: fields['trace.id'] ?? '', + span_count: { dropped: null, started: 0 }, + }; + + set('trace.id', e, (c, v) => (c.trace_id = v)); + set('parent.id', e, (c, v) => (c.parent_id = v)); + set( + 'span.links', + e, + (c, v) => (c.links = v.map((l) => ({ span_id: l.span?.id, trace_id: l.span?.id }))) + ); + + e.context = {}; + const service = (e.context.service = e.context.service ?? {}); + set('service.name', service, (c, v) => (c.name = v)); + set('service.version', service, (c, v) => (c.version = v)); + set('service.environment', service, (c, v) => (c.environment = v)); + const node = (service.node = service.node ?? {}); + set('service.node.name', node, (c, v) => (c.configured_name = v)); + const agent = (service.agent = service.agent ?? {}); + set('agent.name', agent, (c, v) => (c.name = v)); + set('agent.version', agent, (c, v) => (c.version = v)); + const runtime = (service.runtime = service.runtime ?? {}); + set('service.runtime.name', runtime, (c, v) => (c.name = v)); + set('service.runtime.version', runtime, (c, v) => (c.version = v)); + const framework = (service.framework = service.framework ?? {}); + set('service.framework.name', framework, (c, v) => (c.name = v)); + + set( + 'event.outcome', + e, + (c, v) => (c.outcome = v === 'failure' ? 'failure' : v === 'success' ? 'success' : 'unknown') + ); + + if (e.kind === 'span') { + set('span.duration.us', e, (c, v) => (c.duration = v / 1000)); + set('span.type', e, (c, v) => (c.type = v)); + set('span.subtype', e, (c, v) => (c.subtype = v)); + + const destination = (e.context.destination = e.context.destination ?? {}); + const destinationService = (destination.service = destination.service ?? { resource: '' }); + set('span.destination.service.name', destinationService, (c, v) => (c.name = v)); + set('span.destination.service.resource', destinationService, (c, v) => (c.resource = v)); + set('span.destination.service.type', destinationService, (c, v) => (c.type = v)); + } + if (e.kind === 'transaction') { + set('transaction.name', e, (c, v) => (c.name = v)); + set('transaction.type', e, (c, v) => (c.type = v)); + set('transaction.id', e, (c, v) => (c.id = v)); + set('transaction.duration.us', e, (c, v) => (c.duration = v / 1000)); + set('transaction.sampled', e, (c, v) => (c.sampled = v)); + } + + let errors: Error[] = []; + if (fields['error.id']) { + const exceptions = fields['error.exception'] ?? []; + errors = exceptions.map((ex) => { + const err: Error = { + id: '0', + timestamp: Math.trunc((fields['@timestamp'] ?? 0) * 1000), + context: e.context, + }; + set('error.id', err, (c, v) => (c.id = v)); + set('parent.id', err, (c, v) => (c.parent_id = v)); + set('trace.id', err, (c, v) => (c.trace_id = v)); + set('transaction.id', err, (c, v) => (c.transaction_id = v)); + set('error.grouping_name', err, (c, v) => (c.culprit = v)); + err.exception = { + message: ex.message, + type: 'Exception', + }; + if (!err.parent_id) err.parent_id = err.transaction_id ?? err.trace_id; + return err; + }); + } + + // TODO include event more context + // 'cloud.provider': string; + // 'cloud.project.name': string; + // 'cloud.service.name': string; + // 'cloud.availability_zone': string; + // 'cloud.machine.type': string; + // 'cloud.region': string; + // 'host.os.platform': string; + // 'faas.id': string; + // 'faas.coldstart': boolean; + // 'faas.execution': string; + // 'faas.trigger.type': string; + // 'faas.trigger.request_id': string; + + return [e, errors]; + } + + async index( + events: EntityIterable | Array>, + options?: StreamToBulkOptions, + streamProcessor?: StreamProcessor + ) { + const dataStream = Array.isArray(events) ? new EntityStreams(events) : events; + const sp = + streamProcessor != null + ? streamProcessor + : new StreamProcessor({ + processors: [], + maxSourceEvents: options?.maxDocs, + logger: this.logger, + }); + + let yielded = 0; + let fields: ApmFields | null = null; + // intentionally leaks `fields` so it can be pushed to callback events + const sideEffectYield = () => + sp.streamToDocumentAsync((e) => { + fields = e; + return this.map(e); + }, dataStream); + + if (options?.dryRun) { + await this.logger.perf('enumerate_scenario', async () => { + // @ts-ignore + // We just want to enumerate + for await (const item of sideEffectYield()) { + if (yielded === 0) { + options.itemStartStopCallback?.apply(this, [fields, false]); + yielded++; + } + } + options.itemStartStopCallback?.apply(this, [fields, true]); + }); + return; + } + const queueSize = 10000; + for await (const [item, _] of sideEffectYield()) { + if (item == null) continue; + + const service = item.context?.service?.name ?? 'unknown'; + const hostName = fields ? fields['host.name'] : 'unknown'; + // TODO evaluate if we really need service specific clients + // const lookup = `${service}::${hostName}`; + const lookup = `constant_key::1`; + if (!this._serviceClients.has(lookup)) { + const client = new Client({ + userAgent: `apm-agent-synthtrace/${sp.version}`, + serverUrl: this.apmTarget, + maxQueueSize: queueSize, + bufferWindowSize: queueSize / 2, + + serviceName: service, + serviceNodeName: service, + agentName: 'synthtrace', + agentVersion: sp.version, + serviceVersion: item.context?.service?.version ?? sp.version, + frameworkName: item.context?.service?.framework?.name ?? undefined, + frameworkVersion: item.context?.service?.framework?.version ?? undefined, + hostname: hostName, + }); + this._serviceClients.set(lookup, { + client, + enqueued: 0, + sendSpan: Util.promisify(client.sendSpan).bind(client), + sendTransaction: Util.promisify(client.sendTransaction).bind(client), + sendError: Util.promisify(client.sendError).bind(client), + flush: Util.promisify(client.flush).bind(client), + }); + } + const clientState = this._serviceClients.get(lookup)!; + + if (yielded === 0) { + options?.itemStartStopCallback?.apply(this, [fields, false]); + } + if (item.kind === 'span') { + clientState.sendSpan(item); + } else if (item.kind === 'transaction') { + clientState.sendTransaction(item); + } + yielded++; + clientState.enqueued++; + /* TODO finish implementing sending errors + errors.forEach((e) => { + clientState.sendError(e); + clientState.enqueued++; + });*/ + if (clientState.enqueued % queueSize === 0) { + this.logger.debug( + ` -- ${sp.name} Flushing client: ${lookup} after enqueueing ${clientState.enqueued}` + ); + await clientState.flush({}); + } + } + for (const [, state] of this._serviceClients) { + await state.flush({}); + } + // this attempts to group similar service names together for cleaner reporting + const totals = Array.from(this._serviceClients).reduce((p, c, i, a) => { + const serviceName = c[0].split('::')[0].replace(/-\d+$/, ''); + if (!p.has(serviceName)) { + p.set(serviceName, { enqueued: 0, sent: 0, names: new Set() }); + } + const s = p.get(serviceName)!; + s.enqueued += c[1].enqueued; + s.sent += c[1].client.sent; + s.names.add(c[0]); + const stats = c[1].client._getStats(); + if (!s.stats) { + s.stats = stats; + } else { + s.stats.backoffReconnectCount += stats.backoffReconnectCount; + s.stats.numEvents += stats.numEvents; + s.stats.numEventsSent += stats.numEventsSent; + s.stats.numEventsDropped += stats.numEventsDropped; + s.stats.numEventsEnqueued += stats.numEventsEnqueued; + s.stats.slowWriteBatch += stats.slowWriteBatch; + } + return p; + }, new Map; stats?: ClientStats }>()); + for (const [serviceGroup, state] of totals) { + // only report details if there is a discrepancy in the bookkeeping of synthtrace and the client + if ( + state.stats && + (state.stats.numEventsDropped > 0 || state.enqueued !== state.stats.numEventsSent) + ) { + this.logger.info( + ` -- ${serviceGroup} (${state.names.size} services) sent: ${state.sent}, enqueued: ${state.enqueued}` + ); + this.logger.info(` -- ${serviceGroup} (${state.names.size} services) client stats`); + this.logger.info(` -- numEvents: ${state.stats.numEvents}`); + this.logger.info(` -- numEventsSent: ${state.stats.numEventsSent}`); + this.logger.info(` -- numEventsEnqueued: ${state.stats.numEventsEnqueued}`); + this.logger.info(` -- numEventsDropped: ${state.stats.numEventsDropped}`); + this.logger.info(` -- backoffReconnectCount: ${state.stats.backoffReconnectCount}`); + this.logger.info(` -- slowWriteBatch: ${state.stats.slowWriteBatch}`); + } + } + + options?.itemStartStopCallback?.apply(this, [fields, true]); + } +} diff --git a/packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts b/packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts index 2c8c0b9b2e799..704f51ec82519 100644 --- a/packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts +++ b/packages/kbn-apm-synthtrace/src/lib/apm/client/apm_synthtrace_es_client.ts @@ -62,7 +62,7 @@ export class ApmSynthtraceEsClient { async clean(dataStreams?: string[]) { return this.getWriteTargets().then(async (writeTargets) => { const indices = Object.values(writeTargets); - this.logger.info(`Attempting to clean: ${indices}`); + this.logger.info(`Attempting to clean: ${indices} + ${dataStreams ?? []}`); if (this.forceLegacyIndices) { return cleanWriteTargets({ client: this.client, @@ -132,10 +132,10 @@ export class ApmSynthtraceEsClient { this.logger.info(verifyRepository); } - async refresh() { + async refresh(dataStreams?: string[]) { const writeTargets = await this.getWriteTargets(); - const indices = Object.values(writeTargets); + const indices = Object.values(writeTargets).concat(dataStreams ?? []); this.logger.info(`Indexed all data attempting to refresh: ${indices}`); return this.client.indices.refresh({ diff --git a/packages/kbn-apm-synthtrace/src/lib/apm/client/elastic_apm_http_client.d.ts b/packages/kbn-apm-synthtrace/src/lib/apm/client/elastic_apm_http_client.d.ts new file mode 100644 index 0000000000000..cf6ace8300c50 --- /dev/null +++ b/packages/kbn-apm-synthtrace/src/lib/apm/client/elastic_apm_http_client.d.ts @@ -0,0 +1,83 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +// eslint-disable-next-line max-classes-per-file +declare module 'elastic-apm-http-client' { + import EventEmitter from 'events'; + + class Client extends EventEmitter { + constructor(opts: ClientOptions); + + sent: number; + public setExtraMetadata(metadata: import('././intake_v2/metadata').Metadata): void; + + public sendSpan(span: import('././intake_v2/span').Span, callback: () => void): void; + public sendTransaction( + transaction: import('././intake_v2/transaction').Transaction, + callback: () => void + ): void; + public sendError(error: import('././intake_v2/error').Error, callback: () => void): void; + + public flush(opts: FlushOptions, callback: () => void): void; + public destroy(): void; + public _getStats(): ClientStats; + } + interface ClientStats { + numEvents: number; + numEventsDropped: number; + numEventsEnqueued: number; + numEventsSent: number; + slowWriteBatch: number; + backoffReconnectCount: number; + } + interface ClientOptions { + /** (required) The HTTP user agent that your module should identify itself as */ + userAgent: string; + /** The Elastic APM intake API secret token */ + secretToken?: string; + /** Elastic APM API key */ + apiKey?: string; + /** The APM Server URL (default: http://localhost:8200) */ + serverUrl: string; + maxQueueSize?: number; + bufferWindowSize?: number; + + /** (required) The APM agent name */ + agentName: string; + /** (required) The APM agent version */ + agentVersion: string; + /** The name of the service being instrumented */ + serviceName: string; + /** Unique name of the service being instrumented */ + serviceNodeName?: string; + /** The version of the service being instrumented */ + serviceVersion?: string; + /** If the service being instrumented is running a specific framework, use this config option to log its name */ + frameworkName?: string; + /** If the service being instrumented is running a specific framework, use this config option to log its version */ + frameworkVersion?: string; + /** Custom hostname (default: OS hostname) */ + hostname?: string; + /** Environment name (default: process.env.NODE_ENV || 'development') */ + environment?: string; + /** Docker container id, if not given will be parsed from /proc/self/cgroup */ + containerId?: string; + /** Kubernetes node name */ + kubernetesNodeName?: string; + /** Kubernetes namespace */ + kubernetesNamespace?: string; + /** Kubernetes pod name, if not given will be the hostname */ + kubernetesPodName?: string; + /** Kubernetes pod id, if not given will be parsed from /proc/self/cgroup */ + kubernetesPodUID?: string; + /** An object of key/value pairs to use to label all data reported (only applied when using APM Server 7.1+) */ + globalLabels?: Record; + } + class FlushOptions {} + export = Client; +} diff --git a/packages/kbn-apm-synthtrace/src/lib/apm/client/intake_v2/error.ts b/packages/kbn-apm-synthtrace/src/lib/apm/client/intake_v2/error.ts new file mode 100644 index 0000000000000..a438c225939f7 --- /dev/null +++ b/packages/kbn-apm-synthtrace/src/lib/apm/client/intake_v2/error.ts @@ -0,0 +1,513 @@ +/* + * 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. + */ + +/** + * errorEvent represents an error or a logged error message, captured by an APM agent in a monitored service. + */ +export interface Error { + /** + * Context holds arbitrary contextual information for the event. + */ + context?: null | { + /** + * Cloud holds fields related to the cloud or infrastructure the events are coming from. + */ + cloud?: null | { + /** + * Origin contains the self-nested field groups for cloud. + */ + origin?: null | { + /** + * The cloud account or organization id used to identify different entities in a multi-tenant environment. + */ + account?: null | { + /** + * The cloud account or organization id used to identify different entities in a multi-tenant environment. + */ + id?: null | string; + [k: string]: unknown; + }; + /** + * Name of the cloud provider. + */ + provider?: null | string; + /** + * Region in which this host, resource, or service is located. + */ + region?: null | string; + /** + * The cloud service name is intended to distinguish services running on different platforms within a provider. + */ + service?: null | { + /** + * The cloud service name is intended to distinguish services running on different platforms within a provider. + */ + name?: null | string; + [k: string]: unknown; + }; + [k: string]: unknown; + }; + [k: string]: unknown; + }; + /** + * Custom can contain additional metadata to be stored with the event. The format is unspecified and can be deeply nested objects. The information will not be indexed or searchable in Elasticsearch. + */ + custom?: null | { + [k: string]: unknown; + }; + /** + * Message holds details related to message receiving and publishing if the captured event integrates with a messaging system + */ + message?: null | { + /** + * Age of the message. If the monitored messaging framework provides a timestamp for the message, agents may use it. Otherwise, the sending agent can add a timestamp in milliseconds since the Unix epoch to the message's metadata to be retrieved by the receiving agent. If a timestamp is not available, agents should omit this field. + */ + age?: null | { + /** + * Age of the message in milliseconds. + */ + ms?: null | number; + [k: string]: unknown; + }; + /** + * Body of the received message, similar to an HTTP request body + */ + body?: null | string; + /** + * Headers received with the message, similar to HTTP request headers. + */ + headers?: null | { + /** + * This interface was referenced by `undefined`'s JSON-Schema definition + * via the `patternProperty` "[.*]*$". + */ + [k: string]: null | string[] | string; + }; + /** + * Queue holds information about the message queue where the message is received. + */ + queue?: null | { + /** + * Name holds the name of the message queue where the message is received. + */ + name?: null | string; + [k: string]: unknown; + }; + /** + * RoutingKey holds the optional routing key of the received message as set on the queuing system, such as in RabbitMQ. + */ + routing_key?: null | string; + [k: string]: unknown; + }; + /** + * Page holds information related to the current page and page referers. It is only sent from RUM agents. + */ + page?: null | { + /** + * Referer holds the URL of the page that 'linked' to the current page. + */ + referer?: null | string; + /** + * URL of the current page + */ + url?: null | string; + [k: string]: unknown; + }; + /** + * Request describes the HTTP request information in case the event was created as a result of an HTTP request. + */ + request?: null | { + /** + * Body only contais the request bod, not the query string information. It can either be a dictionary (for standard HTTP requests) or a raw request body. + */ + body?: + | null + | string + | { + [k: string]: unknown; + }; + /** + * Cookies used by the request, parsed as key-value objects. + */ + cookies?: null | { + [k: string]: unknown; + }; + /** + * Env holds environment variable information passed to the monitored service. + */ + env?: null | { + [k: string]: unknown; + }; + /** + * Headers includes any HTTP headers sent by the requester. Cookies will be taken by headers if supplied. + */ + headers?: null | { + /** + * This interface was referenced by `undefined`'s JSON-Schema definition + * via the `patternProperty` "[.*]*$". + */ + [k: string]: null | string[] | string; + }; + /** + * HTTPVersion holds information about the used HTTP version. + */ + http_version?: null | string; + /** + * Method holds information about the method of the HTTP request. + */ + method: string; + /** + * Socket holds information related to the recorded request, such as whether or not data were encrypted and the remote address. + */ + socket?: null | { + /** + * Encrypted indicates whether a request was sent as TLS/HTTPS request. DEPRECATED: this field will be removed in a future release. + */ + encrypted?: null | boolean; + /** + * RemoteAddress holds the network address sending the request. It should be obtained through standard APIs and not be parsed from any headers like 'Forwarded'. + */ + remote_address?: null | string; + [k: string]: unknown; + }; + /** + * URL holds information sucha as the raw URL, scheme, host and path. + */ + url?: null | { + /** + * Full, possibly agent-assembled URL of the request, e.g. https://example.com:443/search?q=elasticsearch#top. + */ + full?: null | string; + /** + * Hash of the request URL, e.g. 'top' + */ + hash?: null | string; + /** + * Hostname information of the request, e.g. 'example.com'." + */ + hostname?: null | string; + /** + * Path of the request, e.g. '/search' + */ + pathname?: null | string; + /** + * Port of the request, e.g. '443'. Can be sent as string or int. + */ + port?: null | string | number; + /** + * Protocol information for the recorded request, e.g. 'https:'. + */ + protocol?: null | string; + /** + * Raw unparsed URL of the HTTP request line, e.g https://example.com:443/search?q=elasticsearch. This URL may be absolute or relative. For more details, see https://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html#sec5.1.2. + */ + raw?: null | string; + /** + * Search contains the query string information of the request. It is expected to have values delimited by ampersands. + */ + search?: null | string; + [k: string]: unknown; + }; + [k: string]: unknown; + }; + /** + * Response describes the HTTP response information in case the event was created as a result of an HTTP request. + */ + response?: null | { + /** + * DecodedBodySize holds the size of the decoded payload. + */ + decoded_body_size?: null | number; + /** + * EncodedBodySize holds the size of the encoded payload. + */ + encoded_body_size?: null | number; + /** + * Finished indicates whether the response was finished or not. + */ + finished?: null | boolean; + /** + * Headers holds the http headers sent in the http response. + */ + headers?: null | { + /** + * This interface was referenced by `undefined`'s JSON-Schema definition + * via the `patternProperty` "[.*]*$". + */ + [k: string]: null | string[] | string; + }; + /** + * HeadersSent indicates whether http headers were sent. + */ + headers_sent?: null | boolean; + /** + * StatusCode sent in the http response. + */ + status_code?: null | number; + /** + * TransferSize holds the total size of the payload. + */ + transfer_size?: null | number; + [k: string]: unknown; + }; + /** + * Service related information can be sent per event. Information provided here will override the more generic information retrieved from metadata, missing service fields will be retrieved from the metadata information. + */ + service?: null | { + /** + * Agent holds information about the APM agent capturing the event. + */ + agent?: null | { + /** + * EphemeralID is a free format ID used for metrics correlation by agents + */ + ephemeral_id?: null | string; + /** + * Name of the APM agent capturing information. + */ + name?: null | string; + /** + * Version of the APM agent capturing information. + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * Environment in which the monitored service is running, e.g. `production` or `staging`. + */ + environment?: null | string; + /** + * Framework holds information about the framework used in the monitored service. + */ + framework?: null | { + /** + * Name of the used framework + */ + name?: null | string; + /** + * Version of the used framework + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * ID holds a unique identifier for the service. + */ + id?: null | string; + /** + * Language holds information about the programming language of the monitored service. + */ + language?: null | { + /** + * Name of the used programming language + */ + name?: null | string; + /** + * Version of the used programming language + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * Name of the monitored service. + */ + name?: null | string; + /** + * Node must be a unique meaningful name of the service node. + */ + node?: null | { + /** + * Name of the service node + */ + configured_name?: null | string; + [k: string]: unknown; + }; + /** + * Origin contains the self-nested field groups for service. + */ + origin?: null | { + /** + * Immutable id of the service emitting this event. + */ + id?: null | string; + /** + * Immutable name of the service emitting this event. + */ + name?: null | string; + /** + * The version of the service the data was collected from. + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * Runtime holds information about the language runtime running the monitored service + */ + runtime?: null | { + /** + * Name of the language runtime + */ + name?: null | string; + /** + * Version of the language runtime + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * Target holds information about the outgoing service in case of an outgoing event + */ + target?: ( + | { + type: string; + [k: string]: unknown; + } + | { + name: string; + [k: string]: unknown; + } + ) & + ( + | (( + | { + type: string; + [k: string]: unknown; + } + | { + name: string; + [k: string]: unknown; + } + ) & + null) + | ( + | { + type: string; + [k: string]: unknown; + } + | { + name: string; + [k: string]: unknown; + } + ) + ); + /** + * Version of the monitored service. + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * Tags are a flat mapping of user-defined tags. On the agent side, tags are called labels. Allowed value types are string, boolean and number values. Tags are indexed and searchable. + */ + tags?: null | { + [k: string]: null | string | boolean | number; + }; + /** + * User holds information about the correlated user for this event. If user data are provided here, all user related information from metadata is ignored, otherwise the metadata's user information will be stored with the event. + */ + user?: null | { + /** + * Domain of the logged in user + */ + domain?: null | string; + /** + * Email of the user. + */ + email?: null | string; + /** + * ID identifies the logged in user, e.g. can be the primary key of the user + */ + id?: null | string | number; + /** + * Name of the user. + */ + username?: null | string; + [k: string]: unknown; + }; + [k: string]: unknown; + }; + /** + * Culprit identifies the function call which was the primary perpetrator of this event. + */ + culprit?: null | string; + /** + * Exception holds information about the original error. The information is language specific. + */ + exception?: { message: string; type: string }; + /** + * ID holds the hex encoded 128 random bits ID of the event. + */ + id: string; + /** + * Log holds additional information added when the error is logged. + */ + log?: null | { + /** + * Level represents the severity of the recorded log. + */ + level?: null | string; + /** + * LoggerName holds the name of the used logger instance. + */ + logger_name?: null | string; + /** + * Message of the logged error. In case a parameterized message is captured, Message should contain the same information, but with any placeholders being replaced. + */ + message: string; + /** + * ParamMessage should contain the same information as Message, but with placeholders where parameters were logged, e.g. 'error connecting to %s'. The string is not interpreted, allowing differnt placeholders per client languange. The information might be used to group errors together. + */ + param_message?: null | string; + /** + * Stacktrace information of the captured error. + */ + stacktrace?: null | Array< + | { + classname: string; + [k: string]: unknown; + } + | { + filename: string; + [k: string]: unknown; + } + >; + }; + /** + * ParentID holds the hex encoded 64 random bits ID of the parent transaction or span. + */ + parent_id?: null | string; + /** + * Timestamp holds the recorded time of the event, UTC based and formatted as microseconds since Unix epoch. + */ + timestamp?: null | number; + /** + * TraceID holds the hex encoded 128 random bits ID of the correlated trace. + */ + trace_id?: null | string; + /** + * Transaction holds information about the correlated transaction. + */ + transaction?: null | { + /** + * Name is the generic designation of a transaction in the scope of a single service, eg: 'GET /users/:id'. + */ + name?: null | string; + /** + * Sampled indicates whether or not the full information for a transaction is captured. If a transaction is unsampled no spans and less context information will be reported. + */ + sampled?: null | boolean; + /** + * Type expresses the correlated transaction's type as keyword that has specific relevance within the service's domain, eg: 'request', 'backgroundjob'. + */ + type?: null | string; + }; + /** + * TransactionID holds the hex encoded 64 random bits ID of the correlated transaction. + */ + transaction_id?: null | string; +} diff --git a/packages/kbn-apm-synthtrace/src/lib/apm/client/intake_v2/metadata.ts b/packages/kbn-apm-synthtrace/src/lib/apm/client/intake_v2/metadata.ts new file mode 100644 index 0000000000000..551f1bc5e2b9a --- /dev/null +++ b/packages/kbn-apm-synthtrace/src/lib/apm/client/intake_v2/metadata.ts @@ -0,0 +1,312 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ +export interface Metadata { + /** + * Cloud metadata about where the monitored service is running. + */ + cloud?: null | { + /** + * Account where the monitored service is running. + */ + account?: null | { + /** + * ID of the cloud account. + */ + id?: null | string; + /** + * Name of the cloud account. + */ + name?: null | string; + [k: string]: unknown; + }; + /** + * AvailabilityZone where the monitored service is running, e.g. us-east-1a + */ + availability_zone?: null | string; + /** + * Instance on which the monitored service is running. + */ + instance?: null | { + /** + * ID of the cloud instance. + */ + id?: null | string; + /** + * Name of the cloud instance. + */ + name?: null | string; + [k: string]: unknown; + }; + /** + * Machine on which the monitored service is running. + */ + machine?: null | { + /** + * ID of the cloud machine. + */ + type?: null | string; + [k: string]: unknown; + }; + /** + * Project in which the monitored service is running. + */ + project?: null | { + /** + * ID of the cloud project. + */ + id?: null | string; + /** + * Name of the cloud project. + */ + name?: null | string; + [k: string]: unknown; + }; + /** + * Provider that is used, e.g. aws, azure, gcp, digitalocean. + */ + provider: string; + /** + * Region where the monitored service is running, e.g. us-east-1 + */ + region?: null | string; + /** + * Service that is monitored on cloud + */ + service?: null | { + /** + * Name of the cloud service, intended to distinguish services running on different platforms within a provider, eg AWS EC2 vs Lambda, GCP GCE vs App Engine, Azure VM vs App Server. + */ + name?: null | string; + [k: string]: unknown; + }; + [k: string]: unknown; + }; + /** + * Labels are a flat mapping of user-defined tags. Allowed value types are string, boolean and number values. Labels are indexed and searchable. + */ + labels?: null | { + [k: string]: null | string | boolean | number; + }; + /** + * Network holds information about the network over which the monitored service is communicating. + */ + network?: null | { + connection?: null | { + type?: null | string; + [k: string]: unknown; + }; + [k: string]: unknown; + }; + /** + * Process metadata about the monitored service. + */ + process?: null | { + /** + * Argv holds the command line arguments used to start this process. + */ + argv?: null | string[]; + /** + * PID holds the process ID of the service. + */ + pid: number; + /** + * Ppid holds the parent process ID of the service. + */ + ppid?: null | number; + /** + * Title is the process title. It can be the same as process name. + */ + title?: null | string; + [k: string]: unknown; + }; + /** + * Service metadata about the monitored service. + */ + service: { + /** + * Agent holds information about the APM agent capturing the event. + */ + agent: { + /** + * EphemeralID is a free format ID used for metrics correlation by agents + */ + ephemeral_id?: null | string; + /** + * Name of the APM agent capturing information. + */ + name: string; + /** + * Version of the APM agent capturing information. + */ + version: string; + [k: string]: unknown; + }; + /** + * Environment in which the monitored service is running, e.g. `production` or `staging`. + */ + environment?: null | string; + /** + * Framework holds information about the framework used in the monitored service. + */ + framework?: null | { + /** + * Name of the used framework + */ + name?: null | string; + /** + * Version of the used framework + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * ID holds a unique identifier for the running service. + */ + id?: null | string; + /** + * Language holds information about the programming language of the monitored service. + */ + language?: null | { + /** + * Name of the used programming language + */ + name: string; + /** + * Version of the used programming language + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * Name of the monitored service. + */ + name: string; + /** + * Node must be a unique meaningful name of the service node. + */ + node?: null | { + /** + * Name of the service node + */ + configured_name?: null | string; + [k: string]: unknown; + }; + /** + * Runtime holds information about the language runtime running the monitored service + */ + runtime?: null | { + /** + * Name of the language runtime + */ + name: string; + /** + * Name of the language runtime + */ + version: string; + [k: string]: unknown; + }; + /** + * Version of the monitored service. + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * System metadata + */ + system?: null | { + /** + * Architecture of the system the monitored service is running on. + */ + architecture?: null | string; + /** + * ConfiguredHostname is the configured name of the host the monitored service is running on. It should only be sent when configured by the user. If given, it is used as the event's hostname. + */ + configured_hostname?: null | string; + /** + * Container holds the system's container ID if available. + */ + container?: null | { + /** + * ID of the container the monitored service is running in. + */ + id?: null | string; + [k: string]: unknown; + }; + /** + * DetectedHostname is the hostname detected by the APM agent. It usually contains what the hostname command returns on the host machine. It will be used as the event's hostname if ConfiguredHostname is not present. + */ + detected_hostname?: null | string; + /** + * Deprecated: Use ConfiguredHostname and DetectedHostname instead. DeprecatedHostname is the host name of the system the service is running on. It does not distinguish between configured and detected hostname and therefore is deprecated and only used if no other hostname information is available. + */ + hostname?: null | string; + /** + * Kubernetes system information if the monitored service runs on Kubernetes. + */ + kubernetes?: null | { + /** + * Namespace of the Kubernetes resource the monitored service is run on. + */ + namespace?: null | string; + /** + * Node related information + */ + node?: null | { + /** + * Name of the Kubernetes Node + */ + name?: null | string; + [k: string]: unknown; + }; + /** + * Pod related information + */ + pod?: null | { + /** + * Name of the Kubernetes Pod + */ + name?: null | string; + /** + * UID is the system-generated string uniquely identifying the Pod. + */ + uid?: null | string; + [k: string]: unknown; + }; + [k: string]: unknown; + }; + /** + * Platform name of the system platform the monitored service is running on. + */ + platform?: null | string; + [k: string]: unknown; + }; + /** + * User metadata, which can be overwritten on a per event basis. + */ + user?: null | { + /** + * Domain of the logged in user + */ + domain?: null | string; + /** + * Email of the user. + */ + email?: null | string; + /** + * ID identifies the logged in user, e.g. can be the primary key of the user + */ + id?: null | string | number; + /** + * Name of the user. + */ + username?: null | string; + [k: string]: unknown; + }; + [k: string]: unknown; +} diff --git a/packages/kbn-apm-synthtrace/src/lib/apm/client/intake_v2/span.ts b/packages/kbn-apm-synthtrace/src/lib/apm/client/intake_v2/span.ts new file mode 100644 index 0000000000000..755df6dcd0d68 --- /dev/null +++ b/packages/kbn-apm-synthtrace/src/lib/apm/client/intake_v2/span.ts @@ -0,0 +1,447 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +export interface Span { + kind: 'span'; + /** + * Action holds the specific kind of event within the sub-type represented by the span (e.g. query, connect) + */ + action?: null | string; + /** + * ChildIDs holds a list of successor transactions and/or spans. + */ + child_ids?: null | string[]; + /** + * Composite holds details on a group of spans represented by a single one. + */ + composite?: null | { + /** + * A string value indicating which compression strategy was used. The valid values are `exact_match` and `same_kind`. + */ + compression_strategy: string; + /** + * Count is the number of compressed spans the composite span represents. The minimum count is 2, as a composite span represents at least two spans. + */ + count: number; + /** + * Sum is the durations of all compressed spans this composite span represents in milliseconds. + */ + sum: number; + [k: string]: unknown; + }; + /** + * Context holds arbitrary contextual information for the event. + */ + context?: null | { + /** + * Database contains contextual data for database spans + */ + db?: null | { + /** + * Instance name of the database. + */ + instance?: null | string; + /** + * Link to the database server. + */ + link?: null | string; + /** + * RowsAffected shows the number of rows affected by the statement. + */ + rows_affected?: null | number; + /** + * Statement of the recorded database event, e.g. query. + */ + statement?: null | string; + /** + * Type of the recorded database event., e.g. sql, cassandra, hbase, redis. + */ + type?: null | string; + /** + * User is the username with which the database is accessed. + */ + user?: null | string; + [k: string]: unknown; + }; + /** + * Destination contains contextual data about the destination of spans + */ + destination?: null | { + /** + * Address is the destination network address: hostname (e.g. 'localhost'), FQDN (e.g. 'elastic.co'), IPv4 (e.g. '127.0.0.1') IPv6 (e.g. '::1') + */ + address?: null | string; + /** + * Port is the destination network port (e.g. 443) + */ + port?: null | number; + /** + * Service describes the destination service + */ + service?: null | { + /** + * Name is the identifier for the destination service, e.g. 'http://elastic.co', 'elasticsearch', 'rabbitmq' ( DEPRECATED: this field will be removed in a future release + */ + name?: null | string; + /** + * Resource identifies the destination service resource being operated on e.g. 'http://elastic.co:80', 'elasticsearch', 'rabbitmq/queue_name' DEPRECATED: this field will be removed in a future release + */ + resource: string; + /** + * Type of the destination service, e.g. db, elasticsearch. Should typically be the same as span.type. DEPRECATED: this field will be removed in a future release + */ + type?: null | string; + [k: string]: unknown; + }; + [k: string]: unknown; + }; + /** + * HTTP contains contextual information when the span concerns an HTTP request. + */ + http?: null | { + /** + * Method holds information about the method of the HTTP request. + */ + method?: null | string; + /** + * Response describes the HTTP response information in case the event was created as a result of an HTTP request. + */ + response?: null | { + /** + * DecodedBodySize holds the size of the decoded payload. + */ + decoded_body_size?: null | number; + /** + * EncodedBodySize holds the size of the encoded payload. + */ + encoded_body_size?: null | number; + /** + * Headers holds the http headers sent in the http response. + */ + headers?: null | { + /** + * This interface was referenced by `undefined`'s JSON-Schema definition + * via the `patternProperty` "[.*]*$". + */ + [k: string]: null | string[] | string; + }; + /** + * StatusCode sent in the http response. + */ + status_code?: null | number; + /** + * TransferSize holds the total size of the payload. + */ + transfer_size?: null | number; + [k: string]: unknown; + }; + /** + * Deprecated: Use Response.StatusCode instead. StatusCode sent in the http response. + */ + status_code?: null | number; + /** + * URL is the raw url of the correlating HTTP request. + */ + url?: null | string; + [k: string]: unknown; + }; + /** + * Message holds details related to message receiving and publishing if the captured event integrates with a messaging system + */ + message?: null | { + /** + * Age of the message. If the monitored messaging framework provides a timestamp for the message, agents may use it. Otherwise, the sending agent can add a timestamp in milliseconds since the Unix epoch to the message's metadata to be retrieved by the receiving agent. If a timestamp is not available, agents should omit this field. + */ + age?: null | { + /** + * Age of the message in milliseconds. + */ + ms?: null | number; + [k: string]: unknown; + }; + /** + * Body of the received message, similar to an HTTP request body + */ + body?: null | string; + /** + * Headers received with the message, similar to HTTP request headers. + */ + headers?: null | { + /** + * This interface was referenced by `undefined`'s JSON-Schema definition + * via the `patternProperty` "[.*]*$". + */ + [k: string]: null | string[] | string; + }; + /** + * Queue holds information about the message queue where the message is received. + */ + queue?: null | { + /** + * Name holds the name of the message queue where the message is received. + */ + name?: null | string; + [k: string]: unknown; + }; + /** + * RoutingKey holds the optional routing key of the received message as set on the queuing system, such as in RabbitMQ. + */ + routing_key?: null | string; + [k: string]: unknown; + }; + /** + * Service related information can be sent per span. Information provided here will override the more generic information retrieved from metadata, missing service fields will be retrieved from the metadata information. + */ + service?: null | { + /** + * Agent holds information about the APM agent capturing the event. + */ + agent?: null | { + /** + * EphemeralID is a free format ID used for metrics correlation by agents + */ + ephemeral_id?: null | string; + /** + * Name of the APM agent capturing information. + */ + name?: null | string; + /** + * Version of the APM agent capturing information. + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * Environment in which the monitored service is running, e.g. `production` or `staging`. + */ + environment?: null | string; + /** + * Framework holds information about the framework used in the monitored service. + */ + framework?: null | { + /** + * Name of the used framework + */ + name?: null | string; + /** + * Version of the used framework + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * ID holds a unique identifier for the service. + */ + id?: null | string; + /** + * Language holds information about the programming language of the monitored service. + */ + language?: null | { + /** + * Name of the used programming language + */ + name?: null | string; + /** + * Version of the used programming language + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * Name of the monitored service. + */ + name?: null | string; + /** + * Node must be a unique meaningful name of the service node. + */ + node?: null | { + /** + * Name of the service node + */ + configured_name?: null | string; + [k: string]: unknown; + }; + /** + * Origin contains the self-nested field groups for service. + */ + origin?: null | { + /** + * Immutable id of the service emitting this event. + */ + id?: null | string; + /** + * Immutable name of the service emitting this event. + */ + name?: null | string; + /** + * The version of the service the data was collected from. + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * Runtime holds information about the language runtime running the monitored service + */ + runtime?: null | { + /** + * Name of the language runtime + */ + name?: null | string; + /** + * Version of the language runtime + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * Target holds information about the outgoing service in case of an outgoing event + */ + target?: ( + | { + type: string; + [k: string]: unknown; + } + | { + name: string; + [k: string]: unknown; + } + ) & + ( + | (( + | { + type: string; + [k: string]: unknown; + } + | { + name: string; + [k: string]: unknown; + } + ) & + null) + | ( + | { + type: string; + [k: string]: unknown; + } + | { + name: string; + [k: string]: unknown; + } + ) + ); + /** + * Version of the monitored service. + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * Tags are a flat mapping of user-defined tags. On the agent side, tags are called labels. Allowed value types are string, boolean and number values. Tags are indexed and searchable. + */ + tags?: null | { + [k: string]: null | string | boolean | number; + }; + [k: string]: unknown; + }; + /** + * Duration of the span in milliseconds. When the span is a composite one, duration is the gross duration, including "whitespace" in between spans. + */ + duration: number; + /** + * ID holds the hex encoded 64 random bits ID of the event. + */ + id: string; + /** + * Links holds links to other spans, potentially in other traces. + */ + links?: null | Array<{ + /** + * SpanID holds the ID of the linked span. + */ + span_id: string; + /** + * TraceID holds the ID of the linked span's trace. + */ + trace_id: string; + [k: string]: unknown; + }>; + /** + * Name is the generic designation of a span in the scope of a transaction. + */ + name: string; + /** + * OTel contains unmapped OpenTelemetry attributes. + */ + otel?: null | { + /** + * Attributes hold the unmapped OpenTelemetry attributes. + */ + attributes?: null | { + [k: string]: unknown; + }; + /** + * SpanKind holds the incoming OpenTelemetry span kind. + */ + span_kind?: null | string; + [k: string]: unknown; + }; + /** + * Outcome of the span: success, failure, or unknown. Outcome may be one of a limited set of permitted values describing the success or failure of the span. It can be used for calculating error rates for outgoing requests. + */ + outcome?: 'success' | 'failure' | 'unknown' | null; + /** + * ParentID holds the hex encoded 64 random bits ID of the parent transaction or span. + */ + parent_id: string; + /** + * SampleRate applied to the monitored service at the time where this span was recorded. + */ + sample_rate?: null | number; + /** + * Stacktrace connected to this span event. + */ + stacktrace?: null | Array< + | { + classname: string; + [k: string]: unknown; + } + | { + filename: string; + [k: string]: unknown; + } + >; + /** + * Start is the offset relative to the transaction's timestamp identifying the start of the span, in milliseconds. + */ + start?: null | number; + /** + * Subtype is a further sub-division of the type (e.g. postgresql, elasticsearch) + */ + subtype?: null | string; + /** + * Sync indicates whether the span was executed synchronously or asynchronously. + */ + sync?: null | boolean; + /** + * Timestamp holds the recorded time of the event, UTC based and formatted as microseconds since Unix epoch + */ + timestamp?: null | number; + /** + * TraceID holds the hex encoded 128 random bits ID of the correlated trace. + */ + trace_id: string; + /** + * TransactionID holds the hex encoded 64 random bits ID of the correlated transaction. + */ + transaction_id?: null | string; + /** + * Type holds the span's type, and can have specific keywords within the service's domain (eg: 'request', 'backgroundjob', etc) + */ + type: string; + [k: string]: unknown; +} diff --git a/packages/kbn-apm-synthtrace/src/lib/apm/client/intake_v2/transaction.ts b/packages/kbn-apm-synthtrace/src/lib/apm/client/intake_v2/transaction.ts new file mode 100644 index 0000000000000..69588c95332b2 --- /dev/null +++ b/packages/kbn-apm-synthtrace/src/lib/apm/client/intake_v2/transaction.ts @@ -0,0 +1,661 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +export interface Transaction { + kind: 'transaction'; + /** + * Context holds arbitrary contextual information for the event. + */ + context?: null | { + /** + * Cloud holds fields related to the cloud or infrastructure the events are coming from. + */ + cloud?: null | { + /** + * Origin contains the self-nested field groups for cloud. + */ + origin?: null | { + /** + * The cloud account or organization id used to identify different entities in a multi-tenant environment. + */ + account?: null | { + /** + * The cloud account or organization id used to identify different entities in a multi-tenant environment. + */ + id?: null | string; + [k: string]: unknown; + }; + /** + * Name of the cloud provider. + */ + provider?: null | string; + /** + * Region in which this host, resource, or service is located. + */ + region?: null | string; + /** + * The cloud service name is intended to distinguish services running on different platforms within a provider. + */ + service?: null | { + /** + * The cloud service name is intended to distinguish services running on different platforms within a provider. + */ + name?: null | string; + [k: string]: unknown; + }; + [k: string]: unknown; + }; + [k: string]: unknown; + }; + /** + * Custom can contain additional metadata to be stored with the event. The format is unspecified and can be deeply nested objects. The information will not be indexed or searchable in Elasticsearch. + */ + custom?: null | { + [k: string]: unknown; + }; + /** + * Message holds details related to message receiving and publishing if the captured event integrates with a messaging system + */ + message?: null | { + /** + * Age of the message. If the monitored messaging framework provides a timestamp for the message, agents may use it. Otherwise, the sending agent can add a timestamp in milliseconds since the Unix epoch to the message's metadata to be retrieved by the receiving agent. If a timestamp is not available, agents should omit this field. + */ + age?: null | { + /** + * Age of the message in milliseconds. + */ + ms?: null | number; + [k: string]: unknown; + }; + /** + * Body of the received message, similar to an HTTP request body + */ + body?: null | string; + /** + * Headers received with the message, similar to HTTP request headers. + */ + headers?: null | { + /** + * This interface was referenced by `undefined`'s JSON-Schema definition + * via the `patternProperty` "[.*]*$". + */ + [k: string]: null | string[] | string; + }; + /** + * Queue holds information about the message queue where the message is received. + */ + queue?: null | { + /** + * Name holds the name of the message queue where the message is received. + */ + name?: null | string; + [k: string]: unknown; + }; + /** + * RoutingKey holds the optional routing key of the received message as set on the queuing system, such as in RabbitMQ. + */ + routing_key?: null | string; + [k: string]: unknown; + }; + /** + * Page holds information related to the current page and page referers. It is only sent from RUM agents. + */ + page?: null | { + /** + * Referer holds the URL of the page that 'linked' to the current page. + */ + referer?: null | string; + /** + * URL of the current page + */ + url?: null | string; + [k: string]: unknown; + }; + /** + * Request describes the HTTP request information in case the event was created as a result of an HTTP request. + */ + request?: null | { + /** + * Body only contais the request bod, not the query string information. It can either be a dictionary (for standard HTTP requests) or a raw request body. + */ + body?: + | null + | string + | { + [k: string]: unknown; + }; + /** + * Cookies used by the request, parsed as key-value objects. + */ + cookies?: null | { + [k: string]: unknown; + }; + /** + * Env holds environment variable information passed to the monitored service. + */ + env?: null | { + [k: string]: unknown; + }; + /** + * Headers includes any HTTP headers sent by the requester. Cookies will be taken by headers if supplied. + */ + headers?: null | { + /** + * This interface was referenced by `undefined`'s JSON-Schema definition + * via the `patternProperty` "[.*]*$". + */ + [k: string]: null | string[] | string; + }; + /** + * HTTPVersion holds information about the used HTTP version. + */ + http_version?: null | string; + /** + * Method holds information about the method of the HTTP request. + */ + method: string; + /** + * Socket holds information related to the recorded request, such as whether or not data were encrypted and the remote address. + */ + socket?: null | { + /** + * Encrypted indicates whether a request was sent as TLS/HTTPS request. DEPRECATED: this field will be removed in a future release. + */ + encrypted?: null | boolean; + /** + * RemoteAddress holds the network address sending the request. It should be obtained through standard APIs and not be parsed from any headers like 'Forwarded'. + */ + remote_address?: null | string; + [k: string]: unknown; + }; + /** + * URL holds information sucha as the raw URL, scheme, host and path. + */ + url?: null | { + /** + * Full, possibly agent-assembled URL of the request, e.g. https://example.com:443/search?q=elasticsearch#top. + */ + full?: null | string; + /** + * Hash of the request URL, e.g. 'top' + */ + hash?: null | string; + /** + * Hostname information of the request, e.g. 'example.com'." + */ + hostname?: null | string; + /** + * Path of the request, e.g. '/search' + */ + pathname?: null | string; + /** + * Port of the request, e.g. '443'. Can be sent as string or int. + */ + port?: null | string | number; + /** + * Protocol information for the recorded request, e.g. 'https:'. + */ + protocol?: null | string; + /** + * Raw unparsed URL of the HTTP request line, e.g https://example.com:443/search?q=elasticsearch. This URL may be absolute or relative. For more details, see https://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html#sec5.1.2. + */ + raw?: null | string; + /** + * Search contains the query string information of the request. It is expected to have values delimited by ampersands. + */ + search?: null | string; + [k: string]: unknown; + }; + [k: string]: unknown; + }; + /** + * Response describes the HTTP response information in case the event was created as a result of an HTTP request. + */ + response?: null | { + /** + * DecodedBodySize holds the size of the decoded payload. + */ + decoded_body_size?: null | number; + /** + * EncodedBodySize holds the size of the encoded payload. + */ + encoded_body_size?: null | number; + /** + * Finished indicates whether the response was finished or not. + */ + finished?: null | boolean; + /** + * Headers holds the http headers sent in the http response. + */ + headers?: null | { + /** + * This interface was referenced by `undefined`'s JSON-Schema definition + * via the `patternProperty` "[.*]*$". + */ + [k: string]: null | string[] | string; + }; + /** + * HeadersSent indicates whether http headers were sent. + */ + headers_sent?: null | boolean; + /** + * StatusCode sent in the http response. + */ + status_code?: null | number; + /** + * TransferSize holds the total size of the payload. + */ + transfer_size?: null | number; + [k: string]: unknown; + }; + /** + * Service related information can be sent per event. Information provided here will override the more generic information retrieved from metadata, missing service fields will be retrieved from the metadata information. + */ + service?: null | { + /** + * Agent holds information about the APM agent capturing the event. + */ + agent?: null | { + /** + * EphemeralID is a free format ID used for metrics correlation by agents + */ + ephemeral_id?: null | string; + /** + * Name of the APM agent capturing information. + */ + name?: null | string; + /** + * Version of the APM agent capturing information. + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * Environment in which the monitored service is running, e.g. `production` or `staging`. + */ + environment?: null | string; + /** + * Framework holds information about the framework used in the monitored service. + */ + framework?: null | { + /** + * Name of the used framework + */ + name?: null | string; + /** + * Version of the used framework + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * ID holds a unique identifier for the service. + */ + id?: null | string; + /** + * Language holds information about the programming language of the monitored service. + */ + language?: null | { + /** + * Name of the used programming language + */ + name?: null | string; + /** + * Version of the used programming language + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * Name of the monitored service. + */ + name?: null | string; + /** + * Node must be a unique meaningful name of the service node. + */ + node?: null | { + /** + * Name of the service node + */ + configured_name?: null | string; + [k: string]: unknown; + }; + /** + * Origin contains the self-nested field groups for service. + */ + origin?: null | { + /** + * Immutable id of the service emitting this event. + */ + id?: null | string; + /** + * Immutable name of the service emitting this event. + */ + name?: null | string; + /** + * The version of the service the data was collected from. + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * Runtime holds information about the language runtime running the monitored service + */ + runtime?: null | { + /** + * Name of the language runtime + */ + name?: null | string; + /** + * Version of the language runtime + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * Target holds information about the outgoing service in case of an outgoing event + */ + target?: ( + | { + type: string; + [k: string]: unknown; + } + | { + name: string; + [k: string]: unknown; + } + ) & + ( + | (( + | { + type: string; + [k: string]: unknown; + } + | { + name: string; + [k: string]: unknown; + } + ) & + null) + | ( + | { + type: string; + [k: string]: unknown; + } + | { + name: string; + [k: string]: unknown; + } + ) + ); + /** + * Version of the monitored service. + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * Tags are a flat mapping of user-defined tags. On the agent side, tags are called labels. Allowed value types are string, boolean and number values. Tags are indexed and searchable. + */ + tags?: null | { + [k: string]: null | string | boolean | number; + }; + /** + * User holds information about the correlated user for this event. If user data are provided here, all user related information from metadata is ignored, otherwise the metadata's user information will be stored with the event. + */ + user?: null | { + /** + * Domain of the logged in user + */ + domain?: null | string; + /** + * Email of the user. + */ + email?: null | string; + /** + * ID identifies the logged in user, e.g. can be the primary key of the user + */ + id?: null | string | number; + /** + * Name of the user. + */ + username?: null | string; + [k: string]: unknown; + }; + [k: string]: unknown; + }; + /** + * DroppedSpanStats holds information about spans that were dropped (for example due to transaction_max_spans or exit_span_min_duration). + */ + dropped_spans_stats?: null | Array<{ + /** + * DestinationServiceResource identifies the destination service resource being operated on. e.g. 'http://elastic.co:80', 'elasticsearch', 'rabbitmq/queue_name'. + */ + destination_service_resource?: null | string; + /** + * Duration holds duration aggregations about the dropped span. + */ + duration?: null | { + /** + * Count holds the number of times the dropped span happened. + */ + count?: null | number; + /** + * Sum holds dimensions about the dropped span's duration. + */ + sum?: null | { + /** + * Us represents the summation of the span duration. + */ + us?: null | number; + [k: string]: unknown; + }; + [k: string]: unknown; + }; + /** + * Outcome of the span: success, failure, or unknown. Outcome may be one of a limited set of permitted values describing the success or failure of the span. It can be used for calculating error rates for outgoing requests. + */ + outcome?: 'success' | 'failure' | 'unknown' | null; + /** + * ServiceTargetName identifies the instance name of the target service being operated on + */ + service_target_name?: null | string; + /** + * ServiceTargetType identifies the type of the target service being operated on e.g. 'oracle', 'rabbitmq' + */ + service_target_type?: null | string; + [k: string]: unknown; + }>; + /** + * Duration how long the transaction took to complete, in milliseconds with 3 decimal points. + */ + duration: number; + /** + * UserExperience holds metrics for measuring real user experience. This information is only sent by RUM agents. + */ + experience?: null | { + /** + * CumulativeLayoutShift holds the Cumulative Layout Shift (CLS) metric value, or a negative value if CLS is unknown. See https://web.dev/cls/ + */ + cls?: null | number; + /** + * FirstInputDelay holds the First Input Delay (FID) metric value, or a negative value if FID is unknown. See https://web.dev/fid/ + */ + fid?: null | number; + /** + * Longtask holds longtask duration/count metrics. + */ + longtask?: null | { + /** + * Count is the total number of of longtasks. + */ + count: number; + /** + * Max longtask duration + */ + max: number; + /** + * Sum of longtask durations + */ + sum: number; + [k: string]: unknown; + }; + /** + * TotalBlockingTime holds the Total Blocking Time (TBT) metric value, or a negative value if TBT is unknown. See https://web.dev/tbt/ + */ + tbt?: null | number; + [k: string]: unknown; + }; + /** + * FAAS holds fields related to Function as a Service events. + */ + faas?: null | { + /** + * Indicates whether a function invocation was a cold start or not. + */ + coldstart?: null | boolean; + /** + * The request id of the function invocation. + */ + execution?: null | string; + /** + * A unique identifier of the invoked serverless function. + */ + id?: null | string; + /** + * The lambda function name. + */ + name?: null | string; + /** + * Trigger attributes. + */ + trigger?: null | { + /** + * The id of the origin trigger request. + */ + request_id?: null | string; + /** + * The trigger type. + */ + type?: null | string; + [k: string]: unknown; + }; + /** + * The lambda function version. + */ + version?: null | string; + [k: string]: unknown; + }; + /** + * ID holds the hex encoded 64 random bits ID of the event. + */ + id: string; + /** + * Links holds links to other spans, potentially in other traces. + */ + links?: null | Array<{ + /** + * SpanID holds the ID of the linked span. + */ + span_id: string; + /** + * TraceID holds the ID of the linked span's trace. + */ + trace_id: string; + [k: string]: unknown; + }>; + /** + * Marks capture the timing of a significant event during the lifetime of a transaction. Marks are organized into groups and can be set by the user or the agent. Marks are only reported by RUM agents. + */ + marks?: null | { + [k: string]: null | { + [k: string]: null | number; + }; + }; + /** + * Name is the generic designation of a transaction in the scope of a single service, eg: 'GET /users/:id'. + */ + name?: null | string; + /** + * OTel contains unmapped OpenTelemetry attributes. + */ + otel?: null | { + /** + * Attributes hold the unmapped OpenTelemetry attributes. + */ + attributes?: null | { + [k: string]: unknown; + }; + /** + * SpanKind holds the incoming OpenTelemetry span kind. + */ + span_kind?: null | string; + [k: string]: unknown; + }; + /** + * Outcome of the transaction with a limited set of permitted values, describing the success or failure of the transaction from the service's perspective. It is used for calculating error rates for incoming requests. Permitted values: success, failure, unknown. + */ + outcome?: 'success' | 'failure' | 'unknown' | null; + /** + * ParentID holds the hex encoded 64 random bits ID of the parent transaction or span. + */ + parent_id?: null | string; + /** + * Result of the transaction. For HTTP-related transactions, this should be the status code formatted like 'HTTP 2xx'. + */ + result?: null | string; + /** + * SampleRate applied to the monitored service at the time where this transaction was recorded. Allowed values are [0..1]. A SampleRate <1 indicates that not all spans are recorded. + */ + sample_rate?: null | number; + /** + * Sampled indicates whether or not the full information for a transaction is captured. If a transaction is unsampled no spans and less context information will be reported. + */ + sampled?: null | boolean; + /** + * Session holds optional transaction session information for RUM. + */ + session?: null | { + /** + * ID holds a session ID for grouping a set of related transactions. + */ + id: string; + /** + * Sequence holds an optional sequence number for a transaction within a session. It is not meaningful to compare sequences across two different sessions. + */ + sequence?: null | number; + [k: string]: unknown; + }; + /** + * SpanCount counts correlated spans. + */ + span_count: { + /** + * Dropped is the number of correlated spans that have been dropped by the APM agent recording the transaction. + */ + dropped?: null | number; + /** + * Started is the number of correlated spans that are recorded. + */ + started: number; + [k: string]: unknown; + }; + /** + * Timestamp holds the recorded time of the event, UTC based and formatted as microseconds since Unix epoch + */ + timestamp?: null | number; + /** + * TraceID holds the hex encoded 128 random bits ID of the correlated trace. + */ + trace_id: string; + /** + * Type expresses the transaction's type as keyword that has specific relevance within the service's domain, eg: 'request', 'backgroundjob'. + */ + type: string; + [k: string]: unknown; +} diff --git a/packages/kbn-apm-synthtrace/src/lib/apm/instance.ts b/packages/kbn-apm-synthtrace/src/lib/apm/instance.ts index c89fda7f576fb..d212c1f2cead0 100644 --- a/packages/kbn-apm-synthtrace/src/lib/apm/instance.ts +++ b/packages/kbn-apm-synthtrace/src/lib/apm/instance.ts @@ -22,9 +22,10 @@ export class Instance extends Entity { }); } - span(spanName: string, spanType: string, spanSubtype?: string) { + span(spanName: string, spanType: string, spanSubtype?: string, apmFields?: ApmFields) { return new Span({ ...this.fields, + ...apmFields, 'span.name': spanName, 'span.type': spanType, 'span.subtype': spanSubtype, diff --git a/packages/kbn-apm-synthtrace/src/lib/apm/span.ts b/packages/kbn-apm-synthtrace/src/lib/apm/span.ts index 91cbacadf59cc..388e65385e7dd 100644 --- a/packages/kbn-apm-synthtrace/src/lib/apm/span.ts +++ b/packages/kbn-apm-synthtrace/src/lib/apm/span.ts @@ -6,6 +6,7 @@ * Side Public License, v 1. */ +import url from 'url'; import { BaseSpan } from './base_span'; import { generateShortId } from '../utils/generate_id'; import { ApmFields } from './apm_fields'; @@ -39,3 +40,56 @@ export class Span extends BaseSpan { return this; } } + +export function httpExitSpan({ + spanName, + destinationUrl, +}: { + spanName: string; + destinationUrl: string; +}): [string, string, string, ApmFields] { + // origin: 'http://opbeans-go:3000', + // host: 'opbeans-go:3000', + // hostname: 'opbeans-go', + // port: '3000', + const destination = new url.URL(destinationUrl); + + const spanType = 'external'; + const spanSubType = 'http'; + + return [ + spanName, + spanType, + spanSubType, + { + 'destination.address': destination.hostname, + 'destination.port': parseInt(destination.port, 10), + 'service.target.name': destination.host, + 'span.destination.service.name': destination.origin, + 'span.destination.service.resource': destination.host, + 'span.destination.service.type': 'external', + }, + ]; +} + +export function dbExitSpan({ + spanName, + spanSubType, +}: { + spanName: string; + spanSubType?: string; +}): [string, string, string | undefined, ApmFields] { + const spanType = 'db'; + + return [ + spanName, + spanType, + spanSubType, + { + 'service.target.type': spanSubType, + 'span.destination.service.name': spanSubType, + 'span.destination.service.resource': spanSubType, + 'span.destination.service.type': spanType, + }, + ]; +} diff --git a/packages/kbn-apm-synthtrace/src/lib/entity_generator.ts b/packages/kbn-apm-synthtrace/src/lib/entity_generator.ts index 67ae790a46c20..08263ab152432 100644 --- a/packages/kbn-apm-synthtrace/src/lib/entity_generator.ts +++ b/packages/kbn-apm-synthtrace/src/lib/entity_generator.ts @@ -35,7 +35,7 @@ export class EntityGenerator implements EntityIterable { }; const peekedNumberOfEvents = peek.done ? 0 : peek.value.serialize().length; - this._ratePerMinute = interval.ratePerMinute() * peekedNumberOfEvents; + this._ratePerMinute = interval.estimatedRatePerMinute() * peekedNumberOfEvents; } private readonly _order: 'desc' | 'asc'; @@ -52,7 +52,7 @@ export class EntityGenerator implements EntityIterable { } private readonly _ratePerMinute: number; - ratePerMinute() { + estimatedRatePerMinute() { return this._ratePerMinute; } diff --git a/packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts b/packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts index 2bc7a52e84d8c..77b18e57345db 100644 --- a/packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts +++ b/packages/kbn-apm-synthtrace/src/lib/entity_iterable.ts @@ -15,7 +15,7 @@ export interface EntityIterable AsyncIterable { order(): 'desc' | 'asc'; - ratePerMinute(): number; + estimatedRatePerMinute(): number; toArray(): ApmFields[]; @@ -40,7 +40,7 @@ export class EntityArrayIterable } private readonly _ratePerMinute: number; - ratePerMinute() { + estimatedRatePerMinute() { return this._ratePerMinute; } diff --git a/packages/kbn-apm-synthtrace/src/lib/entity_streams.ts b/packages/kbn-apm-synthtrace/src/lib/entity_streams.ts index 4d5e8311c0e7e..c706ef2065f28 100644 --- a/packages/kbn-apm-synthtrace/src/lib/entity_streams.ts +++ b/packages/kbn-apm-synthtrace/src/lib/entity_streams.ts @@ -15,7 +15,9 @@ export class EntityStreams implements EntityIterable { if (orders.size > 1) throw Error('Can only combine intervals with the same order()'); this._order = orders.has('asc') ? 'asc' : 'desc'; - this._ratePerMinute = dataGenerators.map((d) => d.ratePerMinute()).reduce((a, b) => a + b, 0); + this._ratePerMinute = dataGenerators + .map((d) => d.estimatedRatePerMinute()) + .reduce((a, b) => a + b, 0); } private readonly _order: 'desc' | 'asc'; @@ -24,7 +26,7 @@ export class EntityStreams implements EntityIterable { } private readonly _ratePerMinute: number; - ratePerMinute() { + estimatedRatePerMinute() { return this._ratePerMinute; } diff --git a/packages/kbn-apm-synthtrace/src/lib/interval.ts b/packages/kbn-apm-synthtrace/src/lib/interval.ts index 48d15a1a4d53f..a3fef71b79fda 100644 --- a/packages/kbn-apm-synthtrace/src/lib/interval.ts +++ b/packages/kbn-apm-synthtrace/src/lib/interval.ts @@ -11,12 +11,18 @@ import { EntityIterable } from './entity_iterable'; import { EntityGenerator } from './entity_generator'; import { Serializable } from './serializable'; -export function parseInterval(interval: string): [number, unitOfTime.DurationConstructor] { +export function parseInterval(interval: string): { + intervalAmount: number; + intervalUnit: unitOfTime.DurationConstructor; +} { const args = interval.match(/(\d+)(s|m|h|d)/); if (!args || args.length < 3) { throw new Error('Failed to parse interval'); } - return [Number(args[1]), args[2] as any]; + return { + intervalAmount: Number(args[1]), + intervalUnit: args[2] as unitOfTime.DurationConstructor, + }; } export interface IntervalOptions { @@ -31,9 +37,9 @@ export interface IntervalOptions { export class Interval implements Iterable { constructor(public readonly options: IntervalOptions) { - const parsed = parseInterval(options.interval); - this.intervalAmount = parsed[0]; - this.intervalUnit = parsed[1]; + const { intervalAmount, intervalUnit } = parseInterval(options.interval); + this.intervalAmount = intervalAmount; + this.intervalUnit = intervalUnit; this.from = this.options.from; this.to = this.options.to; } @@ -66,7 +72,7 @@ export class Interval implements Iterable { return new Interval({ ...this.options, intervalUpper, rateUpper }); } - ratePerMinute(): number { + estimatedRatePerMinute(): number { const rate = this.options.rateUpper ? Math.max(1, this.options.rateUpper) : this.options.yieldRate ?? 1; diff --git a/packages/kbn-apm-synthtrace/src/lib/stream_processor.ts b/packages/kbn-apm-synthtrace/src/lib/stream_processor.ts index a6f8f923b3714..0d7d0ff5dfa51 100644 --- a/packages/kbn-apm-synthtrace/src/lib/stream_processor.ts +++ b/packages/kbn-apm-synthtrace/src/lib/stream_processor.ts @@ -45,9 +45,11 @@ export class StreamProcessor { private readonly streamAggregators: Array>; constructor(private readonly options: StreamProcessorOptions) { - [this.intervalAmount, this.intervalUnit] = this.options.flushInterval + const { intervalAmount, intervalUnit } = this.options.flushInterval ? parseInterval(this.options.flushInterval) : parseInterval('1m'); + this.intervalAmount = intervalAmount; + this.intervalUnit = intervalUnit; this.name = this.options?.name ?? 'StreamProcessor'; this.version = this.options.version ?? '8.0.0'; this.versionMajor = Number.parseInt(this.version.split('.')[0], 10); @@ -56,8 +58,8 @@ export class StreamProcessor { } private readonly intervalAmount: number; private readonly intervalUnit: any; - private readonly name: string; - private readonly version: string; + public readonly name: string; + public readonly version: string; private readonly versionMajor: number; // TODO move away from chunking and feed this data one by one to processors @@ -178,6 +180,7 @@ export class StreamProcessor { private static enrich(document: ApmFields, version: string, versionMajor: number): ApmFields { // see https://github.com/elastic/apm-server/issues/7088 can not be provided as flat key/values document.observer = { + type: 'synthtrace', version: version ?? '8.2.0', version_major: versionMajor, }; diff --git a/packages/kbn-apm-synthtrace/src/lib/timerange.ts b/packages/kbn-apm-synthtrace/src/lib/timerange.ts index 41532157b3b91..5658159fec8b9 100644 --- a/packages/kbn-apm-synthtrace/src/lib/timerange.ts +++ b/packages/kbn-apm-synthtrace/src/lib/timerange.ts @@ -14,6 +14,22 @@ export class Timerange { interval(interval: string) { return new Interval({ from: this.from, to: this.to, interval }); } + + ratePerMinute(rateInTpm: number) { + const intervalPerSecond = Math.max(1, 60 / rateInTpm); + + // rate per second + let interval = `${intervalPerSecond}s`; + let rate = (rateInTpm / 60) * intervalPerSecond; + + // rate per minute + if (!Number.isInteger(rate) || !Number.isInteger(intervalPerSecond)) { + interval = '1m'; + rate = rate * 60; + } + + return new Interval({ from: this.from, to: this.to, interval, yieldRate: rate }); + } } export function timerange(from: Date | number, to: Date | number) { diff --git a/packages/kbn-apm-synthtrace/src/lib/utils/merge_iterable.ts b/packages/kbn-apm-synthtrace/src/lib/utils/merge_iterable.ts index 1b6fe82e7bd46..ab48a99bea5ae 100644 --- a/packages/kbn-apm-synthtrace/src/lib/utils/merge_iterable.ts +++ b/packages/kbn-apm-synthtrace/src/lib/utils/merge_iterable.ts @@ -17,7 +17,7 @@ export function merge( if (iterables.length === 1) return iterables[0]; const iterators = iterables.map<{ it: Iterator; weight: number }>((i) => { - return { it: i[Symbol.iterator](), weight: Math.max(1, i.ratePerMinute()) }; + return { it: i[Symbol.iterator](), weight: Math.max(1, i.estimatedRatePerMinute()) }; }); let done = false; const myIterable: Iterable = { diff --git a/packages/kbn-apm-synthtrace/src/scenarios/aws_lambda.ts b/packages/kbn-apm-synthtrace/src/scenarios/aws_lambda.ts index 95879d6912d7a..fa04d6e4f6465 100644 --- a/packages/kbn-apm-synthtrace/src/scenarios/aws_lambda.ts +++ b/packages/kbn-apm-synthtrace/src/scenarios/aws_lambda.ts @@ -21,7 +21,7 @@ const scenario: Scenario = async (runOptions: RunOptions) => { return { generate: ({ from, to }) => { const range = timerange(from, to); - const timestamps = range.interval('1s').rate(3); + const timestamps = range.ratePerMinute(180); const instance = apm.service('lambda-python', ENVIRONMENT, 'python').instance('instance'); diff --git a/packages/kbn-apm-synthtrace/src/scenarios/distributed_trace.ts b/packages/kbn-apm-synthtrace/src/scenarios/distributed_trace.ts new file mode 100644 index 0000000000000..a87cbfe5ab4d3 --- /dev/null +++ b/packages/kbn-apm-synthtrace/src/scenarios/distributed_trace.ts @@ -0,0 +1,93 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { apm, timerange } from '../..'; +import { ApmFields } from '../lib/apm/apm_fields'; +import { Scenario } from '../cli/scenario'; + +import { RunOptions } from '../cli/utils/parse_run_cli_flags'; +import { getSynthtraceEnvironment } from '../lib/utils/get_synthtrace_environment'; +import { httpExitSpan } from '../lib/apm/span'; + +const ENVIRONMENT = getSynthtraceEnvironment(__filename); + +const scenario: Scenario = async (runOptions: RunOptions) => { + return { + generate: ({ from, to }) => { + const range = timerange(from, to); + const transactionName = '240rpm/75% 1000ms'; + const successfulTimestamps = range.interval('1s').rate(3); + + const opbeansRum = apm.service('opbeans-rum', ENVIRONMENT, 'rum-js').instance('my-instance'); + const opbeansNode = apm + .service('opbeans-node', ENVIRONMENT, 'nodejs') + .instance('my-instance'); + const opbeansGo = apm.service('opbeans-go', ENVIRONMENT, 'go').instance('my-instance'); + + const traces = successfulTimestamps.generator((timestamp) => { + // opbeans-rum + return opbeansRum + .transaction(transactionName) + .duration(400) + .timestamp(timestamp) + .children( + // opbeans-rum -> opbeans-node + opbeansRum + .span( + ...httpExitSpan({ + spanName: 'GET /api/products/top', + destinationUrl: 'http://opbeans-node:3000', + }) + ) + .duration(300) + .timestamp(timestamp) + + .children( + // opbeans-node + opbeansNode + .transaction('Initial transaction in opbeans-node') + .duration(300) + .timestamp(timestamp) + .children( + opbeansNode + // opbeans-node -> opbeans-go + .span( + ...httpExitSpan({ + spanName: 'GET opbeans-go:3000', + destinationUrl: 'http://opbeans-go:3000', + }) + ) + .timestamp(timestamp) + .duration(400) + + .children( + // opbeans-go + opbeansGo + + .transaction('Initial transaction in opbeans-go') + .timestamp(timestamp) + .duration(200) + .children( + opbeansGo + .span('custom_operation', 'custom') + .timestamp(timestamp) + .duration(100) + .success() + ) + ) + ) + ) + ); + }); + + return traces; + }, + }; +}; + +export default scenario; diff --git a/packages/kbn-apm-synthtrace/src/scenarios/high_throughput.ts b/packages/kbn-apm-synthtrace/src/scenarios/high_throughput.ts new file mode 100644 index 0000000000000..41b21df2e83e1 --- /dev/null +++ b/packages/kbn-apm-synthtrace/src/scenarios/high_throughput.ts @@ -0,0 +1,107 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { random } from 'lodash'; +import { apm, timerange } from '../..'; +import { ApmFields } from '../lib/apm/apm_fields'; +import { Instance } from '../lib/apm/instance'; +import { Scenario } from '../cli/scenario'; +import { getLogger } from '../cli/utils/get_common_services'; +import { RunOptions } from '../cli/utils/parse_run_cli_flags'; + +const scenario: Scenario = async (runOptions: RunOptions) => { + const logger = getLogger(runOptions); + + const languages = ['go', 'dotnet', 'java', 'python']; + const services = ['web', 'order-processing', 'api-backend']; + + return { + generate: ({ from, to }) => { + const range = timerange(from, to); + + const successfulTimestamps = range.interval('1s').randomize(100, 180); + + const instances = services.map((service, index) => + apm + .service( + `${service}-${languages[index % languages.length]}`, + 'production', + languages[index % languages.length] + ) + .instance(`instance-${index}`) + ); + const entities = [ + 'order', + 'book', + 'product', + 'baskets', + 'user', + 'exporter', + 'set', + 'profile', + ]; + const routes = (e: string) => { + return [ + `HEAD /${e}/{id}`, + `GET /${e}/{id}`, + `PUT /${e}s`, + `POST /${e}s`, + `DELETE /${e}/{id}`, + `GET /${e}s`, + ]; + }; + const urls = entities.flatMap(routes); + + const instanceSpans = (instance: Instance, url: string, index: number) => { + const successfulTraceEvents = successfulTimestamps.generator((timestamp) => { + const mod = (index % 4) + 1; + const randomHigh = random(100, mod * 1000, false); + const randomLow = random(10, randomHigh / 10 + mod * 3, false); + const duration = random(randomLow, randomHigh, false); + const childDuration = random(1, duration); + const remainderDuration = duration - childDuration; + const generateError = index % random(mod, 9) === 0; + const generateChildError = index % random(mod, 9) === 0; + const span = instance + .transaction(url) + .timestamp(timestamp) + .duration(duration) + .children( + instance + .span('GET apm-*/_search', 'db', 'elasticsearch') + .duration(childDuration) + .destination('elasticsearch') + .timestamp(timestamp) + .outcome(generateError && generateChildError ? 'failure' : 'success'), + instance + .span('custom_operation', 'custom') + .duration(remainderDuration) + .success() + .timestamp(timestamp + childDuration) + ); + return !generateError + ? span.success() + : span + .failure() + .errors(instance.error(`No handler for ${url}`).timestamp(timestamp + 50)); + }); + + return successfulTraceEvents; + }; + + return instances + .flatMap((instance) => urls.map((url) => ({ instance, url }))) + .map(({ instance, url }, index) => + logger.perf('generating_apm_events', () => instanceSpans(instance, url, index)) + ) + .reduce((p, c) => p.merge(c)); + }, + }; +}; + +export default scenario; diff --git a/packages/kbn-apm-synthtrace/src/scenarios/low_throughput.ts b/packages/kbn-apm-synthtrace/src/scenarios/low_throughput.ts index ad94ba7eb1e7c..d842a0650b423 100644 --- a/packages/kbn-apm-synthtrace/src/scenarios/low_throughput.ts +++ b/packages/kbn-apm-synthtrace/src/scenarios/low_throughput.ts @@ -20,36 +20,35 @@ const ENVIRONMENT = getSynthtraceEnvironment(__filename); const scenario: Scenario = async (runOptions: RunOptions) => { const logger = getLogger(runOptions); - const numServices = 3; const languages = ['go', 'dotnet', 'java', 'python']; - const services = ['web', 'order-processing', 'api-backend', 'proxy']; + const services = ['web', 'order-processing', 'api-backend']; return { generate: ({ from, to }) => { const range = timerange(from, to); - const successfulTimestamps = range.interval('1s').rate(1); + const successfulTimestamps = range.ratePerMinute(60); // `.randomize(3, 180); - const instances = [...Array(numServices).keys()].map((index) => + const instances = services.map((service, index) => apm .service( `${services[index % services.length]}-${languages[index % languages.length]}-${index}`, ENVIRONMENT, languages[index % languages.length] ) - .instance('instance') + .instance(`instance-${index}`) ); const urls = ['GET /order/{id}', 'POST /basket/{id}', 'DELETE /basket', 'GET /products']; const instanceSpans = (instance: Instance, url: string, index: number) => { const successfulTraceEvents = successfulTimestamps.generator((timestamp) => { - const mod = index % 4; - const randomHigh = random(100, mod * 1000); - const randomLow = random(10, randomHigh / 10 + mod * 3); - const duration = random(randomLow, randomHigh); - const childDuration = random(randomLow, duration); + const mod = (index % 4) + 1; + const randomHigh = random(100, mod * 1000, false); + const randomLow = random(10, randomHigh / 10 + mod * 3, false); + const duration = random(randomLow, randomHigh, false); + const childDuration = random(randomLow, duration, false); const remainderDuration = duration - childDuration; const generateError = index % random(mod, 9) === 0; const generateChildError = index % random(mod, 9) === 0; diff --git a/packages/kbn-apm-synthtrace/src/scenarios/many_services.ts b/packages/kbn-apm-synthtrace/src/scenarios/many_services.ts index 9353fe13f6ca6..501d0e678f0f4 100644 --- a/packages/kbn-apm-synthtrace/src/scenarios/many_services.ts +++ b/packages/kbn-apm-synthtrace/src/scenarios/many_services.ts @@ -29,7 +29,7 @@ const scenario: Scenario = async (runOptions: RunOptions) => { generate: ({ from, to }) => { const range = timerange(from, to); - const successfulTimestamps = range.interval('1s').rate(3); + const successfulTimestamps = range.ratePerMinute(180); const instances = [...Array(numServices).keys()].map((index) => apm @@ -38,7 +38,7 @@ const scenario: Scenario = async (runOptions: RunOptions) => { ENVIRONMENT, languages[index % languages.length] ) - .instance('instance') + .instance(`instance-${index}`) ); const urls = ['GET /order/{id}', 'POST /basket/{id}', 'DELETE /basket', 'GET /products']; diff --git a/packages/kbn-apm-synthtrace/src/scenarios/simple_trace.ts b/packages/kbn-apm-synthtrace/src/scenarios/simple_trace.ts index edff51c11a9e4..f8444ab6e5879 100644 --- a/packages/kbn-apm-synthtrace/src/scenarios/simple_trace.ts +++ b/packages/kbn-apm-synthtrace/src/scenarios/simple_trace.ts @@ -27,9 +27,8 @@ const scenario: Scenario = async (runOptions: RunOptions) => { const transactionName = '240rpm/75% 1000ms'; - const successfulTimestamps = range.interval('1s').rate(3); - - const failedTimestamps = range.interval('1s').rate(1); + const successfulTimestamps = range.ratePerMinute(180); + const failedTimestamps = range.ratePerMinute(180); const instances = [...Array(numServices).keys()].map((index) => apm.service(`opbeans-go-${index}`, ENVIRONMENT, 'go').instance('instance') diff --git a/packages/kbn-apm-synthtrace/src/test/apm_events_to_elasticsearch_output.test.ts b/packages/kbn-apm-synthtrace/src/test/apm_events_to_elasticsearch_output.test.ts index 3d4225cf3f243..afafcc0c49665 100644 --- a/packages/kbn-apm-synthtrace/src/test/apm_events_to_elasticsearch_output.test.ts +++ b/packages/kbn-apm-synthtrace/src/test/apm_events_to_elasticsearch_output.test.ts @@ -46,6 +46,7 @@ describe('output apm events to elasticsearch', () => { "version": "1.4", }, "observer": Object { + "type": "synthtrace", "version": "8.0.0", "version_major": 8, }, diff --git a/packages/kbn-apm-synthtrace/src/test/rate_per_minute.test.ts b/packages/kbn-apm-synthtrace/src/test/rate_per_minute.test.ts index 73517976737bb..e40848ab9f47b 100644 --- a/packages/kbn-apm-synthtrace/src/test/rate_per_minute.test.ts +++ b/packages/kbn-apm-synthtrace/src/test/rate_per_minute.test.ts @@ -11,21 +11,13 @@ import { apm } from '../lib/apm'; import { timerange } from '../lib/timerange'; import { ApmFields } from '../lib/apm/apm_fields'; +const range = timerange(new Date('2021-01-01T00:00:00.000Z'), new Date('2021-01-01T00:15:00.000Z')); + describe('rate per minute calculations', () => { let iterable: EntityIterable; let arrayIterable: EntityArrayIterable; let events: Array>; - const range = timerange( - new Date('2021-01-01T00:00:00.000Z'), - new Date('2021-01-01T00:15:00.000Z') - ); - - const i1r3 = range.interval('1m').rate(3); - const i5r6 = range.interval('5m').rate(6); - const i30r6 = range.interval('30m').rate(6); - const i1sr3 = range.interval('1s').rate(3); - beforeEach(() => { const javaService = apm.service('opbeans-java', 'production', 'java'); const javaInstance = javaService.instance('instance-1'); @@ -50,26 +42,44 @@ describe('rate per minute calculations', () => { events = iterable.toArray(); arrayIterable = new EntityArrayIterable(events); }); + it('array iterable returns exact rate per minute', () => { - expect(arrayIterable.ratePerMinute()).toEqual(2); + expect(arrayIterable.estimatedRatePerMinute()).toEqual(2); }); it('iterable returns rate per minute approximation', () => { - expect(iterable.ratePerMinute()).toEqual(2); + expect(iterable.estimatedRatePerMinute()).toEqual(2); }); it('iterable returns same rate as materialized iterable', () => { - expect(iterable.ratePerMinute()).toEqual(arrayIterable.ratePerMinute()); + expect(iterable.estimatedRatePerMinute()).toEqual(arrayIterable.estimatedRatePerMinute()); }); +}); +describe('estimatedRatePerMinute', () => { it('interval of 3 per minute returns 3', () => { - expect(i1r3.ratePerMinute()).toEqual(3); + expect(range.interval('1m').rate(3).estimatedRatePerMinute()).toEqual(3); }); + it('interval of 6 per 5 minutes returns 6/5', () => { - expect(i5r6.ratePerMinute()).toEqual(6 / 5); + expect(range.interval('5m').rate(6).estimatedRatePerMinute()).toEqual(6 / 5); }); + it('interval of 6 per 30 minutes returns 6/30', () => { - expect(i30r6.ratePerMinute()).toEqual(6 / 30); + expect(range.interval('30m').rate(6).estimatedRatePerMinute()).toEqual(6 / 30); }); + it('interval of 3 per second returns 60 * 3', () => { - expect(i1sr3.ratePerMinute()).toEqual(60 * 3); + expect(range.interval('1s').rate(3).estimatedRatePerMinute()).toEqual(60 * 3); + }); + + it('ratePerMinute of 180 returns 180', () => { + expect(range.ratePerMinute(180).estimatedRatePerMinute()).toEqual(180); + }); + + it('ratePerMinute of 1 returns 1', () => { + expect(range.ratePerMinute(1).estimatedRatePerMinute()).toEqual(1); + }); + + it('ratePerMinute of 61 returns 61', () => { + expect(range.ratePerMinute(61).estimatedRatePerMinute()).toEqual(61); }); }); diff --git a/packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts b/packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts index cd967a7219b78..f3c80eb3b22e6 100644 --- a/packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts +++ b/packages/kbn-ci-stats-reporter/src/ci_stats_reporter.ts @@ -50,7 +50,7 @@ export interface CiStatsMetric { /** optional limit which will generate an error on PRs when the metric exceeds the limit */ limit?: number; /** - * path, relative to the repo, where the config file contianing limits + * path, relative to the repo, where the config file containing limits * is kept. Linked from PR comments instructing contributors how to fix * their PRs. */ diff --git a/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges.test.tsx b/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges.test.tsx index ce2f4f3e6a9fe..20a694a59283e 100644 --- a/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges.test.tsx +++ b/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges.test.tsx @@ -59,7 +59,6 @@ describe('Color Ranges', () => { continuity: 'none', }, showExtraActions: true, - displayInfinity: false, dispatch, }; }); diff --git a/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges.tsx b/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges.tsx index 99055f904d2ea..2a8a1bbf4b366 100644 --- a/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges.tsx +++ b/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges.tsx @@ -26,7 +26,6 @@ export interface ColorRangesProps { colorRanges: ColorRange[]; paletteConfiguration: CustomPaletteParams | undefined; showExtraActions: boolean; - displayInfinity: boolean; dispatch: Dispatch; } @@ -34,7 +33,6 @@ export function ColorRanges({ colorRanges, paletteConfiguration, showExtraActions, - displayInfinity, dispatch, }: ColorRangesProps) { const [colorRangesValidity, setColorRangesValidity] = useState< @@ -47,8 +45,8 @@ export function ColorRanges({ const rangeType = paletteConfiguration?.rangeType ?? DEFAULT_RANGE_TYPE; useEffect(() => { - setColorRangesValidity(validateColorRanges(colorRanges)); - }, [colorRanges]); + setColorRangesValidity(validateColorRanges(colorRanges, rangeType === 'percent')); + }, [colorRanges, rangeType]); return ( ))} @@ -82,7 +79,6 @@ export function ColorRanges({ index={colorRanges.length - 1} validation={colorRangesValidity.last} accessor="end" - displayInfinity={displayInfinity} /> ) : null} diff --git a/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges_item.tsx b/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges_item.tsx index 33caaece5cfcf..d38f8ba527547 100644 --- a/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges_item.tsx +++ b/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges_item.tsx @@ -31,7 +31,7 @@ import { } from '../../../palettes'; import { RelatedIcon } from '../assets/related'; -import { isLastItem } from './utils'; +import { getAutoBoundInformation, isLastItem } from './utils'; import { isValidColor } from '../utils'; import { ColorRangeDeleteButton, @@ -52,7 +52,6 @@ export interface ColorRangesItemProps { continuity: PaletteContinuity; accessor: ColorRangeAccessor; validation?: ColorRangeValidation; - displayInfinity: boolean; } type ColorRangeItemMode = 'value' | 'auto' | 'edit'; @@ -68,23 +67,6 @@ const getMode = ( return (isLast ? checkIsMaxContinuity : checkIsMinContinuity)(continuity) ? 'auto' : 'edit'; }; -const getPlaceholderForAutoMode = (isLast: boolean, displayInfinity: boolean) => - isLast - ? displayInfinity - ? i18n.translate('coloring.dynamicColoring.customPalette.extentPlaceholderInfinity', { - defaultMessage: 'Infinity', - }) - : i18n.translate('coloring.dynamicColoring.customPalette.maxValuePlaceholder', { - defaultMessage: 'Max. value', - }) - : displayInfinity - ? i18n.translate('coloring.dynamicColoring.customPalette.extentPlaceholderNegativeInfinity', { - defaultMessage: '-Infinity', - }) - : i18n.translate('coloring.dynamicColoring.customPalette.minValuePlaceholder', { - defaultMessage: 'Min. value', - }); - const getActionButton = (mode: ColorRangeItemMode) => { if (mode === 'value') { return ColorRangeDeleteButton; @@ -95,7 +77,7 @@ const getActionButton = (mode: ColorRangeItemMode) => { const getAppend = (rangeType: CustomPaletteParams['rangeType'], mode: ColorRangeItemMode) => { const items: EuiFieldNumberProps['append'] = []; - if (rangeType === 'percent' && mode !== 'auto') { + if (rangeType === 'percent') { items.push('%'); } @@ -111,7 +93,6 @@ export function ColorRangeItem({ validation, continuity, dispatch, - displayInfinity, }: ColorRangesItemProps) { const { dataBounds, palettes } = useContext(ColorRangesContext); const [popoverInFocus, setPopoverInFocus] = useState(false); @@ -185,6 +166,12 @@ export function ColorRangeItem({ [euiTheme.size.xl] ); + const autoBoundInfo = getAutoBoundInformation({ + isPercentage: rangeType === 'percent', + isUpper: isLast, + isAuto: mode === 'auto', + }); + return ( @@ -230,7 +217,7 @@ export function ColorRangeItem({ } disabled={isDisabled} onChange={onValueChange} - placeholder={mode === 'auto' ? getPlaceholderForAutoMode(isLast, displayInfinity) : ''} + placeholder={mode === 'auto' ? autoBoundInfo.representation : ''} append={getAppend(rangeType, mode)} onBlur={onLeaveFocus} data-test-subj={`lnsPalettePanel_dynamicColoring_range_value_${index}`} @@ -251,8 +238,9 @@ export function ColorRangeItem({ continuity={continuity} rangeType={rangeType} colorRanges={colorRanges} - displayInfinity={displayInfinity} dispatch={dispatch} + tooltipContent={autoBoundInfo.actionDescription} + iconFactory={autoBoundInfo.icon} accessor={accessor} /> diff --git a/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges_item_buttons.tsx b/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges_item_buttons.tsx index e8f0d8269d0bd..5cd9bb50bafb1 100644 --- a/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges_item_buttons.tsx +++ b/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges_item_buttons.tsx @@ -9,18 +9,15 @@ import React, { Dispatch, useCallback, useContext } from 'react'; import { i18n } from '@kbn/i18n'; -import { EuiButtonIcon } from '@elastic/eui'; +import { EuiButtonIcon, EuiIconProps } from '@elastic/eui'; import type { PaletteContinuity, CustomPaletteParams } from '../../../palettes'; -import { ValueMaxIcon } from '../assets/value_max'; -import { ValueMinIcon } from '../assets/value_min'; import { isLastItem } from './utils'; import { TooltipWrapper } from '../tooltip_wrapper'; import type { ColorRangesActions, ColorRange, ColorRangeAccessor } from './types'; import { ColorRangesContext } from './color_ranges_context'; -import { InfinityIcon } from '../assets/infinity'; export interface ColorRangesItemButtonProps { index: number; @@ -29,7 +26,8 @@ export interface ColorRangesItemButtonProps { continuity: PaletteContinuity; dispatch: Dispatch; accessor: ColorRangeAccessor; - displayInfinity: boolean; + tooltipContent: string; + iconFactory: (props: Omit) => JSX.Element; } const switchContinuity = (isLast: boolean, continuity: PaletteContinuity) => { @@ -119,7 +117,8 @@ export function ColorRangeAutoDetectButton({ continuity, dispatch, accessor, - displayInfinity, + tooltipContent, + iconFactory, }: ColorRangesItemButtonProps) { const { dataBounds, palettes } = useContext(ColorRangesContext); const isLast = isLastItem(accessor); @@ -133,26 +132,10 @@ export function ColorRangeAutoDetectButton({ }); }, [continuity, dataBounds, dispatch, isLast, palettes]); - const tooltipContent = isLast - ? displayInfinity - ? i18n.translate('coloring.dynamicColoring.customPalette.useAutoMaxValueInfinity', { - defaultMessage: `Use positive infinity`, - }) - : i18n.translate('coloring.dynamicColoring.customPalette.useAutoMaxValue', { - defaultMessage: `Use maximum data value`, - }) - : displayInfinity - ? i18n.translate('coloring.dynamicColoring.customPalette.useAutoMinValueInfinity', { - defaultMessage: `Use negative infinity`, - }) - : i18n.translate('coloring.dynamicColoring.customPalette.useAutoMinValue', { - defaultMessage: `Use minimum data value`, - }); - return ( { describe('validateColorRanges', () => { @@ -28,7 +28,7 @@ describe('Color ranges validation', () => { color: '#aaa', }, ]; - const validation = validateColorRanges(colorRanges); + const validation = validateColorRanges(colorRanges, false); expect(validation['0']).toEqual({ errors: [], isValid: true, @@ -42,6 +42,48 @@ describe('Color ranges validation', () => { isValid: false, }); }); + + it('should check percentage values', () => { + const colorRanges = [ + { + start: -30, // Under 0 should be flagged + end: 10, + color: '#aaa', + }, + { + start: 10, + end: 120, + color: '#aaa', + }, + { + start: 120, // Over 100 should be flagged + end: Infinity, // Infinity should not be flagged + color: '#aaa', + }, + ]; + + const validation = validateColorRanges(colorRanges, true); + + expect(validation[0]).toEqual({ + errors: ['percentOutOfBounds'], + isValid: false, + }); + + expect(validation[1]).toEqual({ + errors: [], + isValid: true, + }); + + expect(validation[2]).toEqual({ + errors: ['percentOutOfBounds'], + isValid: false, + }); + + expect(validation.last).toEqual({ + errors: [], + isValid: true, + }); + }); }); describe('isAllColorRangesValid', () => { @@ -63,10 +105,10 @@ describe('Color ranges validation', () => { color: '#ccc', }, ]; - let isValid = isAllColorRangesValid(colorRanges); + let isValid = allRangesValid(colorRanges, false); expect(isValid).toBeFalsy(); colorRanges[colorRanges.length - 1].end = 30; - isValid = isAllColorRangesValid(colorRanges); + isValid = allRangesValid(colorRanges, false); expect(isValid).toBeTruthy(); }); }); diff --git a/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges_validation.tsx b/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges_validation.tsx index 2ac7118d21010..273f9e0c6f1f8 100644 --- a/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges_validation.tsx +++ b/packages/kbn-coloring/src/shared_components/coloring/color_ranges/color_ranges_validation.tsx @@ -12,7 +12,11 @@ import { isValidColor } from '../utils'; import type { ColorRange, ColorRangeAccessor } from './types'; /** @internal **/ -type ColorRangeValidationErrors = 'invalidColor' | 'invalidValue' | 'greaterThanMaxValue'; +type ColorRangeValidationErrors = + | 'invalidColor' + | 'invalidValue' + | 'greaterThanMaxValue' + | 'percentOutOfBounds'; /** @internal **/ export interface ColorRangeValidation { @@ -38,6 +42,10 @@ export const getErrorMessages = (colorRangesValidity: Record { +export const validateColorRange = ( + colorRange: ColorRange, + accessor: ColorRangeAccessor, + isPercent: boolean +) => { const errors: ColorRangeValidationErrors[] = []; - if (Number.isNaN(colorRange[accessor])) { + const value = colorRange[accessor]; + + if (Number.isNaN(value)) { errors.push('invalidValue'); } @@ -62,6 +76,12 @@ export const validateColorRange = (colorRange: ColorRange, accessor: ColorRangeA errors.push('invalidColor'); } + if (isPercent) { + if (![-Infinity, Infinity].includes(value) && (value < 0 || value > 100)) { + errors.push('percentOutOfBounds'); + } + } + return { isValid: !errors.length, errors, @@ -69,22 +89,25 @@ export const validateColorRange = (colorRange: ColorRange, accessor: ColorRangeA }; export const validateColorRanges = ( - colorRanges: ColorRange[] + colorRanges: ColorRange[], + isPercent: boolean ): Record => { const validations = colorRanges.reduce>( (acc, item, index) => ({ ...acc, - [index]: validateColorRange(item, 'start'), + [index]: validateColorRange(item, 'start', isPercent), }), {} ); return { ...validations, - last: validateColorRange(colorRanges[colorRanges.length - 1], 'end'), + last: validateColorRange(colorRanges[colorRanges.length - 1], 'end', isPercent), }; }; -export const isAllColorRangesValid = (colorRanges: ColorRange[]) => { - return Object.values(validateColorRanges(colorRanges)).every((colorRange) => colorRange.isValid); +export const allRangesValid = (colorRanges: ColorRange[], isPercent: boolean) => { + return Object.values(validateColorRanges(colorRanges, isPercent)).every( + (colorRange) => colorRange.isValid + ); }; diff --git a/packages/kbn-coloring/src/shared_components/coloring/color_ranges/utils/utils.ts b/packages/kbn-coloring/src/shared_components/coloring/color_ranges/utils/utils.ts index 209e9b97155aa..8f89ba405f6bd 100644 --- a/packages/kbn-coloring/src/shared_components/coloring/color_ranges/utils/utils.ts +++ b/packages/kbn-coloring/src/shared_components/coloring/color_ranges/utils/utils.ts @@ -6,6 +6,7 @@ * Side Public License, v 1. */ +import { i18n } from '@kbn/i18n'; import { PaletteContinuity, checkIsMaxContinuity, @@ -15,6 +16,9 @@ import { getDataMinMax, CustomPaletteParams, } from '../../../../palettes'; +import { InfinityIcon } from '../../assets/infinity'; +import { ValueMaxIcon } from '../../assets/value_max'; +import { ValueMinIcon } from '../../assets/value_min'; import type { ColorRange, ColorRangeAccessor } from '../types'; @@ -98,13 +102,13 @@ export const toColorStops = (colorRanges: ColorRange[], continuity: PaletteConti export const getValueForContinuity = ( colorRanges: ColorRange[], continuity: PaletteContinuity, - isLast: boolean, + isUpper: boolean, rangeType: CustomPaletteParams['rangeType'], dataBounds: DataBounds ) => { const { max, min } = getDataMinMax(rangeType, dataBounds); let value; - if (isLast) { + if (isUpper) { if (checkIsMaxContinuity(continuity)) { value = Number.POSITIVE_INFINITY; } else { @@ -124,3 +128,52 @@ export const getValueForContinuity = ( return value; }; + +/** + * Returns information about an automatic bound (the top and bottom boundaries of the palette range) + */ +export const getAutoBoundInformation = ({ + isPercentage, + isUpper, + isAuto, +}: { + isPercentage: boolean; + isUpper: boolean; + isAuto: boolean; +}) => { + const representation = isUpper + ? isPercentage + ? i18n.translate('coloring.dynamicColoring.customPalette.maxValuePlaceholderPercentage', { + defaultMessage: '100', + }) + : i18n.translate('coloring.dynamicColoring.customPalette.maxValuePlaceholder', { + defaultMessage: 'No max.', + }) + : isPercentage + ? i18n.translate('coloring.dynamicColoring.customPalette.minValuePlaceholderPercentage', { + defaultMessage: '0', + }) + : i18n.translate('coloring.dynamicColoring.customPalette.minValuePlaceholder', { + defaultMessage: 'No min.', + }); + + const actionDescription = isUpper + ? isPercentage + ? i18n.translate('coloring.dynamicColoring.customPalette.useAutoMaxValuePercentage', { + defaultMessage: `Use maximum percentage`, + }) + : i18n.translate('coloring.dynamicColoring.customPalette.useAutoMaxValue', { + defaultMessage: `No maximum value`, + }) + : isPercentage + ? i18n.translate('coloring.dynamicColoring.customPalette.useAutoMinValuePercentage', { + defaultMessage: `Use minimum percentage`, + }) + : i18n.translate('coloring.dynamicColoring.customPalette.useAutoMinValue', { + defaultMessage: `No minimum value`, + }); + + const icon = !isPercentage ? InfinityIcon : isUpper ? ValueMaxIcon : ValueMinIcon; + + return { representation, actionDescription, icon }; +}; diff --git a/packages/kbn-coloring/src/shared_components/coloring/palette_configuration.test.tsx b/packages/kbn-coloring/src/shared_components/coloring/palette_configuration.test.tsx index 20a716cc4290a..696baceffb540 100644 --- a/packages/kbn-coloring/src/shared_components/coloring/palette_configuration.test.tsx +++ b/packages/kbn-coloring/src/shared_components/coloring/palette_configuration.test.tsx @@ -39,7 +39,7 @@ jest.mock('./color_ranges/color_ranges_validation', () => { return { ...original, - isAllColorRangesValid: () => true, + allRangesValid: () => true, }; }); diff --git a/packages/kbn-coloring/src/shared_components/coloring/palette_configuration.tsx b/packages/kbn-coloring/src/shared_components/coloring/palette_configuration.tsx index 49bec8ddacf84..1d57afdcedb88 100644 --- a/packages/kbn-coloring/src/shared_components/coloring/palette_configuration.tsx +++ b/packages/kbn-coloring/src/shared_components/coloring/palette_configuration.tsx @@ -22,7 +22,7 @@ import { import { toColorRanges } from './utils'; import { ColorRanges, ColorRangesContext } from './color_ranges'; -import { isAllColorRangesValid } from './color_ranges/color_ranges_validation'; +import { allRangesValid } from './color_ranges/color_ranges_validation'; import { paletteConfigurationReducer } from './palette_configuration_reducer'; export interface CustomizablePaletteProps { @@ -33,7 +33,6 @@ export interface CustomizablePaletteProps { showRangeTypeSelector?: boolean; disableSwitchingContinuity?: boolean; showExtraActions?: boolean; - displayInfinity?: boolean; } export const CustomizablePalette = ({ @@ -44,7 +43,6 @@ export const CustomizablePalette = ({ showExtraActions = true, showRangeTypeSelector = true, disableSwitchingContinuity = false, - displayInfinity = false, }: CustomizablePaletteProps) => { const idPrefix = useMemo(() => htmlIdGenerator()(), []); const colorRangesToShow = toColorRanges( @@ -64,7 +62,10 @@ export const CustomizablePalette = ({ if ( (localState.activePalette !== activePalette || colorRangesToShow !== localState.colorRanges) && - isAllColorRangesValid(localState.colorRanges) + allRangesValid( + localState.colorRanges, + localState.activePalette.params?.rangeType === 'percent' + ) ) { setPalette(localState.activePalette); } @@ -192,9 +193,6 @@ export const CustomizablePalette = ({ showExtraActions={showExtraActions} paletteConfiguration={localState.activePalette?.params} colorRanges={localState.colorRanges} - displayInfinity={ - displayInfinity && localState.activePalette.params?.rangeType !== 'percent' - } dispatch={dispatch} /> diff --git a/packages/kbn-docs-utils/jest.integration.config.js b/packages/kbn-docs-utils/jest.integration.config.js new file mode 100644 index 0000000000000..633f772f29416 --- /dev/null +++ b/packages/kbn-docs-utils/jest.integration.config.js @@ -0,0 +1,13 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +module.exports = { + preset: '@kbn/test/jest_integration_node', + rootDir: '../..', + roots: ['/packages/kbn-docs-utils'], +}; diff --git a/packages/kbn-docs-utils/src/api_docs/build_api_declarations/buid_api_declaration.test.ts b/packages/kbn-docs-utils/src/api_docs/build_api_declarations/buid_api_declaration.test.ts index 527ce59011a8b..8cea39236ee86 100644 --- a/packages/kbn-docs-utils/src/api_docs/build_api_declarations/buid_api_declaration.test.ts +++ b/packages/kbn-docs-utils/src/api_docs/build_api_declarations/buid_api_declaration.test.ts @@ -11,7 +11,7 @@ import { Project, Node } from 'ts-morph'; import { ToolingLog } from '@kbn/tooling-log'; import { TypeKind, ApiScope, PluginOrPackage } from '../types'; -import { getKibanaPlatformPlugin } from '../tests/kibana_platform_plugin_mock'; +import { getKibanaPlatformPlugin } from '../integration_tests/kibana_platform_plugin_mock'; import { getDeclarationNodesForPluginScope } from '../get_declaration_nodes_for_plugin'; import { buildApiDeclarationTopNode } from './build_api_declaration'; import { isNamedNode } from '../tsmorph_utils'; @@ -29,7 +29,10 @@ function getNodeName(node: Node): string { } beforeAll(() => { - const tsConfigFilePath = Path.resolve(__dirname, '../tests/__fixtures__/src/tsconfig.json'); + const tsConfigFilePath = Path.resolve( + __dirname, + '../integration_tests/__fixtures__/src/tsconfig.json' + ); const project = new Project({ tsConfigFilePath, }); diff --git a/packages/kbn-docs-utils/src/api_docs/build_api_declarations/build_basic_api_declaration.ts b/packages/kbn-docs-utils/src/api_docs/build_api_declarations/build_basic_api_declaration.ts index cb0928fa3763d..9f93dcf33aa80 100644 --- a/packages/kbn-docs-utils/src/api_docs/build_api_declarations/build_basic_api_declaration.ts +++ b/packages/kbn-docs-utils/src/api_docs/build_api_declarations/build_basic_api_declaration.ts @@ -23,6 +23,7 @@ export function buildBasicApiDeclaration(node: Node, opts: BuildApiDecOpts): Api const tags = getJSDocTags(node); const deprecated = tags.find((t) => t.getTagName() === 'deprecated') !== undefined; const removeByTag = tags.find((t) => t.getTagName() === 'removeBy'); + const trackAdoption = tags.find((t) => t.getTagName() === 'track-adoption') !== undefined; let label = opts.name; @@ -49,6 +50,7 @@ export function buildBasicApiDeclaration(node: Node, opts: BuildApiDecOpts): Api path: getSourceForNode(node), deprecated, removeBy: removeByTag ? removeByTag.getCommentText() : undefined, + trackAdoption, }; return { ...apiDec, diff --git a/packages/kbn-docs-utils/src/api_docs/build_api_declarations/extract_import_refs.test.ts b/packages/kbn-docs-utils/src/api_docs/build_api_declarations/extract_import_refs.test.ts index 63c02e4d8ea82..04a5101360a98 100644 --- a/packages/kbn-docs-utils/src/api_docs/build_api_declarations/extract_import_refs.test.ts +++ b/packages/kbn-docs-utils/src/api_docs/build_api_declarations/extract_import_refs.test.ts @@ -14,7 +14,7 @@ import { ApiScope, PluginOrPackage, Reference } from '../types'; import { getKibanaPlatformPackage, getKibanaPlatformPlugin, -} from '../tests/kibana_platform_plugin_mock'; +} from '../integration_tests/kibana_platform_plugin_mock'; const plugin = getKibanaPlatformPlugin('pluginA'); const packageA = getKibanaPlatformPackage('@kbn/package-a'); @@ -135,7 +135,7 @@ it('test full file imports with a matching plugin', () => { "pluginId": "pluginA", "scope": "public", "section": undefined, - "text": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/foo/index", + "text": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/foo/index", }, " something", ] diff --git a/packages/kbn-docs-utils/src/api_docs/build_api_declarations/get_references.ts b/packages/kbn-docs-utils/src/api_docs/build_api_declarations/get_references.ts index 9bc48a55b3415..d92adbcac37d2 100644 --- a/packages/kbn-docs-utils/src/api_docs/build_api_declarations/get_references.ts +++ b/packages/kbn-docs-utils/src/api_docs/build_api_declarations/get_references.ts @@ -73,9 +73,8 @@ export function maybeCollectReferences({ apiDec, captureReferences, }: MaybeCollectReferencesOpt): ApiReference[] | undefined { - if (Node.isReferenceFindable(node)) { - return captureReferences || apiDec.deprecated - ? getReferences({ node, plugins, currentPluginId, log }) - : undefined; + const shouldCaptureReferences = captureReferences || apiDec.deprecated || apiDec.trackAdoption; + if (shouldCaptureReferences && Node.isReferenceFindable(node)) { + return getReferences({ node, plugins, currentPluginId, log }); } } diff --git a/packages/kbn-docs-utils/src/api_docs/build_api_docs_cli.ts b/packages/kbn-docs-utils/src/api_docs/build_api_docs_cli.ts index 3c15968c4f5c1..ae63d064d8733 100644 --- a/packages/kbn-docs-utils/src/api_docs/build_api_docs_cli.ts +++ b/packages/kbn-docs-utils/src/api_docs/build_api_docs_cli.ts @@ -25,7 +25,7 @@ import { writeDeprecationDocByApi } from './mdx/write_deprecations_doc_by_api'; import { writeDeprecationDocByPlugin } from './mdx/write_deprecations_doc_by_plugin'; import { writePluginDirectoryDoc } from './mdx/write_plugin_directory_doc'; import { collectApiStatsForPlugin } from './stats'; -import { countEslintDisableLine, EslintDisableCounts } from './count_eslint_disable'; +import { countEslintDisableLines, EslintDisableCounts } from './count_eslint_disable'; import { writeDeprecationDueByTeam } from './mdx/write_deprecations_due_by_team'; import { trimDeletedDocsFromNav } from './trim_deleted_docs_from_nav'; import { getAllDocFileIds } from './mdx/get_all_doc_file_ids'; @@ -37,6 +37,7 @@ function isStringArray(arr: unknown | string[]): arr is string[] { export function runBuildApiDocsCli() { run( async ({ log, flags }) => { + const collectReferences = flags.references as boolean; const stats = flags.stats && typeof flags.stats === 'string' ? [flags.stats] : flags.stats; const pluginFilter = flags.plugin && typeof flags.plugin === 'string' ? [flags.plugin] : flags.plugin; @@ -77,13 +78,16 @@ export function runBuildApiDocsCli() { await Fsp.mkdir(outputFolder, { recursive: true }); } - const collectReferences = flags.references as boolean; - - const { pluginApiMap, missingApiItems, unreferencedDeprecations, referencedDeprecations } = - getPluginApiMap(project, plugins, log, { - collectReferences, - pluginFilter: pluginFilter as string[], - }); + const { + pluginApiMap, + missingApiItems, + unreferencedDeprecations, + referencedDeprecations, + adoptionTrackedAPIs, + } = getPluginApiMap(project, plugins, log, { + collectReferences, + pluginFilter: pluginFilter as string[], + }); const reporter = CiStatsReporter.fromEnv(log); @@ -93,17 +97,22 @@ export function runBuildApiDocsCli() { const pluginApi = pluginApiMap[id]; allPluginStats[id] = { - ...(await countEslintDisableLine(plugin.directory)), - ...collectApiStatsForPlugin(pluginApi, missingApiItems, referencedDeprecations), + ...(await countEslintDisableLines(plugin.directory)), + ...collectApiStatsForPlugin( + pluginApi, + missingApiItems, + referencedDeprecations, + adoptionTrackedAPIs + ), owner: plugin.manifest.owner, description: plugin.manifest.description, isPlugin: plugin.isPlugin, }; } - writePluginDirectoryDoc(outputFolder, pluginApiMap, allPluginStats, log); + await writePluginDirectoryDoc(outputFolder, pluginApiMap, allPluginStats, log); - plugins.forEach((plugin) => { + for (const plugin of plugins) { // Note that the filtering is done here, and not above because the entire public plugin API has to // be parsed in order to correctly determine reference links, and ensure that `removeBrokenLinks` // doesn't remove more links than necessary. @@ -153,6 +162,29 @@ export function runBuildApiDocsCli() { group: 'References to deprecated APIs', value: pluginStats.deprecatedAPIsReferencedCount, }, + { + id, + meta: { + pluginTeam, + // `meta` only allows primitives or string[] + // Also, each string is allowed to have a max length of 2056, + // so it's safer to stringify each element in the array over sending the entire array as stringified. + // My internal tests with 4 plugins using the same API gets to a length of 156 chars, + // so we should have enough room for tracking popular APIs. + // TODO: We can do a follow-up improvement to split the report if we find out we might hit the limit. + adoptionTrackedAPIs: pluginStats.adoptionTrackedAPIs.map((metric) => + JSON.stringify(metric) + ), + }, + group: 'Adoption-tracked APIs', + value: pluginStats.adoptionTrackedAPIsCount, + }, + { + id, + meta: { pluginTeam }, + group: 'Adoption-tracked APIs that are not used anywhere', + value: pluginStats.adoptionTrackedAPIsUnreferencedCount, + }, { id, meta: { pluginTeam }, @@ -174,7 +206,7 @@ export function runBuildApiDocsCli() { ]); const getLink = (d: ApiDeclaration) => - `https://github.com/elastic/kibana/tree/master/${d.path}#:~:text=${encodeURIComponent( + `https://github.com/elastic/kibana/tree/main/${d.path}#:~:text=${encodeURIComponent( d.label )}`; @@ -251,19 +283,19 @@ export function runBuildApiDocsCli() { if (pluginStats.apiCount > 0) { log.info(`Writing public API doc for plugin ${pluginApi.id}.`); - writePluginDocs(outputFolder, { doc: pluginApi, plugin, pluginStats, log }); + await writePluginDocs(outputFolder, { doc: pluginApi, plugin, pluginStats, log }); } else { log.info(`Plugin ${pluginApi.id} has no public API.`); } - writeDeprecationDocByPlugin(outputFolder, referencedDeprecations, log); - writeDeprecationDueByTeam(outputFolder, referencedDeprecations, plugins, log); - writeDeprecationDocByApi( + await writeDeprecationDocByPlugin(outputFolder, referencedDeprecations, log); + await writeDeprecationDueByTeam(outputFolder, referencedDeprecations, plugins, log); + await writeDeprecationDocByApi( outputFolder, referencedDeprecations, unreferencedDeprecations, log ); - }); + } if (Object.values(pathsOutsideScopes).length > 0) { log.warning(`Found paths outside of normal scope folders:`); diff --git a/packages/kbn-docs-utils/src/api_docs/count_eslint_disable.test.ts b/packages/kbn-docs-utils/src/api_docs/count_eslint_disable.test.ts index 964cdab963c9c..3e0759ef4135f 100644 --- a/packages/kbn-docs-utils/src/api_docs/count_eslint_disable.test.ts +++ b/packages/kbn-docs-utils/src/api_docs/count_eslint_disable.test.ts @@ -6,20 +6,32 @@ * Side Public License, v 1. */ -import { countEslintDisableLine } from './count_eslint_disable'; +import { countEslintDisableLines } from './count_eslint_disable'; /* eslint-disable no-console */ -it('countEsLintDisableLine', async () => { - console.log('This is a test'); +describe('countEslintDisableLines', () => { + test('number of "eslint-disable*" in a file', async () => { + console.log('This is a test'); - // eslint-disable-next-line prefer-const - let test: string = ''; + // eslint-disable-next-line prefer-const + let testVar: string = ''; - const counts = await countEslintDisableLine(__filename); - expect(counts.eslintDisableLineCount).toBe(1); - expect(counts.eslintDisableFileCount).toBe(1); + const counts = await countEslintDisableLines(__filename); + expect(counts.eslintDisableLineCount).toBe(1); + expect(counts.eslintDisableFileCount).toBe(1); - // To avoid unused warning. - return test; + // To avoid unused warning. + return testVar; + }); + + test('number of "eslint-disable*" in a directory', async () => { + const counts = await countEslintDisableLines(__dirname); + expect(counts).toMatchInlineSnapshot(` + Object { + "eslintDisableFileCount": 3, + "eslintDisableLineCount": 8, + } + `); + }); }); diff --git a/packages/kbn-docs-utils/src/api_docs/count_eslint_disable.ts b/packages/kbn-docs-utils/src/api_docs/count_eslint_disable.ts index fa8aaa1ddbb95..abf17ca9a2563 100644 --- a/packages/kbn-docs-utils/src/api_docs/count_eslint_disable.ts +++ b/packages/kbn-docs-utils/src/api_docs/count_eslint_disable.ts @@ -6,29 +6,65 @@ * Side Public License, v 1. */ -import { execSync } from 'child_process'; +import { asyncMapWithLimit } from '@kbn/std'; +import Fs from 'fs'; +import Path from 'path'; export interface EslintDisableCounts { eslintDisableLineCount: number; eslintDisableFileCount: number; } -export async function countEslintDisableLine(path: string): Promise { - const disableCountOutputs = await Promise.all([ - execSync(`grep -rE 'eslint-disable-next-line|eslint-disable-line' ${path} | wc -l`), - execSync(`grep -rE 'eslint-disable ' ${path} | wc -l`), - ]); - const eslintDisableLineCount = Number.parseInt(disableCountOutputs[0].toString(), 10); - - if (eslintDisableLineCount === undefined || isNaN(eslintDisableLineCount)) { - throw new Error(`Parsing ${disableCountOutputs[0]} failed to product a valid number`); +async function fetchAllFilePaths(path: string): Promise { + if ((await Fs.promises.stat(path)).isFile()) { + return [path]; + } + const filePaths: string[] = []; + const dirContent = await Fs.promises.readdir(path, { withFileTypes: true }); + for (const item of dirContent) { + const itemPath = Path.resolve(path, item.name); + if (item.isDirectory()) { + filePaths.push(...(await fetchAllFilePaths(itemPath))); + } else if (item.isFile()) { + filePaths.push(itemPath); + } } + return filePaths; +} - const eslintDisableFileCount = Number.parseInt(disableCountOutputs[1].toString(), 10); +function findOccurrences(fileContent: string, regexp: RegExp): number { + // using the flag 'g' returns an array of found occurrences. + const matchingResults = fileContent.toString().match(new RegExp(regexp, 'g')) || []; + return matchingResults.length; +} - if (eslintDisableFileCount === undefined || isNaN(eslintDisableFileCount)) { - throw new Error(`Parsing ${disableCountOutputs[1]} failed to product a valid number`); - } +async function countEsLintDisableInFile(path: string): Promise { + const fileContent = await Fs.promises.readFile(path, { encoding: 'utf8' }); + + return { + eslintDisableLineCount: + findOccurrences(fileContent, /eslint-disable-next-line/) + + findOccurrences(fileContent, /eslint-disable-line/), + eslintDisableFileCount: findOccurrences(fileContent, /eslint-disable\s/), + }; +} + +export async function countEslintDisableLines(path: string): Promise { + const filePaths = await fetchAllFilePaths(path); + + const allEslintDisableCounts = await asyncMapWithLimit(filePaths, 100, (filePath) => + countEsLintDisableInFile(filePath) + ); - return { eslintDisableFileCount, eslintDisableLineCount }; + return allEslintDisableCounts.reduce( + (acc, fileEslintDisableCounts) => { + return { + eslintDisableFileCount: + acc.eslintDisableFileCount + fileEslintDisableCounts.eslintDisableFileCount, + eslintDisableLineCount: + acc.eslintDisableLineCount + fileEslintDisableCounts.eslintDisableLineCount, + }; + }, + { eslintDisableFileCount: 0, eslintDisableLineCount: 0 } + ); } diff --git a/packages/kbn-docs-utils/src/api_docs/get_plugin_api_map.ts b/packages/kbn-docs-utils/src/api_docs/get_plugin_api_map.ts index 08ffafe81a2df..974941f09c062 100644 --- a/packages/kbn-docs-utils/src/api_docs/get_plugin_api_map.ts +++ b/packages/kbn-docs-utils/src/api_docs/get_plugin_api_map.ts @@ -9,7 +9,8 @@ import { ToolingLog } from '@kbn/tooling-log'; import { Project } from 'ts-morph'; import { getPluginApi } from './get_plugin_api'; -import { +import type { + AdoptionTrackedAPIsByPlugin, ApiDeclaration, MissingApiItemMap, PluginApi, @@ -18,6 +19,7 @@ import { UnreferencedDeprecationsByPlugin, } from './types'; import { removeBrokenLinks } from './utils'; +import { AdoptionTrackedAPIStats } from './types'; export function getPluginApiMap( project: Project, @@ -29,10 +31,11 @@ export function getPluginApiMap( missingApiItems: MissingApiItemMap; referencedDeprecations: ReferencedDeprecationsByPlugin; unreferencedDeprecations: UnreferencedDeprecationsByPlugin; + adoptionTrackedAPIs: AdoptionTrackedAPIsByPlugin; } { log.debug('Building plugin API map, getting missing comments, and collecting deprecations...'); const pluginApiMap: { [key: string]: PluginApi } = {}; - plugins.map((plugin) => { + plugins.forEach((plugin) => { const captureReferences = collectReferences && (!pluginFilter || pluginFilter.indexOf(plugin.manifest.id) >= 0); pluginApiMap[plugin.manifest.id] = getPluginApi( @@ -47,16 +50,52 @@ export function getPluginApiMap( // Mapping of plugin id to the missing source API id to all the plugin API items that referenced this item. const missingApiItems: { [key: string]: { [key: string]: string[] } } = {}; const referencedDeprecations: ReferencedDeprecationsByPlugin = {}; - const unreferencedDeprecations: UnreferencedDeprecationsByPlugin = {}; + const adoptionTrackedAPIs: AdoptionTrackedAPIsByPlugin = {}; plugins.forEach((plugin) => { const id = plugin.manifest.id; const pluginApi = pluginApiMap[id]; removeBrokenLinks(pluginApi, missingApiItems, pluginApiMap, log); collectDeprecations(pluginApi, referencedDeprecations, unreferencedDeprecations); + collectAdoptionTrackedAPIs(pluginApi, adoptionTrackedAPIs); }); - return { pluginApiMap, missingApiItems, referencedDeprecations, unreferencedDeprecations }; + return { + pluginApiMap, + missingApiItems, + referencedDeprecations, + unreferencedDeprecations, + adoptionTrackedAPIs, + }; +} + +function collectAdoptionTrackedAPIs( + pluginApi: PluginApi, + adoptionTrackedAPIsByPlugin: AdoptionTrackedAPIsByPlugin +) { + adoptionTrackedAPIsByPlugin[pluginApi.id] = []; + (['client', 'common', 'server'] as Array<'client' | 'server' | 'common'>).forEach((scope) => { + pluginApi[scope].forEach((api) => { + collectAdoptionForApi(api, adoptionTrackedAPIsByPlugin[pluginApi.id]); + }); + }); +} + +function collectAdoptionForApi( + api: ApiDeclaration, + adoptionTrackedAPIs: AdoptionTrackedAPIStats[] +) { + const { id, label, tags = [], children, references = [] } = api; + if (tags.find((tag) => tag === 'track-adoption')) { + const uniqueReferences = new Set(references.map(({ plugin }) => plugin)); + adoptionTrackedAPIs.push({ + trackedApi: { id, label }, + references: [...uniqueReferences.values()], + }); + } + if (children) { + children.forEach((child) => collectAdoptionForApi(child, adoptionTrackedAPIs)); + } } function collectDeprecations( diff --git a/packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/common/foo/index.ts b/packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/common/foo/index.ts similarity index 100% rename from packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/common/foo/index.ts rename to packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/common/foo/index.ts diff --git a/packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/common/index.ts b/packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/common/index.ts similarity index 100% rename from packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/common/index.ts rename to packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/common/index.ts diff --git a/packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/kibana.json b/packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/kibana.json similarity index 100% rename from packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/kibana.json rename to packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/kibana.json diff --git a/packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts b/packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts similarity index 100% rename from packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts rename to packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts diff --git a/packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/const_vars.ts b/packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/const_vars.ts similarity index 100% rename from packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/const_vars.ts rename to packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/const_vars.ts diff --git a/packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts b/packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts similarity index 100% rename from packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts rename to packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts diff --git a/packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/foo/index.ts b/packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/foo/index.ts similarity index 100% rename from packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/foo/index.ts rename to packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/foo/index.ts diff --git a/packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/index.ts b/packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/index.ts similarity index 100% rename from packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/index.ts rename to packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/index.ts diff --git a/packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts b/packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts similarity index 100% rename from packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts rename to packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts diff --git a/packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts b/packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts similarity index 100% rename from packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts rename to packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts diff --git a/packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_b/kibana.json b/packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_b/kibana.json similarity index 100% rename from packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_b/kibana.json rename to packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_b/kibana.json diff --git a/packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_b/public/index.ts b/packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_b/public/index.ts similarity index 100% rename from packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_b/public/index.ts rename to packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_b/public/index.ts diff --git a/packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/tsconfig.json b/packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/tsconfig.json similarity index 100% rename from packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/tsconfig.json rename to packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/tsconfig.json diff --git a/packages/kbn-docs-utils/src/api_docs/tests/api_doc_suite.test.ts b/packages/kbn-docs-utils/src/api_docs/integration_tests/api_doc_suite.test.ts similarity index 97% rename from packages/kbn-docs-utils/src/api_docs/tests/api_doc_suite.test.ts rename to packages/kbn-docs-utils/src/api_docs/integration_tests/api_doc_suite.test.ts index fa7ea46b093bf..76c98f1402be7 100644 --- a/packages/kbn-docs-utils/src/api_docs/tests/api_doc_suite.test.ts +++ b/packages/kbn-docs-utils/src/api_docs/integration_tests/api_doc_suite.test.ts @@ -93,7 +93,7 @@ function fnIsCorrect(fn: ApiDeclaration | undefined) { expect(p5?.description?.length).toBe(1); } -beforeAll(() => { +beforeAll(async () => { const tsConfigFilePath = Path.resolve(__dirname, '__fixtures__/src/tsconfig.json'); const project = new Project({ tsConfigFilePath, @@ -109,30 +109,34 @@ beforeAll(() => { pluginA.manifest.serviceFolders = ['foo']; const plugins: PluginOrPackage[] = [pluginA, pluginB]; - const { pluginApiMap, missingApiItems, referencedDeprecations } = getPluginApiMap( - project, - plugins, - log, - { collectReferences: false } - ); + const { pluginApiMap, missingApiItems, referencedDeprecations, adoptionTrackedAPIs } = + getPluginApiMap(project, plugins, log, { collectReferences: false }); doc = pluginApiMap.pluginA; - pluginAStats = collectApiStatsForPlugin(doc, missingApiItems, referencedDeprecations); + pluginAStats = collectApiStatsForPlugin( + doc, + missingApiItems, + referencedDeprecations, + adoptionTrackedAPIs + ); pluginBStats = collectApiStatsForPlugin( pluginApiMap.pluginB, missingApiItems, - referencedDeprecations + referencedDeprecations, + adoptionTrackedAPIs ); mdxOutputFolder = Path.resolve(__dirname, 'snapshots'); - writePluginDocs(mdxOutputFolder, { doc, plugin: pluginA, pluginStats: pluginAStats, log }); - writePluginDocs(mdxOutputFolder, { - doc: pluginApiMap.pluginB, - plugin: pluginB, - pluginStats: pluginBStats, - log, - }); + await Promise.all([ + writePluginDocs(mdxOutputFolder, { doc, plugin: pluginA, pluginStats: pluginAStats, log }), + writePluginDocs(mdxOutputFolder, { + doc: pluginApiMap.pluginB, + plugin: pluginB, + pluginStats: pluginBStats, + log, + }), + ]); }); it('Stats', () => { diff --git a/packages/kbn-docs-utils/src/api_docs/tests/kibana_platform_plugin_mock.ts b/packages/kbn-docs-utils/src/api_docs/integration_tests/kibana_platform_plugin_mock.ts similarity index 100% rename from packages/kbn-docs-utils/src/api_docs/tests/kibana_platform_plugin_mock.ts rename to packages/kbn-docs-utils/src/api_docs/integration_tests/kibana_platform_plugin_mock.ts diff --git a/packages/kbn-docs-utils/src/api_docs/tests/snapshots/plugin_a.devdocs.json b/packages/kbn-docs-utils/src/api_docs/integration_tests/snapshots/plugin_a.devdocs.json similarity index 76% rename from packages/kbn-docs-utils/src/api_docs/tests/snapshots/plugin_a.devdocs.json rename to packages/kbn-docs-utils/src/api_docs/integration_tests/snapshots/plugin_a.devdocs.json index 88e4043442e88..ea965fed07cd5 100644 --- a/packages/kbn-docs-utils/src/api_docs/tests/snapshots/plugin_a.devdocs.json +++ b/packages/kbn-docs-utils/src/api_docs/integration_tests/snapshots/plugin_a.devdocs.json @@ -35,8 +35,9 @@ }, "

>" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "initialIsOpen": false }, @@ -65,8 +66,9 @@ }, "" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -78,8 +80,9 @@ "signature": [ "React.ComponentType<{}> | undefined" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -91,8 +94,9 @@ "signature": [ "any" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -104,8 +108,9 @@ "signature": [ "T" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -138,8 +143,9 @@ "text": "ImAType" } ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -159,8 +165,9 @@ "text": "ImAType" } ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -186,8 +193,9 @@ }, ") => string" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -207,8 +215,9 @@ "text": "ImAType" } ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -255,8 +264,9 @@ }, "" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -270,8 +280,9 @@ "signature": [ "string" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -286,8 +297,9 @@ "signature": [ "number | undefined" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -309,8 +321,9 @@ }, "" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -331,8 +344,9 @@ "text": "ImAType" } ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -347,8 +361,9 @@ "signature": [ "string | undefined" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -369,8 +384,9 @@ "signature": [ "(obj: { hi: string; }, { fn1, fn2 }: { fn1: (foo: { param: string; }) => number; fn2: () => void; }, { str }: { str: string; }) => () => () => number" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -379,8 +395,9 @@ "tags": [], "label": "obj", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -389,8 +406,9 @@ "tags": [], "label": "hi", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", + "deprecated": false, + "trackAdoption": false } ] }, @@ -401,8 +419,9 @@ "tags": [], "label": "{ fn1, fn2 }", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -414,8 +433,9 @@ "signature": [ "(foo: { param: string; }) => number" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -424,8 +444,9 @@ "tags": [], "label": "foo", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -434,8 +455,9 @@ "tags": [], "label": "param", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", + "deprecated": false, + "trackAdoption": false } ] } @@ -452,8 +474,9 @@ "signature": [ "() => void" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] } @@ -466,8 +489,9 @@ "tags": [], "label": "{ str }", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -476,8 +500,9 @@ "tags": [], "label": "str", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", + "deprecated": false, + "trackAdoption": false } ] } @@ -500,8 +525,9 @@ ") => ", "ImNotExportedFromIndex" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -513,8 +539,9 @@ "signature": [ "ImNotExportedFromIndex" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -557,8 +584,9 @@ }, "" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -572,8 +600,9 @@ "signature": [ "string" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -588,8 +617,9 @@ "signature": [ "number | undefined" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false }, { @@ -611,8 +641,9 @@ }, "" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -633,8 +664,9 @@ "text": "ImAType" } ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -649,8 +681,9 @@ "signature": [ "string | undefined" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "isRequired": false } ], @@ -682,17 +715,18 @@ }, "" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", "deprecated": true, "removeBy": "8.0", + "trackAdoption": false, "references": [ { "plugin": "pluginB", - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_b/public/index.ts" + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_b/public/index.ts" }, { "plugin": "pluginB", - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_b/public/index.ts" + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_b/public/index.ts" } ], "children": [ @@ -706,8 +740,9 @@ "signature": [ "T" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -719,8 +754,9 @@ "tags": [], "label": "ClassConstructorWithStaticProperties", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/index.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -729,8 +765,9 @@ "tags": [], "label": "staticProperty1", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/index.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/index.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -742,8 +779,9 @@ "signature": [ "any" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/index.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -752,8 +790,9 @@ "tags": [], "label": "config", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/index.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -762,8 +801,9 @@ "tags": [], "label": "foo", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/index.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/index.ts", + "deprecated": false, + "trackAdoption": false } ] } @@ -800,8 +840,9 @@ }, "" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -815,8 +856,9 @@ "signature": [ "() => Promise" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -832,8 +874,9 @@ "signature": [ "(t: T) => void" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -847,8 +890,9 @@ "signature": [ "T" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -868,8 +912,9 @@ "signature": [ "((foo: string) => string) | undefined" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -881,8 +926,9 @@ "signature": [ "string" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -900,8 +946,9 @@ "signature": [ "() => void" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [] }, @@ -933,8 +980,9 @@ }, "" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -947,8 +995,9 @@ "signature": [ "T" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -966,8 +1015,9 @@ "text": "MyProps" } ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", + "deprecated": false, + "trackAdoption": false } ] }, @@ -990,8 +1040,9 @@ }, " | undefined" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1003,8 +1054,9 @@ "tags": [], "label": "ImAnObject", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -1024,8 +1076,9 @@ }, "" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1038,8 +1091,9 @@ "signature": [ "T" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", + "deprecated": false, + "trackAdoption": false } ] } @@ -1053,8 +1107,9 @@ "tags": [], "label": "InterfaceWithIndexSignature", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/index.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -1066,8 +1121,9 @@ "signature": [ "[key: string]: { foo: string; }" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/index.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/index.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1081,8 +1137,9 @@ "description": [ "\nAn interface that has a react component." ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -1094,8 +1151,9 @@ "signature": [ "React.ComponentClass<{}, any> | React.FunctionComponent<{}>" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1107,8 +1165,9 @@ "tags": [], "label": "MyProps", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -1117,8 +1176,9 @@ "tags": [], "label": "foo", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -1138,8 +1198,9 @@ }, "" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1152,8 +1213,9 @@ "signature": [ "T" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", + "deprecated": false, + "trackAdoption": false } ] } @@ -1169,8 +1231,9 @@ "description": [ "\nThe SearchSpec interface contains settings for creating a new SearchService, like\nusername and password." ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -1181,8 +1244,9 @@ "description": [ "\nStores the username. Duh," ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -1193,8 +1257,9 @@ "description": [ "\nStores the password. I hope it's encrypted!" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1218,8 +1283,9 @@ }, "" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -1231,8 +1297,9 @@ "signature": [ "T" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/classes.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/classes.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1248,8 +1315,9 @@ "description": [ "\nComments on enums." ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1266,8 +1334,9 @@ "signature": [ "10" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/const_vars.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/const_vars.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1282,8 +1351,9 @@ "signature": [ "number[]" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/const_vars.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/const_vars.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1304,8 +1374,9 @@ }, ", string | React.JSXElementConstructor>" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -1319,8 +1390,9 @@ "description": [ "\nA string that says hi to you!" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/const_vars.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/const_vars.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1335,8 +1407,9 @@ "signature": [ "string[]" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/const_vars.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/const_vars.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1359,8 +1432,9 @@ }, "" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/const_vars.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/const_vars.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1393,8 +1467,9 @@ }, "" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [ "something!" ], @@ -1411,8 +1486,9 @@ "signature": [ "T" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -1430,8 +1506,9 @@ "text": "MyProps" } ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1456,8 +1533,9 @@ }, "" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1472,8 +1550,9 @@ "signature": [ "T" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1488,8 +1567,9 @@ "signature": [ "any" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/index.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1502,8 +1582,9 @@ "signature": [ "unknown" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/index.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1539,8 +1620,9 @@ "text": "ImACommonType" } ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1554,8 +1636,9 @@ "ImNotExportedFromIndex", " | { zed: \"hi\"; }" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1570,8 +1653,9 @@ "signature": [ "\"HI\"" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/const_vars.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/const_vars.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1594,8 +1678,9 @@ }, "[]" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1632,8 +1717,9 @@ }, "" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1643,8 +1729,9 @@ "tags": [], "label": "a", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -1656,8 +1743,9 @@ "signature": [ "number | undefined" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -1669,8 +1757,9 @@ "signature": [ "string[]" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -1705,8 +1794,9 @@ "text": "ImACommonType" } ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -1718,8 +1808,9 @@ "signature": [ "string | undefined" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false @@ -1736,8 +1827,9 @@ "signature": [ "string | undefined" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false }, { @@ -1750,8 +1842,9 @@ "signature": [ "T[]" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/types.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/types.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], @@ -1765,8 +1858,9 @@ "description": [ "\nSome of the plugins wrap static exports in an object to create\na namespace like this." ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/const_vars.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/const_vars.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -1804,8 +1898,9 @@ }, "" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/const_vars.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/const_vars.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1815,8 +1910,9 @@ "tags": [], "label": "a", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -1828,8 +1924,9 @@ "signature": [ "number | undefined" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -1841,8 +1938,9 @@ "signature": [ "string[]" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -1877,8 +1975,9 @@ "text": "ImACommonType" } ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -1890,8 +1989,9 @@ "signature": [ "string | undefined" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", + "deprecated": false, + "trackAdoption": false } ] }, @@ -1931,8 +2031,9 @@ }, "" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/const_vars.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/const_vars.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [ { @@ -1942,8 +2043,9 @@ "tags": [], "label": "a", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -1955,8 +2057,9 @@ "signature": [ "number | undefined" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -1968,8 +2071,9 @@ "signature": [ "string[]" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -2004,8 +2108,9 @@ "text": "ImACommonType" } ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -2017,8 +2122,9 @@ "signature": [ "string | undefined" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/fns.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/fns.ts", + "deprecated": false, + "trackAdoption": false } ] }, @@ -2049,8 +2155,9 @@ "text": "ImAType" } ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/const_vars.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/const_vars.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -2068,8 +2175,9 @@ "text": "ImAType" } ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/const_vars.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/const_vars.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2084,8 +2192,9 @@ "description": [ "/**\n * The only way for this to have a comment is to grab this.\n */" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/const_vars.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/const_vars.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -2096,8 +2205,9 @@ "description": [ "/**\n * Will this nested object have it's children extracted appropriately?\n */" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/const_vars.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/const_vars.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -2106,8 +2216,9 @@ "tags": [], "label": "foo", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/const_vars.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/const_vars.ts", + "deprecated": false, + "trackAdoption": false } ] } @@ -2124,8 +2235,9 @@ "description": [ "\nAccess setup functionality from your plugin's setup function by adding the example\nplugin as a dependency.\n\n```ts\nClass MyPlugin {\n setup(core: CoreDependencies, { example }: PluginDependencies) {\n // Here you can access this functionality.\n example.getSearchService();\n }\n}\n```" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -2149,8 +2261,9 @@ }, ") => string" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -2170,8 +2283,9 @@ "text": "SearchSpec" } ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], @@ -2191,8 +2305,9 @@ "signature": [ "(searchSpec: { username: string; password: string; }) => string" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -2201,8 +2316,9 @@ "tags": [], "label": "searchSpec", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -2211,8 +2327,9 @@ "tags": [], "label": "username", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", + "deprecated": false, + "trackAdoption": false }, { "parentPluginId": "pluginA", @@ -2221,8 +2338,9 @@ "tags": [], "label": "password", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", + "deprecated": false, + "trackAdoption": false } ] } @@ -2243,8 +2361,9 @@ "signature": [ "(thingOne: number, thingTwo: string, thingThree: { nestedVar: number; }) => void" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", "deprecated": true, + "trackAdoption": false, "references": [], "children": [ { @@ -2259,8 +2378,9 @@ "signature": [ "number" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2275,8 +2395,9 @@ "signature": [ "string" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true }, { @@ -2286,8 +2407,9 @@ "tags": [], "label": "thingThree", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -2296,8 +2418,9 @@ "tags": [], "label": "nestedVar", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", + "deprecated": false, + "trackAdoption": false } ] } @@ -2316,8 +2439,9 @@ "signature": [ "(obj: { fn: (foo: { param: string; }) => number; }) => () => { retFoo: () => string; }" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -2326,8 +2450,9 @@ "tags": [], "label": "obj", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -2339,8 +2464,9 @@ "signature": [ "(foo: { param: string; }) => number" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -2349,8 +2475,9 @@ "tags": [], "label": "foo", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -2359,8 +2486,9 @@ "tags": [], "label": "param", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", + "deprecated": false, + "trackAdoption": false } ] } @@ -2383,8 +2511,9 @@ "description": [ "\nHi, I'm a comment for an id string!" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", + "deprecated": false, + "trackAdoption": false } ], "lifecycle": "setup", @@ -2399,8 +2528,9 @@ "description": [ "\nAccess start functionality from your plugin's start function by adding the example\nplugin as a dependency.\n\n```ts\nClass MyPlugin {\n start(core: CoreDependencies, { example }: PluginDependencies) {\n // Here you can access this functionality.\n example.getSearchLanguage();\n }\n}\n```" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -2413,8 +2543,9 @@ "() => ", "SearchLanguage" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/plugin.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/plugin.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [ "The currently selected {@link SearchLanguage }" @@ -2444,8 +2575,9 @@ "tags": [], "label": "ImACommonType", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/common/index.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/common/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginA", @@ -2454,8 +2586,9 @@ "tags": [], "label": "goo", "description": [], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/common/index.ts", - "deprecated": false + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/common/index.ts", + "deprecated": false, + "trackAdoption": false } ], "initialIsOpen": false diff --git a/packages/kbn-docs-utils/src/api_docs/tests/snapshots/plugin_a.mdx b/packages/kbn-docs-utils/src/api_docs/integration_tests/snapshots/plugin_a.mdx similarity index 98% rename from packages/kbn-docs-utils/src/api_docs/tests/snapshots/plugin_a.mdx rename to packages/kbn-docs-utils/src/api_docs/integration_tests/snapshots/plugin_a.mdx index b72bb38869f78..5a7bc515413cc 100644 --- a/packages/kbn-docs-utils/src/api_docs/tests/snapshots/plugin_a.mdx +++ b/packages/kbn-docs-utils/src/api_docs/integration_tests/snapshots/plugin_a.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/pluginA title: "pluginA" image: https://source.unsplash.com/400x175/?github description: API docs for the pluginA plugin -date: 2022-08-08 +date: 2022-09-05 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'pluginA'] --- import pluginAObj from './plugin_a.devdocs.json'; diff --git a/packages/kbn-docs-utils/src/api_docs/tests/snapshots/plugin_a_foo.devdocs.json b/packages/kbn-docs-utils/src/api_docs/integration_tests/snapshots/plugin_a_foo.devdocs.json similarity index 76% rename from packages/kbn-docs-utils/src/api_docs/tests/snapshots/plugin_a_foo.devdocs.json rename to packages/kbn-docs-utils/src/api_docs/integration_tests/snapshots/plugin_a_foo.devdocs.json index c7b43d9436cb9..6ef81c3ee4104 100644 --- a/packages/kbn-docs-utils/src/api_docs/tests/snapshots/plugin_a_foo.devdocs.json +++ b/packages/kbn-docs-utils/src/api_docs/integration_tests/snapshots/plugin_a_foo.devdocs.json @@ -13,8 +13,9 @@ "signature": [ "() => void" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/foo/index.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/foo/index.ts", "deprecated": false, + "trackAdoption": false, "children": [], "returnComment": [], "initialIsOpen": false @@ -33,8 +34,9 @@ "signature": [ "() => \"foo\"" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/foo/index.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/foo/index.ts", "deprecated": false, + "trackAdoption": false, "returnComment": [], "children": [], "initialIsOpen": false @@ -66,8 +68,9 @@ "signature": [ "\"COMMON VAR!\"" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/common/foo/index.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/common/foo/index.ts", "deprecated": false, + "trackAdoption": false, "initialIsOpen": false } ], diff --git a/packages/kbn-docs-utils/src/api_docs/tests/snapshots/plugin_a_foo.mdx b/packages/kbn-docs-utils/src/api_docs/integration_tests/snapshots/plugin_a_foo.mdx similarity index 98% rename from packages/kbn-docs-utils/src/api_docs/tests/snapshots/plugin_a_foo.mdx rename to packages/kbn-docs-utils/src/api_docs/integration_tests/snapshots/plugin_a_foo.mdx index f1b79e0d69ce5..719f998adc203 100644 --- a/packages/kbn-docs-utils/src/api_docs/tests/snapshots/plugin_a_foo.mdx +++ b/packages/kbn-docs-utils/src/api_docs/integration_tests/snapshots/plugin_a_foo.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/pluginA-foo title: "pluginA.foo" image: https://source.unsplash.com/400x175/?github description: API docs for the pluginA.foo plugin -date: 2022-08-08 +date: 2022-09-05 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'pluginA.foo'] --- import pluginAFooObj from './plugin_a_foo.devdocs.json'; diff --git a/packages/kbn-docs-utils/src/api_docs/tests/snapshots/plugin_b.devdocs.json b/packages/kbn-docs-utils/src/api_docs/integration_tests/snapshots/plugin_b.devdocs.json similarity index 86% rename from packages/kbn-docs-utils/src/api_docs/tests/snapshots/plugin_b.devdocs.json rename to packages/kbn-docs-utils/src/api_docs/integration_tests/snapshots/plugin_b.devdocs.json index a9de2eb5a83e8..b3b43954ce2cf 100644 --- a/packages/kbn-docs-utils/src/api_docs/tests/snapshots/plugin_b.devdocs.json +++ b/packages/kbn-docs-utils/src/api_docs/integration_tests/snapshots/plugin_b.devdocs.json @@ -29,8 +29,9 @@ }, "" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_b/public/index.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_b/public/index.ts", "deprecated": false, + "trackAdoption": false, "children": [ { "parentPluginId": "pluginB", @@ -49,8 +50,9 @@ }, "" ], - "path": "packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_b/public/index.ts", + "path": "packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_b/public/index.ts", "deprecated": false, + "trackAdoption": false, "isRequired": true } ], diff --git a/packages/kbn-docs-utils/src/api_docs/tests/snapshots/plugin_b.mdx b/packages/kbn-docs-utils/src/api_docs/integration_tests/snapshots/plugin_b.mdx similarity index 97% rename from packages/kbn-docs-utils/src/api_docs/tests/snapshots/plugin_b.mdx rename to packages/kbn-docs-utils/src/api_docs/integration_tests/snapshots/plugin_b.mdx index 2d0c28885f8d3..9a06228dfd688 100644 --- a/packages/kbn-docs-utils/src/api_docs/tests/snapshots/plugin_b.mdx +++ b/packages/kbn-docs-utils/src/api_docs/integration_tests/snapshots/plugin_b.mdx @@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/pluginB title: "pluginB" image: https://source.unsplash.com/400x175/?github description: API docs for the pluginB plugin -date: 2022-08-08 +date: 2022-09-05 tags: ['contributor', 'dev', 'apidocs', 'kibana', 'pluginB'] --- import pluginBObj from './plugin_b.devdocs.json'; diff --git a/packages/kbn-docs-utils/src/api_docs/mdx/build_plugin_deprecations_table.ts b/packages/kbn-docs-utils/src/api_docs/mdx/build_plugin_deprecations_table.ts index bd2d973bf58ff..00aa470efd5e2 100644 --- a/packages/kbn-docs-utils/src/api_docs/mdx/build_plugin_deprecations_table.ts +++ b/packages/kbn-docs-utils/src/api_docs/mdx/build_plugin_deprecations_table.ts @@ -31,7 +31,7 @@ export function buildPluginDeprecationsTable( return ` ## ${key} - + | Deprecated API | Reference location(s) | Remove By | | ---------------|-----------|-----------| ${Object.keys(groupedDeprecationReferences) @@ -50,7 +50,7 @@ export function buildPluginDeprecationsTable( (ref) => `[${ref.path.substr( ref.path.lastIndexOf(Path.sep) + 1 - )}](https://github.com/elastic/kibana/tree/master/${ + )}](https://github.com/elastic/kibana/tree/main/${ ref.path }#:~:text=${encodeURIComponent(api.label)})` ) diff --git a/packages/kbn-docs-utils/src/api_docs/mdx/split_apis_by_folder.test.ts b/packages/kbn-docs-utils/src/api_docs/mdx/split_apis_by_folder.test.ts index 1a1ecb8ec3e67..bc023f0189ef5 100644 --- a/packages/kbn-docs-utils/src/api_docs/mdx/split_apis_by_folder.test.ts +++ b/packages/kbn-docs-utils/src/api_docs/mdx/split_apis_by_folder.test.ts @@ -11,7 +11,7 @@ import { Project } from 'ts-morph'; import { ToolingLog } from '@kbn/tooling-log'; import { PluginApi, PluginOrPackage } from '../types'; -import { getKibanaPlatformPlugin } from '../tests/kibana_platform_plugin_mock'; +import { getKibanaPlatformPlugin } from '../integration_tests/kibana_platform_plugin_mock'; import { getPluginApi } from '../get_plugin_api'; import { splitApisByFolder } from './write_plugin_split_by_folder'; @@ -23,7 +23,10 @@ const log = new ToolingLog({ let doc: PluginApi; beforeAll(() => { - const tsConfigFilePath = Path.resolve(__dirname, '../tests/__fixtures__/src/tsconfig.json'); + const tsConfigFilePath = Path.resolve( + __dirname, + '../integration_tests/__fixtures__/src/tsconfig.json' + ); const project = new Project({ tsConfigFilePath, }); diff --git a/packages/kbn-docs-utils/src/api_docs/mdx/write_deprecations_doc_by_api.ts b/packages/kbn-docs-utils/src/api_docs/mdx/write_deprecations_doc_by_api.ts index 06532dc8a027f..c07ba9dd13690 100644 --- a/packages/kbn-docs-utils/src/api_docs/mdx/write_deprecations_doc_by_api.ts +++ b/packages/kbn-docs-utils/src/api_docs/mdx/write_deprecations_doc_by_api.ts @@ -9,7 +9,7 @@ import moment from 'moment'; import { ToolingLog } from '@kbn/tooling-log'; import dedent from 'dedent'; -import fs from 'fs'; +import Fsp from 'fs/promises'; import Path from 'path'; import { ApiReference, @@ -20,12 +20,12 @@ import { import { AUTO_GENERATED_WARNING } from '../auto_generated_warning'; import { getPluginApiDocId } from '../utils'; -export function writeDeprecationDocByApi( +export async function writeDeprecationDocByApi( folder: string, deprecationsByPlugin: ReferencedDeprecationsByPlugin, unReferencedDeprecations: UnreferencedDeprecationsByPlugin, log: ToolingLog -): void { +): Promise { const deprecationReferencesByApi = Object.values(deprecationsByPlugin).reduce( (acc, deprecations) => { deprecations.forEach((deprecation) => { @@ -111,5 +111,5 @@ ${Object.values(unReferencedDeprecations) `); - fs.writeFileSync(Path.resolve(folder, 'deprecations_by_api.mdx'), mdx); + await Fsp.writeFile(Path.resolve(folder, 'deprecations_by_api.mdx'), mdx); } diff --git a/packages/kbn-docs-utils/src/api_docs/mdx/write_deprecations_doc_by_plugin.ts b/packages/kbn-docs-utils/src/api_docs/mdx/write_deprecations_doc_by_plugin.ts index d25a42d7de50e..7190cbdb0f468 100644 --- a/packages/kbn-docs-utils/src/api_docs/mdx/write_deprecations_doc_by_plugin.ts +++ b/packages/kbn-docs-utils/src/api_docs/mdx/write_deprecations_doc_by_plugin.ts @@ -9,17 +9,17 @@ import moment from 'moment'; import { ToolingLog } from '@kbn/tooling-log'; import dedent from 'dedent'; -import fs from 'fs'; +import Fsp from 'fs/promises'; import Path from 'path'; import { ApiDeclaration, ApiReference, ReferencedDeprecationsByPlugin } from '../types'; import { AUTO_GENERATED_WARNING } from '../auto_generated_warning'; import { getPluginApiDocId } from '../utils'; -export function writeDeprecationDocByPlugin( +export async function writeDeprecationDocByPlugin( folder: string, deprecationsByPlugin: ReferencedDeprecationsByPlugin, log: ToolingLog -): void { +): Promise { const tableMdx = Object.keys(deprecationsByPlugin) .sort() .map((key) => { @@ -54,7 +54,7 @@ export function writeDeprecationDocByPlugin( (ref) => `[${ref.path.substr( ref.path.lastIndexOf(Path.sep) + 1 - )}](https://github.com/elastic/kibana/tree/master/${ + )}](https://github.com/elastic/kibana/tree/main/${ ref.path }#:~:text=${encodeURIComponent(api.label)})` ) @@ -84,5 +84,5 @@ ${tableMdx} `); - fs.writeFileSync(Path.resolve(folder, 'deprecations_by_plugin.mdx'), mdx); + await Fsp.writeFile(Path.resolve(folder, 'deprecations_by_plugin.mdx'), mdx); } diff --git a/packages/kbn-docs-utils/src/api_docs/mdx/write_deprecations_due_by_team.ts b/packages/kbn-docs-utils/src/api_docs/mdx/write_deprecations_due_by_team.ts index 2defdb49aeaa0..d225f5d54693d 100644 --- a/packages/kbn-docs-utils/src/api_docs/mdx/write_deprecations_due_by_team.ts +++ b/packages/kbn-docs-utils/src/api_docs/mdx/write_deprecations_due_by_team.ts @@ -8,7 +8,7 @@ import moment from 'moment'; import { ToolingLog } from '@kbn/tooling-log'; import dedent from 'dedent'; -import fs from 'fs'; +import Fsp from 'fs/promises'; import Path from 'path'; import { ApiDeclaration, @@ -19,12 +19,12 @@ import { import { AUTO_GENERATED_WARNING } from '../auto_generated_warning'; import { getPluginApiDocId } from '../utils'; -export function writeDeprecationDueByTeam( +export async function writeDeprecationDueByTeam( folder: string, deprecationsByPlugin: ReferencedDeprecationsByPlugin, plugins: PluginOrPackage[], log: ToolingLog -): void { +): Promise { const groupedByTeam: ReferencedDeprecationsByPlugin = Object.keys(deprecationsByPlugin).reduce( (teamMap: ReferencedDeprecationsByPlugin, pluginId: string) => { const dueDeprecations = deprecationsByPlugin[pluginId].filter( @@ -80,7 +80,7 @@ export function writeDeprecationDueByTeam( (ref) => `[${ref.path.substr( ref.path.lastIndexOf(Path.sep) + 1 - )}](https://github.com/elastic/kibana/tree/master/${ + )}](https://github.com/elastic/kibana/tree/main/${ ref.path }#:~:text=${encodeURIComponent(api.label)})` ) @@ -111,5 +111,5 @@ ${tableMdx} `); - fs.writeFileSync(Path.resolve(folder, 'deprecations_by_team.mdx'), mdx); + await Fsp.writeFile(Path.resolve(folder, 'deprecations_by_team.mdx'), mdx); } diff --git a/packages/kbn-docs-utils/src/api_docs/mdx/write_plugin_directory_doc.ts b/packages/kbn-docs-utils/src/api_docs/mdx/write_plugin_directory_doc.ts index 129e1212625e3..448bae88a6a77 100644 --- a/packages/kbn-docs-utils/src/api_docs/mdx/write_plugin_directory_doc.ts +++ b/packages/kbn-docs-utils/src/api_docs/mdx/write_plugin_directory_doc.ts @@ -6,7 +6,7 @@ * Side Public License, v 1. */ import moment from 'moment'; -import fs from 'fs'; +import Fsp from 'fs/promises'; import Path from 'path'; import dedent from 'dedent'; import { ToolingLog } from '@kbn/tooling-log'; @@ -31,12 +31,12 @@ interface TotalStats { /** * @param folder The location the mdx file will be written too. */ -export function writePluginDirectoryDoc( +export async function writePluginDirectoryDoc( folder: string, pluginApiMap: { [key: string]: PluginApi }, pluginStatsMap: { [key: string]: PluginMetaInfo }, log: ToolingLog -): void { +): Promise { log.debug(`Writing plugin directory file`); const uniqueTeams: string[] = []; @@ -112,7 +112,7 @@ ${getDirectoryTable(pluginApiMap, pluginStatsMap, false)} `) + '\n\n'; - fs.writeFileSync(Path.resolve(folder, 'plugin_directory.mdx'), mdx); + await Fsp.writeFile(Path.resolve(folder, 'plugin_directory.mdx'), mdx); } function getDirectoryTable( diff --git a/packages/kbn-docs-utils/src/api_docs/mdx/write_plugin_mdx_docs.ts b/packages/kbn-docs-utils/src/api_docs/mdx/write_plugin_mdx_docs.ts index da65c9f6b3357..2cd19217c6530 100644 --- a/packages/kbn-docs-utils/src/api_docs/mdx/write_plugin_mdx_docs.ts +++ b/packages/kbn-docs-utils/src/api_docs/mdx/write_plugin_mdx_docs.ts @@ -6,7 +6,7 @@ * Side Public License, v 1. */ import moment from 'moment'; -import fs from 'fs'; +import Fsp from 'fs/promises'; import Path from 'path'; import dedent from 'dedent'; import { PluginApi, ScopeApi } from '../types'; @@ -30,15 +30,15 @@ import { WritePluginDocsOpts } from './types'; * @param doc Contains the information of the plugin that will be written into mdx. * @param log Used for logging debug and error information. */ -export function writePluginDocs( +export async function writePluginDocs( folder: string, { doc, plugin, pluginStats, log }: WritePluginDocsOpts -): void { +): Promise { if (doc.serviceFolders) { log.debug(`Splitting plugin ${doc.id}`); - writePluginDocSplitByFolder(folder, { doc, log, plugin, pluginStats }); + await writePluginDocSplitByFolder(folder, { doc, log, plugin, pluginStats }); } else { - writePluginDoc(folder, { doc, plugin, pluginStats, log }); + await writePluginDoc(folder, { doc, plugin, pluginStats, log }); } } @@ -55,10 +55,10 @@ function hasPublicApi(doc: PluginApi): boolean { * @param doc Contains the information of the plugin that will be written into mdx. * @param log Used for logging debug and error information. */ -export function writePluginDoc( +export async function writePluginDoc( folder: string, { doc, log, plugin, pluginStats }: WritePluginDocsOpts -): void { +): Promise { if (!hasPublicApi(doc)) { log.debug(`${doc.id} does not have a public api. Skipping.`); return; @@ -113,7 +113,7 @@ ${ common: groupPluginApi(doc.common), server: groupPluginApi(doc.server), }; - fs.writeFileSync( + await Fsp.writeFile( Path.resolve(folder, fileName + '.devdocs.json'), JSON.stringify(scopedDoc, null, 2) ); @@ -122,7 +122,7 @@ ${ mdx += scopApiToMdx(scopedDoc.server, 'Server', json, 'server'); mdx += scopApiToMdx(scopedDoc.common, 'Common', json, 'common'); - fs.writeFileSync(Path.resolve(folder, fileName + '.mdx'), mdx); + await Fsp.writeFile(Path.resolve(folder, fileName + '.mdx'), mdx); } function getJsonName(name: string): string { diff --git a/packages/kbn-docs-utils/src/api_docs/mdx/write_plugin_split_by_folder.test.ts b/packages/kbn-docs-utils/src/api_docs/mdx/write_plugin_split_by_folder.test.ts index be947bc13b469..7eefff234cd3f 100644 --- a/packages/kbn-docs-utils/src/api_docs/mdx/write_plugin_split_by_folder.test.ts +++ b/packages/kbn-docs-utils/src/api_docs/mdx/write_plugin_split_by_folder.test.ts @@ -10,7 +10,7 @@ import { Project } from 'ts-morph'; import { ToolingLog } from '@kbn/tooling-log'; import { splitApisByFolder } from './write_plugin_split_by_folder'; import { getPluginApi } from '../get_plugin_api'; -import { getKibanaPlatformPlugin } from '../tests/kibana_platform_plugin_mock'; +import { getKibanaPlatformPlugin } from '../integration_tests/kibana_platform_plugin_mock'; import { PluginOrPackage } from '../types'; const log = new ToolingLog({ diff --git a/packages/kbn-docs-utils/src/api_docs/mdx/write_plugin_split_by_folder.ts b/packages/kbn-docs-utils/src/api_docs/mdx/write_plugin_split_by_folder.ts index 531a2c8f10996..fe52e454b3651 100644 --- a/packages/kbn-docs-utils/src/api_docs/mdx/write_plugin_split_by_folder.ts +++ b/packages/kbn-docs-utils/src/api_docs/mdx/write_plugin_split_by_folder.ts @@ -6,22 +6,28 @@ * Side Public License, v 1. */ +import { asyncForEachWithLimit } from '@kbn/std'; import { snakeToCamel } from '../utils'; import { PluginApi, ApiDeclaration } from '../types'; import { writePluginDoc } from './write_plugin_mdx_docs'; import { WritePluginDocsOpts } from './types'; -export function writePluginDocSplitByFolder( +// There is no science behind this 10. +// When it was first introduced, it was using synchronous APIs, so the concurrency was 1. +// Feel free to adapt it when more data is gathered. +const CONCURRENT_WRITES = 10; + +export async function writePluginDocSplitByFolder( folder: string, { doc, plugin, pluginStats, log }: WritePluginDocsOpts ) { const apisByFolder = splitApisByFolder(doc); log.debug(`Split ${doc.id} into ${apisByFolder.length} services`); - apisByFolder.forEach((docDef) => { + await asyncForEachWithLimit(apisByFolder, CONCURRENT_WRITES, async (docDef) => { // TODO: we should probably see if we can break down these stats by service folder. As it is, they will represent stats for // the entire plugin. - writePluginDoc(folder, { doc: docDef, plugin, pluginStats, log }); + await writePluginDoc(folder, { doc: docDef, plugin, pluginStats, log }); }); } diff --git a/packages/kbn-docs-utils/src/api_docs/stats.ts b/packages/kbn-docs-utils/src/api_docs/stats.ts index 2090b4d991411..bea961e0d6ef7 100644 --- a/packages/kbn-docs-utils/src/api_docs/stats.ts +++ b/packages/kbn-docs-utils/src/api_docs/stats.ts @@ -7,18 +7,20 @@ */ import { - ApiDeclaration, - ApiStats, - MissingApiItemMap, - PluginApi, - ReferencedDeprecationsByPlugin, + type AdoptionTrackedAPIsByPlugin, + type ApiDeclaration, + type ApiStats, + type MissingApiItemMap, + type PluginApi, + type ReferencedDeprecationsByPlugin, TypeKind, } from './types'; export function collectApiStatsForPlugin( doc: PluginApi, missingApiItems: MissingApiItemMap, - deprecations: ReferencedDeprecationsByPlugin + deprecations: ReferencedDeprecationsByPlugin, + adoptionTrackedAPIs: AdoptionTrackedAPIsByPlugin ): ApiStats { const stats: ApiStats = { missingComments: [], @@ -26,6 +28,9 @@ export function collectApiStatsForPlugin( noReferences: [], deprecatedAPIsReferencedCount: 0, unreferencedDeprecatedApisCount: 0, + adoptionTrackedAPIs: [], + adoptionTrackedAPIsCount: 0, + adoptionTrackedAPIsUnreferencedCount: 0, apiCount: countApiForPlugin(doc), missingExports: Object.values(missingApiItems[doc.id] ?? {}).length, }; @@ -39,9 +44,24 @@ export function collectApiStatsForPlugin( collectStatsForApi(def, stats, doc); }); stats.deprecatedAPIsReferencedCount = deprecations[doc.id] ? deprecations[doc.id].length : 0; + + collectAdoptionTrackedAPIStats(doc, stats, adoptionTrackedAPIs); + return stats; } +function collectAdoptionTrackedAPIStats( + doc: PluginApi, + stats: ApiStats, + adoptionTrackedAPIs: AdoptionTrackedAPIsByPlugin +) { + stats.adoptionTrackedAPIs = adoptionTrackedAPIs[doc.id] || []; + stats.adoptionTrackedAPIsCount = stats.adoptionTrackedAPIs.length; + stats.adoptionTrackedAPIsUnreferencedCount = stats.adoptionTrackedAPIs.filter( + ({ references }) => references.length === 0 + ).length; +} + function collectStatsForApi(doc: ApiDeclaration, stats: ApiStats, pluginApi: PluginApi): void { const missingComment = doc.description === undefined || doc.description.length === 0; // Ignore all stats coming from third party libraries, we can't fix that! diff --git a/packages/kbn-docs-utils/src/api_docs/types.ts b/packages/kbn-docs-utils/src/api_docs/types.ts index afbbec82935e4..09ff30b9b9da2 100644 --- a/packages/kbn-docs-utils/src/api_docs/types.ts +++ b/packages/kbn-docs-utils/src/api_docs/types.ts @@ -198,6 +198,11 @@ export interface ApiDeclaration { * Is this API deprecated or not? */ deprecated?: boolean; + + /** + * Are we interested in tracking adoption of this API? + */ + trackAdoption?: boolean; } /** @@ -234,7 +239,7 @@ export interface ReferencedDeprecationsByPlugin { [key: string]: Array<{ deprecatedApi: ApiDeclaration; ref: ApiReference }>; } -// A mapping of plugin owner to it's plugin deprecation list. +// A mapping of plugin owner to its plugin deprecation list. export interface ReferencedDeprecationsByTeam { // Key is the plugin owner. [key: string]: ReferencedDeprecationsByPlugin; @@ -245,6 +250,23 @@ export interface UnreferencedDeprecationsByPlugin { [key: string]: ApiDeclaration[]; } +export interface AdoptionTrackedAPIStats { + /** + * Minimal identifiers for the tracked API. + */ + trackedApi: { id: string; label: string }; + /** + * List of plugins where the API is used. For stats that is more than enough. + */ + references: string[]; +} + +// A mapping of plugin id to a list of every deprecated API it uses, and where it's referenced. +export interface AdoptionTrackedAPIsByPlugin { + // Key is the plugin id. + [key: string]: AdoptionTrackedAPIStats[]; +} + // A mapping of deprecated API id to the places that are still referencing it. export interface ReferencedDeprecationsByAPI { [key: string]: { deprecatedApi: ApiDeclaration; references: ApiReference[] }; @@ -258,6 +280,15 @@ export interface ApiStats { missingExports: number; deprecatedAPIsReferencedCount: number; unreferencedDeprecatedApisCount: number; + adoptionTrackedAPIs: AdoptionTrackedAPIStats[]; + /** + * Total number of APIs that the plugin wants to track the adoption for. + */ + adoptionTrackedAPIsCount: number; + /** + * Number of adoption-tracked APIs that are still not referenced. + */ + adoptionTrackedAPIsUnreferencedCount: number; } export type PluginMetaInfo = ApiStats & { diff --git a/packages/kbn-docs-utils/src/api_docs/utils.test.ts b/packages/kbn-docs-utils/src/api_docs/utils.test.ts index 7c98f0dd99b72..1b4c75dc2fedd 100644 --- a/packages/kbn-docs-utils/src/api_docs/utils.test.ts +++ b/packages/kbn-docs-utils/src/api_docs/utils.test.ts @@ -11,7 +11,7 @@ import Path from 'path'; import { Project } from 'ts-morph'; import { findPlugins } from './find_plugins'; import { getPluginApi } from './get_plugin_api'; -import { getKibanaPlatformPlugin } from './tests/kibana_platform_plugin_mock'; +import { getKibanaPlatformPlugin } from './integration_tests/kibana_platform_plugin_mock'; import { PluginApi, PluginOrPackage } from './types'; import { getPluginForPath, getServiceForPath, removeBrokenLinks, getFileName } from './utils'; @@ -53,14 +53,17 @@ it('test getServiceForPath', () => { expect( getServiceForPath( - '/var/lib/jenkins/workspace/elastic+kibana+pipeline-pull-request/kibana/packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a/public/foo/index', - '/var/lib/jenkins/workspace/elastic+kibana+pipeline-pull-request/kibana/packages/kbn-docs-utils/src/api_docs/tests/__fixtures__/src/plugin_a' + '/var/lib/jenkins/workspace/elastic+kibana+pipeline-pull-request/kibana/packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a/public/foo/index', + '/var/lib/jenkins/workspace/elastic+kibana+pipeline-pull-request/kibana/packages/kbn-docs-utils/src/api_docs/integration_tests/__fixtures__/src/plugin_a' ) ).toBe('foo'); }); it('test removeBrokenLinks', () => { - const tsConfigFilePath = Path.resolve(__dirname, 'tests/__fixtures__/src/tsconfig.json'); + const tsConfigFilePath = Path.resolve( + __dirname, + 'integration_tests/__fixtures__/src/tsconfig.json' + ); const project = new Project({ tsConfigFilePath, }); diff --git a/packages/kbn-performance-testing-dataset-extractor/src/es_client.ts b/packages/kbn-performance-testing-dataset-extractor/src/es_client.ts index c878f148e4e67..cd791226cc095 100644 --- a/packages/kbn-performance-testing-dataset-extractor/src/es_client.ts +++ b/packages/kbn-performance-testing-dataset-extractor/src/es_client.ts @@ -62,7 +62,7 @@ export interface SpanDocument extends Omit { export interface TransactionDocument extends Omit { service: { name: string; environment: string; version: string }; processor: string; - url: { path: string }; + url: { path: string; query?: string }; http: { request: Request; response: Response; diff --git a/packages/kbn-performance-testing-dataset-extractor/src/request.ts b/packages/kbn-performance-testing-dataset-extractor/src/request.ts index 7c9efaf935742..034c4a276f6ef 100644 --- a/packages/kbn-performance-testing-dataset-extractor/src/request.ts +++ b/packages/kbn-performance-testing-dataset-extractor/src/request.ts @@ -62,6 +62,7 @@ export const getKibanaRequests = ( http: { method: hit.http.request.method, path: hit.url.path, + query: hit.url?.query, headers: combineHeaderFieldValues(hit.http.request.headers), body: payload ? JSON.stringify(strToJSON(payload)) : undefined, statusCode: hit.http.response.status_code, diff --git a/packages/kbn-performance-testing-dataset-extractor/src/types.ts b/packages/kbn-performance-testing-dataset-extractor/src/types.ts index c0dad9757a183..69df8a5fd490c 100644 --- a/packages/kbn-performance-testing-dataset-extractor/src/types.ts +++ b/packages/kbn-performance-testing-dataset-extractor/src/types.ts @@ -17,6 +17,7 @@ export interface Request { http: { method: string; path: string; + query?: string; headers?: { [key: string]: string }; params?: string; body?: JSON | string; diff --git a/packages/kbn-plugin-generator/template/public/components/app.tsx.ejs b/packages/kbn-plugin-generator/template/public/components/app.tsx.ejs index 8da267c864fda..0de37b340a17e 100644 --- a/packages/kbn-plugin-generator/template/public/components/app.tsx.ejs +++ b/packages/kbn-plugin-generator/template/public/components/app.tsx.ejs @@ -8,9 +8,9 @@ import { EuiHorizontalRule, EuiPage, EuiPageBody, - EuiPageContent, - EuiPageContentBody, - EuiPageContentHeader, + EuiPageContent_Deprecated as EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, + EuiPageContentHeader_Deprecated as EuiPageContentHeader, EuiPageHeader, EuiTitle, EuiText, diff --git a/packages/kbn-securitysolution-io-ts-list-types/src/request/index.ts b/packages/kbn-securitysolution-io-ts-list-types/src/request/index.ts index 8697f684c9356..bb604d3e7a800 100644 --- a/packages/kbn-securitysolution-io-ts-list-types/src/request/index.ts +++ b/packages/kbn-securitysolution-io-ts-list-types/src/request/index.ts @@ -41,3 +41,6 @@ export * from './update_exception_list_item_validation'; export * from './update_exception_list_schema'; export * from './update_list_item_schema'; export * from './update_list_schema'; + +// Internal routes +export * from './internal/create_exception_list_schema'; diff --git a/packages/kbn-securitysolution-io-ts-list-types/src/request/internal/create_exception_list_schema/index.test.ts b/packages/kbn-securitysolution-io-ts-list-types/src/request/internal/create_exception_list_schema/index.test.ts new file mode 100644 index 0000000000000..21ca666c8c6cd --- /dev/null +++ b/packages/kbn-securitysolution-io-ts-list-types/src/request/internal/create_exception_list_schema/index.test.ts @@ -0,0 +1,69 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { left } from 'fp-ts/lib/Either'; +import { pipe } from 'fp-ts/lib/pipeable'; + +import { ExceptionListTypeEnum } from '../../../common/exception_list'; +import { exactCheck, foldLeftRight, getPaths } from '@kbn/securitysolution-io-ts-utils'; + +import { internalCreateExceptionListSchema } from '.'; +import { getCreateExceptionListSchemaMock } from '../../create_exception_list_schema/index.mock'; + +describe('create_exception_list_schema', () => { + test('it should accept artifact list_id', () => { + const payload = { + ...getCreateExceptionListSchemaMock(), + list_id: ExceptionListTypeEnum.ENDPOINT_BLOCKLISTS, + }; + const decoded = internalCreateExceptionListSchema.decode(payload); + const checked = exactCheck(payload, decoded); + const message = pipe(checked, foldLeftRight); + expect(getPaths(left(message.errors))).toEqual([]); + expect(message.schema).toEqual(payload); + }); + test('it should fail when invalid list_id', () => { + const payload = { + ...getCreateExceptionListSchemaMock(), + list_id: ExceptionListTypeEnum.DETECTION, + }; + const decoded = internalCreateExceptionListSchema.decode(payload); + const checked = exactCheck(payload, decoded); + const message = pipe(checked, foldLeftRight); + expect(getPaths(left(message.errors))).toEqual([ + 'Invalid value "detection" supplied to "list_id"', + ]); + expect(message.schema).toEqual({}); + }); + test('it should accept artifact type', () => { + const payload = { + ...getCreateExceptionListSchemaMock(), + list_id: ExceptionListTypeEnum.ENDPOINT_BLOCKLISTS, + type: ExceptionListTypeEnum.ENDPOINT_BLOCKLISTS, + }; + const decoded = internalCreateExceptionListSchema.decode(payload); + const checked = exactCheck(payload, decoded); + const message = pipe(checked, foldLeftRight); + expect(getPaths(left(message.errors))).toEqual([]); + expect(message.schema).toEqual(payload); + }); + test('it should fail when invalid type', () => { + const payload = { + ...getCreateExceptionListSchemaMock(), + list_id: ExceptionListTypeEnum.ENDPOINT_BLOCKLISTS, + type: ExceptionListTypeEnum.DETECTION, + }; + const decoded = internalCreateExceptionListSchema.decode(payload); + const checked = exactCheck(payload, decoded); + const message = pipe(checked, foldLeftRight); + expect(getPaths(left(message.errors))).toEqual([ + 'Invalid value "detection" supplied to "type"', + ]); + expect(message.schema).toEqual({}); + }); +}); diff --git a/packages/kbn-securitysolution-io-ts-list-types/src/request/internal/create_exception_list_schema/index.ts b/packages/kbn-securitysolution-io-ts-list-types/src/request/internal/create_exception_list_schema/index.ts new file mode 100644 index 0000000000000..78d61436306aa --- /dev/null +++ b/packages/kbn-securitysolution-io-ts-list-types/src/request/internal/create_exception_list_schema/index.ts @@ -0,0 +1,52 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { + ENDPOINT_BLOCKLISTS_LIST_ID, + ENDPOINT_EVENT_FILTERS_LIST_ID, + ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID, + ENDPOINT_TRUSTED_APPS_LIST_ID, +} from '@kbn/securitysolution-list-constants'; +import * as t from 'io-ts'; + +import { + createExceptionListSchema, + CreateExceptionListSchemaDecoded, +} from '../../create_exception_list_schema'; + +export const internalCreateExceptionListSchema = t.intersection([ + t.exact( + t.type({ + type: t.keyof({ + endpoint: null, + endpoint_events: null, + endpoint_host_isolation_exceptions: null, + endpoint_blocklists: null, + }), + }) + ), + t.exact( + t.partial({ + // TODO: Move the ALL_ENDPOINT_ARTIFACT_LIST_IDS inside the package and use it here instead + list_id: t.keyof({ + [ENDPOINT_TRUSTED_APPS_LIST_ID]: null, + [ENDPOINT_EVENT_FILTERS_LIST_ID]: null, + [ENDPOINT_HOST_ISOLATION_EXCEPTIONS_LIST_ID]: null, + [ENDPOINT_BLOCKLISTS_LIST_ID]: null, + }), + }) + ), + createExceptionListSchema, +]); + +export type InternalCreateExceptionListSchema = t.OutputOf< + typeof internalCreateExceptionListSchema +>; + +// This type is used after a decode since some things are defaults after a decode. +export type InternalCreateExceptionListSchemaDecoded = CreateExceptionListSchemaDecoded; diff --git a/packages/kbn-securitysolution-list-constants/index.ts b/packages/kbn-securitysolution-list-constants/index.ts index 43fe3ac47f8df..6bdae56d74b7b 100644 --- a/packages/kbn-securitysolution-list-constants/index.ts +++ b/packages/kbn-securitysolution-list-constants/index.ts @@ -20,6 +20,12 @@ export const LIST_PRIVILEGES_URL = `${LIST_URL}/privileges`; export const EXCEPTION_LIST_URL = '/api/exception_lists'; export const EXCEPTION_LIST_ITEM_URL = '/api/exception_lists/items'; +/** + * Internal exception list routes + */ +export const INTERNAL_EXCEPTION_LIST_URL = `/internal${EXCEPTION_LIST_URL}`; +export const INTERNAL_EXCEPTIONS_LIST_ENSURE_CREATED_URL = `${INTERNAL_EXCEPTION_LIST_URL}/_create`; + /** * Exception list spaces */ diff --git a/packages/kbn-test/src/functional_test_runner/lib/config/schema.ts b/packages/kbn-test/src/functional_test_runner/lib/config/schema.ts index ddf6d86ec83b9..7e7ba9e26eb48 100644 --- a/packages/kbn-test/src/functional_test_runner/lib/config/schema.ts +++ b/packages/kbn-test/src/functional_test_runner/lib/config/schema.ts @@ -71,6 +71,7 @@ const dockerServerSchema = () => port: requiredWhenEnabled(Joi.number()), portInContainer: requiredWhenEnabled(Joi.number()), waitForLogLine: Joi.alternatives(Joi.object().instance(RegExp), Joi.string()).optional(), + waitForLogLineTimeoutMs: Joi.number().integer().optional(), waitFor: Joi.func().optional(), args: Joi.array().items(Joi.string()).optional(), }) diff --git a/packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts b/packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts index 3ea63c27a30db..a31bcb8ffd342 100644 --- a/packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts +++ b/packages/kbn-test/src/functional_test_runner/lib/docker_servers/define_docker_servers_config.ts @@ -14,6 +14,7 @@ export interface DockerServerSpec { port: number; image: string; waitForLogLine?: RegExp | string; + waitForLogLineTimeoutMs?: number; /** a function that should return an observable that will allow the tests to execute as soon as it emits anything */ waitFor?: (server: DockerServer, logLine$: Rx.Observable) => Rx.Observable; /* additional command line arguments passed to docker run */ diff --git a/packages/kbn-test/src/functional_test_runner/lib/docker_servers/docker_servers_service.ts b/packages/kbn-test/src/functional_test_runner/lib/docker_servers/docker_servers_service.ts index b6af2b5c8df9f..b6fdf8d00e54c 100644 --- a/packages/kbn-test/src/functional_test_runner/lib/docker_servers/docker_servers_service.ts +++ b/packages/kbn-test/src/functional_test_runner/lib/docker_servers/docker_servers_service.ts @@ -101,7 +101,7 @@ export class DockerServersService { private async startServer(server: DockerServer) { const { log, lifecycle } = this; - const { image, name, waitFor, waitForLogLine } = server; + const { image, name, waitFor, waitForLogLine, waitForLogLineTimeoutMs } = server; // pull image from registry log.info(`[docker:${name}] pulling docker image "${image}"`); @@ -200,7 +200,8 @@ export class DockerServersService { : line.includes(waitForLogLine) ) ), - `waitForLogLine didn't emit anything` + `waitForLogLine didn't emit anything`, + waitForLogLineTimeoutMs ) ).toPromise(); } diff --git a/packages/shared-ux/page/kibana_template/impl/src/__snapshots__/page_template.test.tsx.snap b/packages/shared-ux/page/kibana_template/impl/src/__snapshots__/page_template.test.tsx.snap index ed9a0b61e86f9..2932ceff41cc7 100644 --- a/packages/shared-ux/page/kibana_template/impl/src/__snapshots__/page_template.test.tsx.snap +++ b/packages/shared-ux/page/kibana_template/impl/src/__snapshots__/page_template.test.tsx.snap @@ -2,21 +2,23 @@ exports[`KibanaPageTemplate render basic template 1`] = `

-
-
-
-
- Child element -
-
+
+ Child element
-
+
`; diff --git a/packages/shared-ux/page/kibana_template/impl/src/__snapshots__/page_template_inner.test.tsx.snap b/packages/shared-ux/page/kibana_template/impl/src/__snapshots__/page_template_inner.test.tsx.snap index ef665dff6fe6d..0588fbfae152d 100644 --- a/packages/shared-ux/page/kibana_template/impl/src/__snapshots__/page_template_inner.test.tsx.snap +++ b/packages/shared-ux/page/kibana_template/impl/src/__snapshots__/page_template_inner.test.tsx.snap @@ -1,68 +1,44 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP -exports[`KibanaPageTemplateInner custom template 1`] = ` - - - test -

- } - iconColor="" - iconType="test" - title={ -

- test -

- } - /> -
-`; - exports[`KibanaPageTemplateInner isEmpty no pageHeader 1`] = ` - `; exports[`KibanaPageTemplateInner isEmpty pageHeader & children 1`] = ` - + <_EuiPageHeader + description="test" + iconType="test" + pageTitle="test" + rightSideItems={ + Array [ "test", - ], + ] } - } - template="centeredContent" -> + />
Child element
-
+ `; exports[`KibanaPageTemplateInner isEmpty pageHeader & no children 1`] = ` - - } /> - + +`; + +exports[`KibanaPageTemplateInner page sidebar 1`] = ` +<_EuiPageTemplate + className="kbnPageTemplate" + minHeight={0} + offset={0} +> + + Test + + `; diff --git a/packages/shared-ux/page/kibana_template/impl/src/page_template.tsx b/packages/shared-ux/page/kibana_template/impl/src/page_template.tsx index 5a05315d395a7..afd981ca9eaa5 100644 --- a/packages/shared-ux/page/kibana_template/impl/src/page_template.tsx +++ b/packages/shared-ux/page/kibana_template/impl/src/page_template.tsx @@ -7,6 +7,7 @@ */ import React, { FC } from 'react'; +import { EuiPageTemplate } from '@elastic/eui'; import { NoDataConfigPage, @@ -16,8 +17,7 @@ import { KibanaPageTemplateProps } from '@kbn/shared-ux-page-kibana-template-typ import { KibanaPageTemplateInner, KibanaPageTemplateWithSolutionNav } from './page_template_inner'; -export const KibanaPageTemplate: FC = ({ - template, +export const _KibanaPageTemplate: FC = ({ className, children, solutionNav, @@ -51,7 +51,6 @@ export const KibanaPageTemplate: FC = ({ if (solutionNav) { return ( = ({ ); } - return ( - - ); + return ; }; + +/** + * Kibana-specific wrapper of EuiPageTemplate and it's namespaced components + */ +export const KibanaPageTemplate = Object.assign(_KibanaPageTemplate, { + Sidebar: EuiPageTemplate.Sidebar, + Header: EuiPageTemplate.Header, + Section: EuiPageTemplate.Section, + BottomBar: EuiPageTemplate.BottomBar, + EmptyPrompt: EuiPageTemplate.EmptyPrompt, +}); diff --git a/packages/shared-ux/page/kibana_template/impl/src/page_template_inner.test.tsx b/packages/shared-ux/page/kibana_template/impl/src/page_template_inner.test.tsx index c17b83c4f4eed..d7278ac889669 100644 --- a/packages/shared-ux/page/kibana_template/impl/src/page_template_inner.test.tsx +++ b/packages/shared-ux/page/kibana_template/impl/src/page_template_inner.test.tsx @@ -10,9 +10,6 @@ import React from 'react'; import { shallow } from 'enzyme'; -// imports from elastic packages -import { EuiEmptyPrompt, EuiPageTemplate } from '@elastic/eui'; - // imports from immediate files import { KibanaPageTemplateInner } from './page_template_inner'; @@ -42,7 +39,7 @@ describe('KibanaPageTemplateInner', () => { ); expect(component).toMatchSnapshot(); - expect(component.find(EuiEmptyPrompt).length).toBe(1); + expect(component.find('_EuiPageEmptyPrompt').length).toBe(1); }); test('no pageHeader', () => { @@ -53,15 +50,9 @@ describe('KibanaPageTemplateInner', () => { }); }); - test('custom template', () => { - const component = shallow( - - ); + test('page sidebar', () => { + const component = shallow(Test} />); expect(component).toMatchSnapshot(); - expect(component.find(EuiPageTemplate).props().template).toEqual('centeredContent'); + expect(component.find('EuiPageSidebar')).toHaveLength(1); }); }); diff --git a/packages/shared-ux/page/kibana_template/impl/src/page_template_inner.tsx b/packages/shared-ux/page/kibana_template/impl/src/page_template_inner.tsx index 6d836a3c66d7f..762435157f97d 100644 --- a/packages/shared-ux/page/kibana_template/impl/src/page_template_inner.tsx +++ b/packages/shared-ux/page/kibana_template/impl/src/page_template_inner.tsx @@ -8,7 +8,7 @@ import React, { FC } from 'react'; import classNames from 'classnames'; -import { EuiEmptyPrompt, EuiPageTemplate } from '@elastic/eui'; +import { EuiPageTemplate } from '@elastic/eui'; import { withSolutionNav } from '@kbn/shared-ux-page-solution-nav'; import { KibanaPageTemplateProps as Props } from '@kbn/shared-ux-page-kibana-template-types'; @@ -25,45 +25,60 @@ const getClasses = (template?: string, className?: string) => { * A thin wrapper around EuiPageTemplate with a few Kibana specific additions */ export const KibanaPageTemplateInner: FC = ({ - template, className, pageHeader, children, isEmptyState, + pageSideBar, + pageSideBarProps, ...rest }) => { - /** - * An easy way to create the right content for empty pages - */ - const emptyStateDefaultTemplate = 'centeredBody'; - let header = pageHeader; + let header; - if (isEmptyState) { - if (pageHeader && !children) { - template = template ?? emptyStateDefaultTemplate; - const { iconType, pageTitle, description, rightSideItems } = pageHeader; - const title = pageTitle ?

{pageTitle}

: undefined; - const body = description ?

{description}

: undefined; - header = undefined; - children = ( - - ); - } else if (pageHeader && children) { - template = template ?? 'centeredContent'; - } else if (!pageHeader) { - template = template ?? emptyStateDefaultTemplate; - } + if (isEmptyState && pageHeader && !children) { + const { iconType, pageTitle, description, rightSideItems } = pageHeader; + const title = pageTitle ?

{pageTitle}

: undefined; + const body = description ?

{description}

: undefined; + children = ( + + ); + } else if (pageHeader) { + header = ; } - const classes = getClasses(template, className); + let sideBar; + if (pageSideBar) { + sideBar = ( + + {pageSideBar} + + ); + } + + const classes = getClasses(undefined, className); + return ( - + + {sideBar} + {header} {children} ); diff --git a/packages/shared-ux/page/kibana_template/types/index.d.ts b/packages/shared-ux/page/kibana_template/types/index.d.ts index 8f3129c31817d..a8181876204e2 100644 --- a/packages/shared-ux/page/kibana_template/types/index.d.ts +++ b/packages/shared-ux/page/kibana_template/types/index.d.ts @@ -6,8 +6,9 @@ * Side Public License, v 1. */ -import { EuiPageTemplateProps } from '@elastic/eui'; +import { EuiPageTemplateProps, EuiPageSidebarProps, EuiPageHeaderProps } from '@elastic/eui'; import { SolutionNavProps } from '@kbn/shared-ux-page-solution-nav'; +import { ReactNode } from 'react'; import { NoDataConfig, @@ -21,10 +22,7 @@ export type { NoDataConfig } from '@kbn/shared-ux-page-no-data-config-types'; export type KibanaPageTemplateProps = EuiPageTemplateProps & { /** - * Changes the template type depending on other props provided. - * With `pageHeader` only: Uses `centeredBody` and fills an EuiEmptyPrompt with `pageHeader` info. - * With `children` only: Uses `centeredBody` - * With `pageHeader` and `children`: Uses `centeredContent` + * Converts the `pageHeader` contents into an EuiEmptyPrompt when no `children` are present */ isEmptyState?: boolean; /** @@ -32,8 +30,14 @@ export type KibanaPageTemplateProps = EuiPageTemplateProps & { */ solutionNav?: SolutionNavProps; /** - * Accepts a configuration object, that when provided, ignores pageHeader and children and instead + * Accepts a configuration object, that when provided, ignores `pageHeader` and `children` and instead * displays Agent, Beats, and custom cards to direct users to the right ingest location */ noDataConfig?: NoDataConfig; + /** + * BWC Props from old EUI template + */ + pageHeader?: EuiPageHeaderProps; + pageSideBar?: ReactNode; + pageSideBarProps?: EuiPageSidebarProps; }; diff --git a/packages/shared-ux/page/no_data/impl/src/no_data_page.tsx b/packages/shared-ux/page/no_data/impl/src/no_data_page.tsx index 1bc93123aea95..1ba9b18049e87 100644 --- a/packages/shared-ux/page/no_data/impl/src/no_data_page.tsx +++ b/packages/shared-ux/page/no_data/impl/src/no_data_page.tsx @@ -9,7 +9,7 @@ import React from 'react'; import classNames from 'classnames'; -import { EuiLink, EuiSpacer, EuiText, EuiTextColor } from '@elastic/eui'; +import { EuiPageTemplate, EuiLink, EuiSpacer, EuiText, EuiTextColor } from '@elastic/eui'; import { i18n } from '@kbn/i18n'; import { FormattedMessage } from '@kbn/i18n-react'; @@ -51,7 +51,12 @@ export const NoDataPage = ({ ); return ( -
+ @@ -62,6 +67,6 @@ export const NoDataPage = ({ -
+ ); }; diff --git a/packages/shared-ux/page/no_data_config/impl/src/constants.ts b/packages/shared-ux/page/no_data_config/impl/src/constants.ts index 1c4c2685433d4..96e1b1ac6b777 100644 --- a/packages/shared-ux/page/no_data_config/impl/src/constants.ts +++ b/packages/shared-ux/page/no_data_config/impl/src/constants.ts @@ -6,16 +6,4 @@ * Side Public License, v 1. */ -import type { NoDataConfigPageProps } from '@kbn/shared-ux-page-no-data-config-types'; - export const NO_DATA_PAGE_MAX_WIDTH = 950; - -export const NO_DATA_PAGE_TEMPLATE_PROPS: NoDataConfigPageProps = { - restrictWidth: NO_DATA_PAGE_MAX_WIDTH, - template: 'centeredBody', - pageContentProps: { - hasShadow: false, - color: 'transparent', - paddingSize: 'none', - }, -}; diff --git a/packages/shared-ux/page/no_data_config/impl/src/no_data_config_page.tsx b/packages/shared-ux/page/no_data_config/impl/src/no_data_config_page.tsx index f5153aa25686e..5ebebb72cb434 100644 --- a/packages/shared-ux/page/no_data_config/impl/src/no_data_config_page.tsx +++ b/packages/shared-ux/page/no_data_config/impl/src/no_data_config_page.tsx @@ -14,7 +14,7 @@ import { withSolutionNav } from '@kbn/shared-ux-page-solution-nav'; import { NoDataPage } from '@kbn/shared-ux-page-no-data'; import type { NoDataConfigPageProps } from '@kbn/shared-ux-page-no-data-config-types'; -import { NO_DATA_PAGE_TEMPLATE_PROPS } from './constants'; +import { NO_DATA_PAGE_MAX_WIDTH } from './constants'; const getClasses = (template?: string, className?: string) => { return classNames( @@ -25,20 +25,34 @@ const getClasses = (template?: string, className?: string) => { }; export const NoDataConfigPage = (props: NoDataConfigPageProps) => { - const { className: classNameProp, noDataConfig, ...rest } = props; + const { className, noDataConfig, pageSideBar, pageSideBarProps, ...rest } = props; if (!noDataConfig) { return null; } - const className = getClasses(NO_DATA_PAGE_TEMPLATE_PROPS.template, classNameProp); + let sideBar; + if (pageSideBar) { + sideBar = ( + {pageSideBar} + ); + } + + const classes = getClasses(undefined, className); return ( + {sideBar} ); diff --git a/packages/shared-ux/page/no_data_config/types/index.d.ts b/packages/shared-ux/page/no_data_config/types/index.d.ts index 10950bcf296c8..7d2258099a051 100644 --- a/packages/shared-ux/page/no_data_config/types/index.d.ts +++ b/packages/shared-ux/page/no_data_config/types/index.d.ts @@ -6,7 +6,8 @@ * Side Public License, v 1. */ -import { EuiPageTemplateProps } from '@elastic/eui'; +import { ReactNode } from 'react'; +import { EuiPageTemplateProps, EuiPageSidebarProps } from '@elastic/eui'; import type { NoDataPageProps, @@ -20,8 +21,13 @@ export type NoDataConfig = NoDataPageProps; export type NoDataConfigPageProps = EuiPageTemplateProps & { /** - * Accepts a configuration object, that when provided, ignores pageHeader and children and instead + * Accepts a configuration object, that when provided, ignores `pageHeader` and `children` and instead * displays Agent, Beats, and custom cards to direct users to the right ingest location */ noDataConfig?: NoDataConfig; + /** + * BWC Props from old EUI template + */ + pageSideBar?: ReactNode; + pageSideBarProps?: EuiPageSidebarProps; }; diff --git a/packages/shared-ux/page/solution_nav/src/__snapshots__/with_solution_nav.test.tsx.snap b/packages/shared-ux/page/solution_nav/src/__snapshots__/with_solution_nav.test.tsx.snap index ad42fa64b24c8..bae96ec7b65d3 100644 --- a/packages/shared-ux/page/solution_nav/src/__snapshots__/with_solution_nav.test.tsx.snap +++ b/packages/shared-ux/page/solution_nav/src/__snapshots__/with_solution_nav.test.tsx.snap @@ -52,7 +52,8 @@ exports[`WithSolutionNav renders wrapped component 1`] = ` } pageSideBarProps={ Object { - "className": "kbnSolutionNav__sidebar", + "className": "kbnSolutionNav__sidebar kbnStickyMenu", + "minWidth": undefined, "paddingSize": "none", } } @@ -111,7 +112,8 @@ exports[`WithSolutionNav with children 1`] = ` } pageSideBarProps={ Object { - "className": "kbnSolutionNav__sidebar", + "className": "kbnSolutionNav__sidebar kbnStickyMenu", + "minWidth": undefined, "paddingSize": "none", } } diff --git a/packages/shared-ux/page/solution_nav/src/collapse_button.scss b/packages/shared-ux/page/solution_nav/src/collapse_button.scss index 3dca222cdb1af..fa6f0864e71d6 100644 --- a/packages/shared-ux/page/solution_nav/src/collapse_button.scss +++ b/packages/shared-ux/page/solution_nav/src/collapse_button.scss @@ -35,11 +35,11 @@ opacity: 1 !important; transition-delay: 0s !important; left: 0 !important; - right: 0; + right: auto; top: 0; bottom: 0; height: 100%; - width: 100%; + width: $euiSizeXXL; border-radius: 0; // Keep the icon at the top instead of it getting shifted to the center of the page padding-top: $euiSizeL + $euiSizeS; diff --git a/packages/shared-ux/page/solution_nav/src/with_solution_nav.scss b/packages/shared-ux/page/solution_nav/src/with_solution_nav.scss index 1e4dfba82d13c..00cfb7b9f927a 100644 --- a/packages/shared-ux/page/solution_nav/src/with_solution_nav.scss +++ b/packages/shared-ux/page/solution_nav/src/with_solution_nav.scss @@ -1,17 +1,8 @@ +// TODO: Can now be converted to Emotion .kbnSolutionNav__sidebar { overflow: hidden; - // Temporary hack till the sizing is changed directly in EUI - min-width: 248px; @include euiCanAnimate { transition: min-width $euiAnimSpeedFast $euiAnimSlightResistance; } - - &.kbnSolutionNav__sidebar--shrink { - min-width: $euiSizeXXL; - } - - .kbnPageTemplate--centeredBody & { - border-right: $euiBorderThin; - } } diff --git a/packages/shared-ux/page/solution_nav/src/with_solution_nav.tsx b/packages/shared-ux/page/solution_nav/src/with_solution_nav.tsx index 5b6fc9e083dbe..ef94ed89ac873 100644 --- a/packages/shared-ux/page/solution_nav/src/with_solution_nav.tsx +++ b/packages/shared-ux/page/solution_nav/src/with_solution_nav.tsx @@ -6,9 +6,9 @@ * Side Public License, v 1. */ -import React, { ComponentType, useState } from 'react'; +import React, { ComponentType, ReactNode, useState } from 'react'; import classNames from 'classnames'; -import { useIsWithinBreakpoints, EuiPageTemplateProps } from '@elastic/eui'; +import { useIsWithinBreakpoints, useEuiTheme, EuiPageSidebarProps } from '@elastic/eui'; import { SolutionNav, SolutionNavProps } from './solution_nav'; import './with_solution_nav.scss'; @@ -18,31 +18,30 @@ function getDisplayName(Component: ComponentType) { return Component.displayName || Component.name || 'UnnamedComponent'; } -type TemplateProps = Pick< - EuiPageTemplateProps, - 'pageSideBar' | 'pageSideBarProps' | 'template' | 'children' ->; - -type ComponentProps = TemplateProps & { - isEmptyState?: boolean; -}; +// TODO: Would be nice to grab these from KibanaPageTemplate or vice-versa +interface TemplateProps { + pageSideBar?: ReactNode; + pageSideBarProps?: Partial; + children?: ReactNode; +} type Props

= P & - ComponentProps & { + TemplateProps & { solutionNav: SolutionNavProps; }; const SOLUTION_NAV_COLLAPSED_KEY = 'solutionNavIsCollapsed'; -export const withSolutionNav =

(WrappedComponent: ComponentType

) => { +export const withSolutionNav =

(WrappedComponent: ComponentType

) => { const WithSolutionNav = (props: Props

) => { const isMediumBreakpoint = useIsWithinBreakpoints(['m']); const isLargerBreakpoint = useIsWithinBreakpoints(['l', 'xl']); const [isSideNavOpenOnDesktop, setisSideNavOpenOnDesktop] = useState( !JSON.parse(String(localStorage.getItem(SOLUTION_NAV_COLLAPSED_KEY))) ); - const { solutionNav, ...propagatedProps } = props; - const { children, isEmptyState, template } = propagatedProps; + + const { solutionNav, children, ...propagatedProps } = props; + const { euiTheme } = useEuiTheme(); const toggleOpenOnDesktop = () => { setisSideNavOpenOnDesktop(!isSideNavOpenOnDesktop); @@ -52,17 +51,17 @@ export const withSolutionNav =

(WrappedComponent: Comp // Default navigation to allow collapsing const { canBeCollapsed = true } = solutionNav; + const isSidebarShrunk = + isMediumBreakpoint || (canBeCollapsed && isLargerBreakpoint && !isSideNavOpenOnDesktop); const sideBarClasses = classNames( 'kbnSolutionNav__sidebar', + 'kbnStickyMenu', { - 'kbnSolutionNav__sidebar--shrink': - isMediumBreakpoint || (canBeCollapsed && isLargerBreakpoint && !isSideNavOpenOnDesktop), + 'kbnSolutionNav__sidebar--shrink': isSidebarShrunk, }, props.pageSideBarProps?.className ); - const templateToUse = isEmptyState && !template ? 'centeredContent' : template; - const pageSideBar = ( (WrappedComponent: Comp /> ); - const pageSideBarProps = { + const pageSideBarProps: TemplateProps['pageSideBarProps'] = { paddingSize: 'none' as 'none', ...props.pageSideBarProps, + minWidth: isSidebarShrunk ? euiTheme.size.xxl : undefined, className: sideBarClasses, }; @@ -83,7 +83,6 @@ export const withSolutionNav =

(WrappedComponent: Comp ...(propagatedProps as P), pageSideBar, pageSideBarProps, - template: templateToUse, }} > {children} diff --git a/renovate.json b/renovate.json index b5523536465fd..8ec367e91ee71 100644 --- a/renovate.json +++ b/renovate.json @@ -27,7 +27,7 @@ "matchPackageNames": ["@elastic/charts"], "reviewers": ["team:datavis", "markov00", "nickofthyme"], "matchBaseBranches": ["main"], - "labels": ["release_note:skip", "auto-backport", "Team:DataVis"], + "labels": ["release_note:skip", "backport:skip", "Team:DataVis"], "draftPR": true, "enabled": true, "assignAutomerge": true, diff --git a/scripts/archive_migration_functions.sh b/scripts/archive_migration_functions.sh index 71260352982a2..a6d9e75271b5c 100755 --- a/scripts/archive_migration_functions.sh +++ b/scripts/archive_migration_functions.sh @@ -1,24 +1,36 @@ #!/bin/bash # ??? Should we migrate -# x-pack/test/functional/es_archives/dashboard/feature_controls/spaces +# x-pack/test/functional/es_archives/spaces/multi_space # ### Yes, it needs migration # ### Saved Object type(s) that we care about: # dashboard # index-pattern # visualization # ### Test file(s) that use it: -# x-pack/test/functional/apps/dashboard/group1/feature_controls/dashboard_spaces.ts +# x-pack/test/functional/apps/discover/preserve_url.ts +# x-pack/test/functional/apps/visualize/preserve_url.ts +# x-pack/test/functional/apps/dashboard/group1/preserve_url.ts # ### Config(s) that govern the test file(s): # x-pack/test/functional/apps/dashboard/group1/config.ts +# x-pack/test/functional/apps/discover/config.ts +# x-pack/test/functional/apps/visualize/config.ts standard_list="url,index-pattern,query,graph-workspace,tag,visualization,canvas-element,canvas-workpad,dashboard,search,lens,map,cases,uptime-dynamic-settings,osquery-saved-query,osquery-pack,infrastructure-ui-source,metrics-explorer-view,inventory-view,infrastructure-monitoring-log-view,apm-indices" -orig_archive="x-pack/test/functional/es_archives/dashboard/feature_controls/spaces" -new_archive="x-pack/test/functional/fixtures/kbn_archiver/dashboard/feature_controls/custom_space" -newArchives=("x-pack/test/functional/fixtures/kbn_archiver/dashboard/feature_controls/custom_space") -newArchives+=("x-pack/test/functional/fixtures/kbn_archiver/reporting/ecommerce_kibana_non_timezone_space") +orig_archive="x-pack/test/functional/es_archives/spaces/multi_space" +new_archive="x-pack/test/functional/fixtures/kbn_archiver/spaces/multi_space" + +# newArchives=("x-pack/test/functional/fixtures/kbn_archiver/dashboard/session_in_space") +# newArchives+=("x-pack/test/functional/fixtures/kbn_archiver/dashboard/session_in_another_space") + +testFiles=("x-pack/test/functional/apps/discover/preserve_url.ts") +testFiles+=("x-pack/test/functional/apps/visualize/preserve_url.ts") +testFiles+=("x-pack/test/functional/apps/dashboard/group1/preserve_url.ts") + test_config="x-pack/test/functional/apps/dashboard/group1/config.ts" +# test_config="x-pack/test/functional/apps/discover/config.ts" +# test_config="x-pack/test/functional/apps/visualize/config.ts" curl_so_count() { local so=${1:-search-session} @@ -356,14 +368,7 @@ save_kbn() { load_kbn() { local space=${1:-default} - - set -x - node scripts/kbn_archiver.js --config "$test_config" load "$new_archive" --space "$space" - set +x -} - -load_kbns() { - local space=${1:-default} + local archive=${2:-${new_archive}} for x in "${newArchives[@]}"; do set -x @@ -379,8 +384,9 @@ load_created_kbn_archive() { } unload_kbn() { + local archive=${1:-${new_archive}} set -x - node scripts/kbn_archiver.js --config "$test_config" unload "$new_archive" + node scripts/kbn_archiver.js --config "$test_config" unload "$archive" set +x } diff --git a/scripts/synthtrace.js b/scripts/synthtrace.js index bffa55065a17f..da09e190f7a03 100644 --- a/scripts/synthtrace.js +++ b/scripts/synthtrace.js @@ -6,7 +6,10 @@ * Side Public License, v 1. */ -require('../src/setup_node_env'); +require('@babel/register')({ + extensions: ['.ts', '.js'], + presets: [['@babel/preset-env', { targets: { node: 'current' } }], '@babel/preset-typescript'], +}); // We have to import directly from package since scenarios and worker.js are imported dynamically, // If we import the package (require('@kbn/apm-synthtrace')) the program will be executed on the compiled files, and thus we need to diff --git a/src/core/public/core_app/errors/error_application.tsx b/src/core/public/core_app/errors/error_application.tsx index fb9420319b350..69c257e84e1a5 100644 --- a/src/core/public/core_app/errors/error_application.tsx +++ b/src/core/public/core_app/errors/error_application.tsx @@ -12,7 +12,12 @@ import type { History } from 'history'; import { i18n } from '@kbn/i18n'; import { I18nProvider } from '@kbn/i18n-react'; -import { EuiEmptyPrompt, EuiPage, EuiPageBody, EuiPageContent } from '@elastic/eui'; +import { + EuiEmptyPrompt, + EuiPage, + EuiPageBody, + EuiPageContent_Deprecated as EuiPageContent, +} from '@elastic/eui'; import { CoreThemeProvider } from '@kbn/core-theme-browser-internal'; import type { IBasePath } from '@kbn/core-http-browser'; import type { AppMountParameters } from '@kbn/core-application-browser'; diff --git a/src/core/public/core_app/status/components/status_section.tsx b/src/core/public/core_app/status/components/status_section.tsx index 5cfa0e34971a6..15a5f65be59b1 100644 --- a/src/core/public/core_app/status/components/status_section.tsx +++ b/src/core/public/core_app/status/components/status_section.tsx @@ -7,7 +7,13 @@ */ import React, { FC, useMemo } from 'react'; -import { EuiFlexGroup, EuiFlexItem, EuiPageContent, EuiSpacer, EuiTitle } from '@elastic/eui'; +import { + EuiFlexGroup, + EuiFlexItem, + EuiPageContent_Deprecated as EuiPageContent, + EuiSpacer, + EuiTitle, +} from '@elastic/eui'; import { StatusTable } from './status_table'; import { FormattedStatus, getHighestStatus } from '../lib'; import { StatusBadge } from './status_badge'; diff --git a/src/core/public/core_app/status/components/version_header.tsx b/src/core/public/core_app/status/components/version_header.tsx index b07dc26c9dd02..c9b4109cf1f78 100644 --- a/src/core/public/core_app/status/components/version_header.tsx +++ b/src/core/public/core_app/status/components/version_header.tsx @@ -7,7 +7,12 @@ */ import React, { FC } from 'react'; -import { EuiFlexGroup, EuiFlexItem, EuiPageContent, EuiText } from '@elastic/eui'; +import { + EuiFlexGroup, + EuiFlexItem, + EuiPageContent_Deprecated as EuiPageContent, + EuiText, +} from '@elastic/eui'; import { FormattedMessage } from '@kbn/i18n-react'; import type { ServerVersion } from '../../../../types/status'; diff --git a/src/core/public/core_system.test.mocks.ts b/src/core/public/core_system.test.mocks.ts index 6018e9765399a..2b378b02554cb 100644 --- a/src/core/public/core_system.test.mocks.ts +++ b/src/core/public/core_system.test.mocks.ts @@ -19,7 +19,7 @@ import { notificationServiceMock } from '@kbn/core-notifications-browser-mocks'; import { overlayServiceMock } from '@kbn/core-overlays-browser-mocks'; import { pluginsServiceMock } from './plugins/plugins_service.mock'; import { uiSettingsServiceMock } from '@kbn/core-ui-settings-browser-mocks'; -import { renderingServiceMock } from './rendering/rendering_service.mock'; +import { renderingServiceMock } from '@kbn/core-rendering-browser-mocks'; import { integrationsServiceMock } from '@kbn/core-integrations-browser-mocks'; import { coreAppMock } from './core_app/core_app.mock'; @@ -114,7 +114,7 @@ jest.doMock('@kbn/core-doc-links-browser-internal', () => ({ export const MockRenderingService = renderingServiceMock.create(); export const RenderingServiceConstructor = jest.fn().mockImplementation(() => MockRenderingService); -jest.doMock('./rendering', () => ({ +jest.doMock('@kbn/core-rendering-browser-internal', () => ({ RenderingService: RenderingServiceConstructor, })); diff --git a/src/core/public/core_system.ts b/src/core/public/core_system.ts index 98784292c7bf0..cf3a9e6405f69 100644 --- a/src/core/public/core_system.ts +++ b/src/core/public/core_system.ts @@ -37,10 +37,10 @@ import { type InternalApplicationSetup, type InternalApplicationStart, } from '@kbn/core-application-browser-internal'; +import { RenderingService } from '@kbn/core-rendering-browser-internal'; import { fetchOptionalMemoryInfo } from './fetch_optional_memory_info'; import { CoreSetup, CoreStart } from '.'; import { PluginsService } from './plugins'; -import { RenderingService } from './rendering'; import { CoreApp } from './core_app'; import { diff --git a/src/core/public/index.scss b/src/core/public/index.scss index 325265c5c48b0..4b034af74fa1b 100644 --- a/src/core/public/index.scss +++ b/src/core/public/index.scss @@ -1,5 +1,4 @@ @import './variables'; @import './mixins'; @import './core'; -@import './rendering/index'; @import './styles/index'; diff --git a/src/core/public/styles/_index.scss b/src/core/public/styles/_index.scss index 324e238625683..42981c7e07398 100644 --- a/src/core/public/styles/_index.scss +++ b/src/core/public/styles/_index.scss @@ -1,3 +1,4 @@ @import './base'; @import './ace_overrides'; @import './chrome/index'; +@import './rendering/index'; diff --git a/src/core/public/rendering/_base.scss b/src/core/public/styles/rendering/_base.scss similarity index 92% rename from src/core/public/rendering/_base.scss rename to src/core/public/styles/rendering/_base.scss index c97afbf14a8f6..b64595e69a791 100644 --- a/src/core/public/rendering/_base.scss +++ b/src/core/public/styles/rendering/_base.scss @@ -1,4 +1,4 @@ -@import '../mixins'; +@import '../../mixins'; /** * Stretch the root element of the Kibana application to set the base-size that @@ -49,6 +49,12 @@ max-height: calc(100vh - #{$headerHeight + $euiSize}); top: $headerHeight + $euiSize; } + + .kbnSolutionNav__sidebar { + position: sticky; + max-height: calc(100vh - #{$headerHeight}); + top: $headerHeight; + } } } diff --git a/src/core/public/rendering/_index.scss b/src/core/public/styles/rendering/_index.scss similarity index 100% rename from src/core/public/rendering/_index.scss rename to src/core/public/styles/rendering/_index.scss diff --git a/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker b/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker index f40c129cd96ae..9a73f1f295492 100755 --- a/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker +++ b/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker @@ -295,6 +295,7 @@ kibana_vars=( xpack.ingestManager.registryUrl xpack.observability.annotations.index xpack.observability.unsafe.slo.enabled + xpack.observability.unsafe.alertDetails.enabled xpack.reporting.capture.browser.autoDownload xpack.reporting.capture.browser.chromium.disableSandbox xpack.reporting.capture.browser.chromium.inspect @@ -341,6 +342,7 @@ kibana_vars=( xpack.reporting.roles.allow xpack.reporting.roles.enabled xpack.ruleRegistry.write.enabled + xpack.security.accessAgreement.message xpack.security.audit.appender.fileName xpack.security.audit.appender.layout.highlight xpack.security.audit.appender.layout.pattern diff --git a/src/dev/license_checker/config.ts b/src/dev/license_checker/config.ts index 6b455b28166ad..fb7416baf0d03 100644 --- a/src/dev/license_checker/config.ts +++ b/src/dev/license_checker/config.ts @@ -84,6 +84,6 @@ export const LICENSE_OVERRIDES = { 'jsts@1.6.2': ['Eclipse Distribution License - v 1.0'], // cf. https://github.com/bjornharrtell/jsts '@mapbox/jsonlint-lines-primitives@2.0.2': ['MIT'], // license in readme https://github.com/tmcw/jsonlint '@elastic/ems-client@8.3.3': ['Elastic License 2.0'], - '@elastic/eui@62.2.4': ['SSPL-1.0 OR Elastic License 2.0'], + '@elastic/eui@63.0.6': ['SSPL-1.0 OR Elastic License 2.0'], 'language-subtag-registry@0.3.21': ['CC-BY-4.0'], // retired ODC‑By license https://github.com/mattcg/language-subtag-registry }; diff --git a/src/plugins/bfetch/server/plugin.ts b/src/plugins/bfetch/server/plugin.ts index cf7026b375702..0f51f5da62353 100644 --- a/src/plugins/bfetch/server/plugin.ts +++ b/src/plugins/bfetch/server/plugin.ts @@ -65,6 +65,7 @@ const streamingHeaders = { 'Content-Type': 'application/x-ndjson', Connection: 'keep-alive', 'Transfer-Encoding': 'chunked', + 'X-Accel-Buffering': 'no', }; interface Query { diff --git a/src/plugins/chart_expressions/expression_xy/public/components/xy_chart.test.tsx b/src/plugins/chart_expressions/expression_xy/public/components/xy_chart.test.tsx index 493ba08ee9542..387d1a077a747 100644 --- a/src/plugins/chart_expressions/expression_xy/public/components/xy_chart.test.tsx +++ b/src/plugins/chart_expressions/expression_xy/public/components/xy_chart.test.tsx @@ -316,7 +316,7 @@ describe('XYChart component', () => { const axisStyle = instance.find(Axis).first().prop('timeAxisLayerCount'); - expect(axisStyle).toBe(3); + expect(axisStyle).toBe(2); }); test('it should disable the new time axis for a vertical bar with break down dimension', () => { const timeLayer: DataLayerConfig = { @@ -366,7 +366,7 @@ describe('XYChart component', () => { const axisStyle = instance.find(Axis).first().prop('timeAxisLayerCount'); - expect(axisStyle).toBe(3); + expect(axisStyle).toBe(2); }); }); describe('endzones', () => { diff --git a/src/plugins/chart_expressions/expression_xy/public/components/xy_chart.tsx b/src/plugins/chart_expressions/expression_xy/public/components/xy_chart.tsx index 0d6c21506a79f..62f67549f7df6 100644 --- a/src/plugins/chart_expressions/expression_xy/public/components/xy_chart.tsx +++ b/src/plugins/chart_expressions/expression_xy/public/components/xy_chart.tsx @@ -927,7 +927,7 @@ export function XYChart({ style={xAxisStyle} showOverlappingLabels={xAxisConfig?.showOverlappingLabels} showDuplicatedTicks={xAxisConfig?.showDuplicates} - timeAxisLayerCount={shouldUseNewTimeAxis ? 3 : 0} + timeAxisLayerCount={shouldUseNewTimeAxis ? 2 : 0} /> {isSplitChart && splitTable && ( { return ( diff --git a/src/plugins/console/public/application/containers/main/main.tsx b/src/plugins/console/public/application/containers/main/main.tsx index 889c9d352bc5d..74956a08d4194 100644 --- a/src/plugins/console/public/application/containers/main/main.tsx +++ b/src/plugins/console/public/application/containers/main/main.tsx @@ -8,7 +8,12 @@ import React, { useState } from 'react'; import { i18n } from '@kbn/i18n'; -import { EuiFlexGroup, EuiFlexItem, EuiTitle, EuiPageContent } from '@elastic/eui'; +import { + EuiFlexGroup, + EuiFlexItem, + EuiTitle, + EuiPageContent_Deprecated as EuiPageContent, +} from '@elastic/eui'; import { ConsoleHistory } from '../console_history'; import { Editor } from '../editor'; import { Settings } from '../settings'; diff --git a/src/plugins/console/public/lib/row_parser.test.ts b/src/plugins/console/public/lib/row_parser.test.ts new file mode 100644 index 0000000000000..d595e9841131d --- /dev/null +++ b/src/plugins/console/public/lib/row_parser.test.ts @@ -0,0 +1,91 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import '../application/models/legacy_core_editor/legacy_core_editor.test.mocks'; + +import RowParser from './row_parser'; +import { create, MODE } from '../application/models'; +import type { SenseEditor } from '../application/models'; +import type { CoreEditor } from '../types'; + +describe('RowParser', () => { + let editor: SenseEditor | null; + let parser: RowParser | null; + + beforeEach(function () { + // Set up our document body + document.body.innerHTML = `

+
+
+
+
`; + editor = create(document.getElementById('ConAppEditor')!); + parser = new RowParser(editor.getCoreEditor() as CoreEditor); + }); + + afterEach(function () { + editor?.getCoreEditor().destroy(); + editor = null; + parser = null; + }); + + describe('getRowParseMode', () => { + const forceRetokenize = false; + + it('should return MODE.BETWEEN_REQUESTS if line is empty', () => { + editor?.getCoreEditor().setValue('', forceRetokenize); + expect(parser?.getRowParseMode()).toBe(MODE.BETWEEN_REQUESTS); + }); + + it('should return MODE.BETWEEN_REQUESTS if line is a comment', () => { + editor?.getCoreEditor().setValue('// comment', forceRetokenize); + expect(parser?.getRowParseMode()).toBe(MODE.BETWEEN_REQUESTS); + }); + + it('should return MODE.REQUEST_START | MODE.REQUEST_END if line is a single line request', () => { + editor?.getCoreEditor().setValue('GET _search', forceRetokenize); + // eslint-disable-next-line no-bitwise + expect(parser?.getRowParseMode()).toBe(MODE.REQUEST_START | MODE.REQUEST_END); + }); + + it('should return MODE.IN_REQUEST if line is a request with an opening curly brace', () => { + editor?.getCoreEditor().setValue('{', forceRetokenize); + expect(parser?.getRowParseMode()).toBe(MODE.IN_REQUEST); + }); + + it('should return MODE.MULTI_DOC_CUR_DOC_END | MODE.IN_REQUEST if line is a multi doc request with an opening curly brace', () => { + editor?.getCoreEditor().setValue('GET _msearch\n{}\n{', forceRetokenize); + const lineNumber = editor?.getCoreEditor().getLineCount()! - 1; + expect(parser?.getRowParseMode(lineNumber)).toBe( + // eslint-disable-next-line no-bitwise + MODE.MULTI_DOC_CUR_DOC_END | MODE.IN_REQUEST + ); + }); + + it('should return MODE.MULTI_DOC_CUR_DOC_END | MODE.REQUEST_END if line is a multi doc request with a closing curly brace', () => { + editor?.getCoreEditor().setValue('GET _msearch\n{}\n{"foo": 1}\n', forceRetokenize); + const lineNumber = editor?.getCoreEditor().getLineCount()! - 1; + expect(parser?.getRowParseMode(lineNumber)).toBe( + // eslint-disable-next-line no-bitwise + MODE.MULTI_DOC_CUR_DOC_END | MODE.REQUEST_END + ); + }); + + it('should return MODE.REQUEST_START | MODE.REQUEST_END if line is a request with variables', () => { + editor?.getCoreEditor().setValue('GET /${exampleVariable}', forceRetokenize); + // eslint-disable-next-line no-bitwise + expect(parser?.getRowParseMode()).toBe(MODE.REQUEST_START | MODE.REQUEST_END); + }); + + it('should return MODE.REQUEST_END | MODE.MULTI_DOC_CUR_DOC_END for a request that ends with a curly closing brace', () => { + editor?.getCoreEditor().setValue('DELETE /_bar/_baz%{test}', forceRetokenize); + // eslint-disable-next-line no-bitwise + expect(parser?.getRowParseMode()).toBe(MODE.REQUEST_END | MODE.MULTI_DOC_CUR_DOC_END); + }); + }); +}); diff --git a/src/plugins/console/public/lib/row_parser.ts b/src/plugins/console/public/lib/row_parser.ts index 55014345ae3cc..2ecfbe61c952f 100644 --- a/src/plugins/console/public/lib/row_parser.ts +++ b/src/plugins/console/public/lib/row_parser.ts @@ -29,6 +29,8 @@ export default class RowParser { return MODE.BETWEEN_REQUESTS; } const mode = this.editor.getLineState(lineNumber); + const pos = this.editor.getCurrentPosition(); + const token = this.editor.getTokenAt(pos); if (!mode) { return MODE.BETWEEN_REQUESTS; @@ -57,8 +59,10 @@ export default class RowParser { return MODE.BETWEEN_REQUESTS; } // empty line or a comment waiting for a new req to start - if (line.indexOf('}', line.length - 1) >= 0) { - // check for a multi doc request (must start a new json doc immediately after this one end. + // If the line ends with a closing curly brace, it's the end of a request, + // and we should also check if the current token is not an url token + if (line.indexOf('}', line.length - 1) >= 0 && token?.type !== 'url.part') { + // check for a multi doc request must start a new json doc immediately after this one end. lineNumber++; if (lineNumber < linesCount + 1) { line = (this.editor.getLineValue(lineNumber) || '').trim(); diff --git a/src/plugins/console/server/lib/spec_definitions/js/search.ts b/src/plugins/console/server/lib/spec_definitions/js/search.ts index 88d08076bc207..25e1a782fa0a6 100644 --- a/src/plugins/console/server/lib/spec_definitions/js/search.ts +++ b/src/plugins/console/server/lib/spec_definitions/js/search.ts @@ -225,15 +225,6 @@ export const search = (specService: SpecDefinitionsService) => { }, }); - specService.addEndpointDescription('search_template', { - data_autocomplete_rules: { - template: { - __one_of: [{ __scope_link: 'search' }, { __scope_link: 'GLOBAL.script' }], - }, - params: {}, - }, - }); - specService.addEndpointDescription('render_search_template', { data_autocomplete_rules: { __one_of: [{ source: { __scope_link: 'search' } }, { __scope_link: 'GLOBAL.script' }], diff --git a/src/plugins/console/server/lib/spec_definitions/json/overrides/search_template.json b/src/plugins/console/server/lib/spec_definitions/json/overrides/search_template.json new file mode 100644 index 0000000000000..b1c3b66dfb24f --- /dev/null +++ b/src/plugins/console/server/lib/spec_definitions/json/overrides/search_template.json @@ -0,0 +1,11 @@ +{ + "search_template": { + "data_autocomplete_rules": { + "id": "", + "params": {}, + "source": {}, + "explain": false, + "profile": false + } + } +} diff --git a/src/plugins/controls/common/index.ts b/src/plugins/controls/common/index.ts index a201553c09ec1..346cb53ce4244 100644 --- a/src/plugins/controls/common/index.ts +++ b/src/plugins/controls/common/index.ts @@ -36,3 +36,4 @@ export { // Control Type exports export { OPTIONS_LIST_CONTROL, type OptionsListEmbeddableInput } from './options_list/types'; export { type RangeSliderEmbeddableInput, RANGE_SLIDER_CONTROL } from './range_slider/types'; +export { TIME_SLIDER_CONTROL } from './time_slider/types'; diff --git a/src/plugins/controls/common/time_slider/time_slider_persistable_state.ts b/src/plugins/controls/common/time_slider/time_slider_persistable_state.ts new file mode 100644 index 0000000000000..cc8f6a8855af5 --- /dev/null +++ b/src/plugins/controls/common/time_slider/time_slider_persistable_state.ts @@ -0,0 +1,32 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { + EmbeddableStateWithType, + EmbeddablePersistableStateService, +} from '@kbn/embeddable-plugin/common'; +import { SavedObjectReference } from '@kbn/core/types'; +import { TimeSliderControlEmbeddableInput } from './types'; + +type TimeSliderInputWithType = Partial & { type: string }; + +export const createTimeSliderInject = (): EmbeddablePersistableStateService['inject'] => { + return (state: EmbeddableStateWithType, references: SavedObjectReference[]) => { + const workingState = { ...state } as EmbeddableStateWithType | TimeSliderInputWithType; + return workingState as EmbeddableStateWithType; + }; +}; + +export const createTimeSliderExtract = (): EmbeddablePersistableStateService['extract'] => { + return (state: EmbeddableStateWithType) => { + const workingState = { ...state } as EmbeddableStateWithType | TimeSliderInputWithType; + const references: SavedObjectReference[] = []; + + return { state: workingState as EmbeddableStateWithType, references }; + }; +}; diff --git a/src/plugins/controls/common/time_slider/types.ts b/src/plugins/controls/common/time_slider/types.ts new file mode 100755 index 0000000000000..0fa92f695ad71 --- /dev/null +++ b/src/plugins/controls/common/time_slider/types.ts @@ -0,0 +1,17 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import type { ControlInput } from '../types'; + +export const TIME_SLIDER_CONTROL = 'timeSlider'; + +export interface TimeSliderControlEmbeddableInput extends ControlInput { + // Encode value as percentage of time range to support relative time ranges. + timesliceStartAsPercentageOfTimeRange?: number; + timesliceEndAsPercentageOfTimeRange?: number; +} diff --git a/src/plugins/controls/common/types.ts b/src/plugins/controls/common/types.ts index e98a46ff7a1af..8f03b82bfaa93 100644 --- a/src/plugins/controls/common/types.ts +++ b/src/plugins/controls/common/types.ts @@ -23,6 +23,7 @@ export type ControlInput = EmbeddableInput & { query?: Query; filters?: Filter[]; timeRange?: TimeRange; + timeslice?: [number, number]; controlStyle?: ControlStyle; ignoreParentSettings?: ParentIgnoreSettings; }; diff --git a/src/plugins/controls/public/__stories__/storybook_control_factories.ts b/src/plugins/controls/public/__stories__/storybook_control_factories.ts index f281b346dd500..c93a7fa01e2eb 100644 --- a/src/plugins/controls/public/__stories__/storybook_control_factories.ts +++ b/src/plugins/controls/public/__stories__/storybook_control_factories.ts @@ -8,6 +8,7 @@ import { OptionsListEmbeddableFactory } from '../options_list'; import { RangeSliderEmbeddableFactory } from '../range_slider'; +import { TimeSliderEmbeddableFactory } from '../time_slider'; import { ControlsServiceType } from '../services/controls/types'; import { ControlFactory } from '..'; @@ -25,4 +26,9 @@ export const populateStorybookControlFactories = (controlsServiceStub: ControlsS const rangeSliderControlFactory = rangeSliderFactoryStub as unknown as ControlFactory; rangeSliderControlFactory.getDefaultInput = () => ({}); controlsServiceStub.registerControlType(rangeSliderControlFactory); + + const timesliderFactoryStub = new TimeSliderEmbeddableFactory(); + const timeSliderControlFactory = timesliderFactoryStub as unknown as ControlFactory; + timeSliderControlFactory.getDefaultInput = () => ({}); + controlsServiceStub.registerControlType(timeSliderControlFactory); }; diff --git a/src/plugins/controls/public/control_group/component/control_frame_component.tsx b/src/plugins/controls/public/control_group/component/control_frame_component.tsx index 5531b362ae6f5..196b2cfe28be3 100644 --- a/src/plugins/controls/public/control_group/component/control_frame_component.tsx +++ b/src/plugins/controls/public/control_group/component/control_frame_component.tsx @@ -24,6 +24,7 @@ import { pluginServices } from '../../services'; import { EditControlButton } from '../editor/edit_control'; import { ControlGroupStrings } from '../control_group_strings'; import { useChildEmbeddable } from '../../hooks/use_child_embeddable'; +import { TIME_SLIDER_CONTROL } from '../../../common'; export interface ControlFrameProps { customPrepend?: JSX.Element; @@ -87,7 +88,7 @@ export const ControlFrame = ({ 'controlFrameFloatingActions--oneLine': !usingTwoLineLayout, })} > - {!hasFatalError && ( + {!hasFatalError && embeddableType !== TIME_SLIDER_CONTROL && ( @@ -121,6 +122,20 @@ export const ControlFrame = ({ 'controlFrame--fatalError': hasFatalError, }); + function renderEmbeddablePrepend() { + if (typeof embeddable?.renderPrepend === 'function') { + return embeddable.renderPrepend(); + } + + return usingTwoLineLayout ? undefined : ( + + + {title} + + + ); + } + const form = ( {(embeddable && customPrepend) ?? null} - {usingTwoLineLayout ? undefined : ( - - - {title} - - - )} + {renderEmbeddablePrepend()} } > diff --git a/src/plugins/controls/public/control_group/control_group.scss b/src/plugins/controls/public/control_group/control_group.scss index a51de0c4ee196..a8db8cd943f5a 100644 --- a/src/plugins/controls/public/control_group/control_group.scss +++ b/src/plugins/controls/public/control_group/control_group.scss @@ -228,17 +228,7 @@ $controlMinWidth: $euiSize * 14; opacity: 0; } .controlFrame__formControlLayout { - background-color: tintOrShade($euiColorSuccess, 90%, 70%); - color: transparent !important; - box-shadow: none; - - .euiFormLabel { - opacity: 0; - } - - .controlFrame__control { - opacity: 0; - } + opacity: 0; // hide dragged control, while control is dragged its replaced with ControlClone component } } } diff --git a/src/plugins/controls/public/control_group/editor/create_time_slider_control.tsx b/src/plugins/controls/public/control_group/editor/create_time_slider_control.tsx new file mode 100644 index 0000000000000..9137bab8b8068 --- /dev/null +++ b/src/plugins/controls/public/control_group/editor/create_time_slider_control.tsx @@ -0,0 +1,54 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { i18n } from '@kbn/i18n'; +import React from 'react'; +import { EuiContextMenuItem } from '@elastic/eui'; +import type { ControlInput } from '../../types'; +import { TIME_SLIDER_CONTROL } from '../../time_slider/types'; + +interface Props { + addNewEmbeddable: (type: string, input: Omit) => void; + closePopover?: () => void; + hasTimeSliderControl: boolean; +} + +export const CreateTimeSliderControlButton = ({ + addNewEmbeddable, + closePopover, + hasTimeSliderControl, +}: Props) => { + return ( + { + addNewEmbeddable(TIME_SLIDER_CONTROL, { + title: i18n.translate('controls.controlGroup.timeSlider.title', { + defaultMessage: 'Time slider', + }), + }); + if (closePopover) { + closePopover(); + } + }} + data-test-subj="controls-create-timeslider-button" + disabled={hasTimeSliderControl} + toolTipContent={ + hasTimeSliderControl + ? i18n.translate('controls.controlGroup.onlyOneTimeSliderControlMsg', { + defaultMessage: 'Control group already contains time slider control.', + }) + : null + } + > + {i18n.translate('controls.controlGroup.addTimeSliderControlButtonTitle', { + defaultMessage: 'Add time slider control', + })} + + ); +}; diff --git a/src/plugins/controls/public/control_group/embeddable/control_group_chaining_system.ts b/src/plugins/controls/public/control_group/embeddable/control_group_chaining_system.ts index 87ae4e0d9a718..1857bd8a8df07 100644 --- a/src/plugins/controls/public/control_group/embeddable/control_group_chaining_system.ts +++ b/src/plugins/controls/public/control_group/embeddable/control_group_chaining_system.ts @@ -36,7 +36,9 @@ interface ChainingSystem { getContainerSettings: ( initialInput: ControlGroupInput ) => EmbeddableContainerSettings | undefined; - getPrecedingFilters: (props: GetPrecedingFiltersProps) => Filter[] | undefined; + getPrecedingFilters: ( + props: GetPrecedingFiltersProps + ) => { filters: Filter[]; timeslice?: [number, number] } | undefined; onChildChange: (props: OnChildChangedProps) => void; } @@ -84,14 +86,19 @@ export const ControlGroupChainingSystems: { }), getPrecedingFilters: ({ id, childOrder, getChild }) => { let filters: Filter[] = []; + let timeslice; const order = childOrder.IdsToOrder?.[id]; - if (!order || order === 0) return filters; + if (!order || order === 0) return { filters, timeslice }; for (let i = 0; i < order; i++) { const embeddable = getChild(childOrder.idsInOrder[i]); - if (!embeddable || isErrorEmbeddable(embeddable)) return filters; - filters = [...filters, ...(embeddable.getOutput().filters ?? [])]; + if (!embeddable || isErrorEmbeddable(embeddable)) return { filters, timeslice }; + const embeddableOutput = embeddable.getOutput(); + if (embeddableOutput.timeslice) { + timeslice = embeddableOutput.timeslice; + } + filters = [...filters, ...(embeddableOutput.filters ?? [])]; } - return filters; + return { filters, timeslice }; }, onChildChange: ({ childOutputChangedId, childOrder, recalculateFilters$, getChild }) => { if (childOutputChangedId === childOrder.lastChildId) { @@ -100,13 +107,28 @@ export const ControlGroupChainingSystems: { return; } - // when output changes on a child which isn't the last - make the next embeddable updateInputFromParent - const nextOrder = childOrder.IdsToOrder[childOutputChangedId] + 1; - if (nextOrder >= childOrder.idsInOrder.length) return; - setTimeout( - () => getChild(childOrder.idsInOrder[nextOrder])?.refreshInputFromParent(), - 1 // run on next tick - ); + // when output changes on a child which isn't the last + let nextOrder = childOrder.IdsToOrder[childOutputChangedId] + 1; + while (nextOrder < childOrder.idsInOrder.length) { + const nextControl = getChild(childOrder.idsInOrder[nextOrder]); + + // make the next chained embeddable updateInputFromParent + if (nextControl?.isChained?.()) { + setTimeout( + () => nextControl.refreshInputFromParent(), + 1 // run on next tick + ); + return; + } + + // recalculate filters when there are no chained controls to the right of the updated control + if (nextControl.id === childOrder.lastChildId) { + recalculateFilters$.next(null); + return; + } + + nextOrder += 1; + } }, }, NONE: { diff --git a/src/plugins/controls/public/control_group/embeddable/control_group_container.tsx b/src/plugins/controls/public/control_group/embeddable/control_group_container.tsx index 9632402bce6c2..c07715007b46c 100644 --- a/src/plugins/controls/public/control_group/embeddable/control_group_container.tsx +++ b/src/plugins/controls/public/control_group/embeddable/control_group_container.tsx @@ -6,19 +6,11 @@ * Side Public License, v 1. */ -import { - map, - skip, - switchMap, - catchError, - debounceTime, - distinctUntilChanged, -} from 'rxjs/operators'; +import { skip, debounceTime, distinctUntilChanged } from 'rxjs/operators'; import React from 'react'; import ReactDOM from 'react-dom'; -import deepEqual from 'fast-deep-equal'; import { Filter, uniqFilters } from '@kbn/es-query'; -import { EMPTY, merge, pipe, Subject, Subscription } from 'rxjs'; +import { merge, Subject, Subscription } from 'rxjs'; import { EuiContextMenuPanel } from '@elastic/eui'; import { @@ -29,7 +21,6 @@ import { import { OverlayRef } from '@kbn/core/public'; import { KibanaThemeProvider } from '@kbn/kibana-react-plugin/public'; import { Container, EmbeddableFactory } from '@kbn/embeddable-plugin/public'; - import { ControlGroupInput, ControlGroupOutput, @@ -50,6 +41,8 @@ import { ControlGroup } from '../component/control_group_component'; import { controlGroupReducers } from '../state/control_group_reducers'; import { ControlEmbeddable, ControlInput, ControlOutput } from '../../types'; import { CreateControlButton, CreateControlButtonTypes } from '../editor/create_control'; +import { CreateTimeSliderControlButton } from '../editor/create_time_slider_control'; +import { TIME_SLIDER_CONTROL } from '../../time_slider'; let flyoutRef: OverlayRef | undefined; export const setFlyoutRef = (newRef: OverlayRef | undefined) => { @@ -62,11 +55,11 @@ export class ControlGroupContainer extends Container< ControlGroupOutput > { public readonly type = CONTROL_GROUP_TYPE; + public readonly anyControlOutputConsumerLoading$: Subject = new Subject(); private subscriptions: Subscription = new Subscription(); private domNode?: HTMLElement; private recalculateFilters$: Subject; - private relevantDataViewId?: string; private lastUsedDataViewId?: string; @@ -124,6 +117,21 @@ export class ControlGroupContainer extends Container< ); }; + public getCreateTimeSliderControlButton = (closePopover?: () => void) => { + const childIds = this.getChildIds(); + const hasTimeSliderControl = childIds.some((id) => { + const child = this.getChild(id); + return child.type === TIME_SLIDER_CONTROL; + }); + return ( + this.addNewEmbeddable(type, input)} + closePopover={closePopover} + hasTimeSliderControl={hasTimeSliderControl} + /> + ); + }; + private getEditControlGroupButton = (closePopover: () => void) => { const ControlsServicesProvider = pluginServices.getContextProvider(); @@ -152,6 +160,7 @@ export class ControlGroupContainer extends Container< @@ -210,44 +219,19 @@ export class ControlGroupContainer extends Container< }) ); - /** - * Create a pipe that outputs the child's ID, any time any child's output changes. - */ - const anyChildChangePipe = pipe( - map(() => this.getChildIds()), - distinctUntilChanged(deepEqual), - - // children may change, so make sure we subscribe/unsubscribe with switchMap - switchMap((newChildIds: string[]) => - merge( - ...newChildIds.map((childId) => - this.getChild(childId) - .getOutput$() - .pipe( - // Embeddables often throw errors into their output streams. - catchError(() => EMPTY), - map(() => childId) - ) - ) - ) - ) - ); - /** * run OnChildOutputChanged when any child's output has changed */ this.subscriptions.add( - this.getOutput$() - .pipe(anyChildChangePipe) - .subscribe((childOutputChangedId) => { - this.recalculateDataViews(); - ControlGroupChainingSystems[this.getInput().chainingSystem].onChildChange({ - childOutputChangedId, - childOrder: cachedChildEmbeddableOrder(this.getInput().panels), - getChild: (id) => this.getChild(id), - recalculateFilters$: this.recalculateFilters$, - }); - }) + this.getAnyChildOutputChange$().subscribe((childOutputChangedId) => { + this.recalculateDataViews(); + ControlGroupChainingSystems[this.getInput().chainingSystem].onChildChange({ + childOutputChangedId, + childOrder: cachedChildEmbeddableOrder(this.getInput().panels), + getChild: (id) => this.getChild(id), + recalculateFilters$: this.recalculateFilters$, + }); + }) ); /** @@ -264,11 +248,15 @@ export class ControlGroupContainer extends Container< private recalculateFilters = () => { const allFilters: Filter[] = []; + let timeslice; Object.values(this.children).map((child) => { const childOutput = child.getOutput() as ControlOutput; allFilters.push(...(childOutput?.filters ?? [])); + if (childOutput.timeslice) { + timeslice = childOutput.timeslice; + } }); - this.updateOutput({ filters: uniqFilters(allFilters) }); + this.updateOutput({ filters: uniqFilters(allFilters), timeslice }); }; private recalculateDataViews = () => { @@ -295,8 +283,9 @@ export class ControlGroupContainer extends Container< } return { order: nextOrder, - width: this.getInput().defaultControlWidth, - grow: this.getInput().defaultControlGrow, + width: + panelState.type === TIME_SLIDER_CONTROL ? 'large' : this.getInput().defaultControlWidth, + grow: panelState.type === TIME_SLIDER_CONTROL ? true : this.getInput().defaultControlGrow, ...panelState, } as ControlPanelState; } @@ -326,13 +315,14 @@ export class ControlGroupContainer extends Container< }); const allFilters = [ ...(ignoreParentSettings?.ignoreFilters ? [] : filters ?? []), - ...(precedingFilters ?? []), + ...(precedingFilters?.filters ?? []), ]; return { ignoreParentSettings, filters: allFilters, query: ignoreParentSettings?.ignoreQuery ? undefined : query, timeRange: ignoreParentSettings?.ignoreTimerange ? undefined : timeRange, + timeslice: ignoreParentSettings?.ignoreTimerange ? undefined : precedingFilters?.timeslice, id, }; } diff --git a/src/plugins/controls/public/index.ts b/src/plugins/controls/public/index.ts index ecf430f6cc927..f55df5fa0f53a 100644 --- a/src/plugins/controls/public/index.ts +++ b/src/plugins/controls/public/index.ts @@ -24,7 +24,12 @@ export type { ControlInput, } from '../common/types'; -export { CONTROL_GROUP_TYPE, OPTIONS_LIST_CONTROL, RANGE_SLIDER_CONTROL } from '../common'; +export { + CONTROL_GROUP_TYPE, + OPTIONS_LIST_CONTROL, + RANGE_SLIDER_CONTROL, + TIME_SLIDER_CONTROL, +} from '../common'; export { ControlGroupContainer, diff --git a/src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx b/src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx index 1c077c7646dc8..0ccd5d49cabc2 100644 --- a/src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx +++ b/src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx @@ -130,6 +130,7 @@ export class OptionsListEmbeddable extends Embeddable( + timeSliderFactoryDef, + timeSliderFactory + ); + registerControlType(timeSliderFactory); }); return { diff --git a/src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable.tsx b/src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable.tsx index de2fb487efc74..3ae81b267e9ea 100644 --- a/src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable.tsx +++ b/src/plugins/controls/public/range_slider/embeddable/range_slider_embeddable.tsx @@ -130,6 +130,7 @@ export class RangeSliderEmbeddable extends Embeddable ({ getTimezone: () => 'Browser', getDateFormat: () => 'MMM D, YYYY @ HH:mm:ss.SSS', + getDefaultTimeRange: () => ({ from: 'now-15m', to: 'now' }), }); diff --git a/src/plugins/controls/public/services/settings/settings_service.ts b/src/plugins/controls/public/services/settings/settings_service.ts index a57868dfb4ecf..39dab4e66fa35 100644 --- a/src/plugins/controls/public/services/settings/settings_service.ts +++ b/src/plugins/controls/public/services/settings/settings_service.ts @@ -23,5 +23,9 @@ export const settingsServiceFactory: SettingsServiceFactory = ({ coreStart }) => getTimezone: () => { return coreStart.uiSettings.get('dateFormat:tz', 'Browser'); }, + getDefaultTimeRange: () => { + const defaultTimeRange = coreStart.uiSettings.get('timepicker:timeDefaults'); + return defaultTimeRange ? defaultTimeRange : { from: 'now-15m', to: 'now' }; + }, }; }; diff --git a/src/plugins/controls/public/services/settings/types.ts b/src/plugins/controls/public/services/settings/types.ts index 476a99c5bd733..58e9b19e7bf78 100644 --- a/src/plugins/controls/public/services/settings/types.ts +++ b/src/plugins/controls/public/services/settings/types.ts @@ -6,7 +6,10 @@ * Side Public License, v 1. */ +import type { TimeRange } from '@kbn/es-query'; + export interface ControlsSettingsService { getTimezone: () => string; getDateFormat: () => string; + getDefaultTimeRange: () => TimeRange; } diff --git a/src/plugins/controls/public/time_slider/components/index.scss b/src/plugins/controls/public/time_slider/components/index.scss new file mode 100644 index 0000000000000..1fe17385b6958 --- /dev/null +++ b/src/plugins/controls/public/time_slider/components/index.scss @@ -0,0 +1,47 @@ +.timeSlider__anchorOverride { + >div { + height: 100%; + } +} + +.timeSlider__popoverOverride { + width: 100%; + max-inline-size: 100% !important; + max-width: 100%; + height: 100%; +} + +.timeSlider__panelOverride { + min-width: $euiSizeXXL * 15; +} + +.timeSlider__anchor { + text-decoration: none; + width: 100%; + background-color: $euiFormBackgroundColor; + box-shadow: none; + @include euiFormControlSideBorderRadius($euiFormControlBorderRadius, $side: 'right', $internal: true); + overflow: hidden; + height: 100%; + + &:enabled:focus { + background-color: $euiFormBackgroundColor; + } + + .euiText { + background-color: $euiFormBackgroundColor; + } + + .timeSlider__anchorText { + font-weight: $euiFontWeightBold; + } + + .timeSlider__anchorText--default { + color: $euiColorMediumShade; + } + + .timeSlider__anchorText--invalid { + text-decoration: line-through; + color: $euiColorMediumShade; + } +} \ No newline at end of file diff --git a/src/plugins/controls/public/time_slider/components/index.ts b/src/plugins/controls/public/time_slider/components/index.ts new file mode 100644 index 0000000000000..6cd8ab248db95 --- /dev/null +++ b/src/plugins/controls/public/time_slider/components/index.ts @@ -0,0 +1,10 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +export { TimeSlider } from './time_slider'; +export { TimeSliderPrepend } from './time_slider_prepend'; diff --git a/src/plugins/controls/public/time_slider/components/time_slider.tsx b/src/plugins/controls/public/time_slider/components/time_slider.tsx new file mode 100644 index 0000000000000..355e7c5690926 --- /dev/null +++ b/src/plugins/controls/public/time_slider/components/time_slider.tsx @@ -0,0 +1,92 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import React, { FC, useRef } from 'react'; +import { EuiInputPopover, EuiDualRange } from '@elastic/eui'; +import { useReduxEmbeddableContext } from '@kbn/presentation-util-plugin/public'; +import { timeSliderReducers } from '../time_slider_reducers'; +import { TimeSliderReduxState } from '../types'; +import { TimeSliderPopoverButton } from './time_slider_popover_button'; +import { TimeSliderPopoverContent } from './time_slider_popover_content'; +import { FROM_INDEX, TO_INDEX } from '../time_utils'; + +import './index.scss'; + +interface Props { + formatDate: (epoch: number) => string; + onChange: (value?: [number, number]) => void; +} + +export const TimeSlider: FC = (props: Props) => { + const { + useEmbeddableDispatch, + useEmbeddableSelector: select, + actions, + } = useReduxEmbeddableContext(); + const dispatch = useEmbeddableDispatch(); + const ticks = select((state) => { + return state.componentState.ticks; + }); + const timeRangeBounds = select((state) => { + return state.componentState.timeRangeBounds; + }); + const timeRangeMin = timeRangeBounds[FROM_INDEX]; + const timeRangeMax = timeRangeBounds[TO_INDEX]; + const value = select((state) => { + return state.componentState.value; + }); + const isOpen = select((state) => { + return state.componentState.isOpen; + }); + + const rangeRef = useRef(null); + + const onPanelResize = (width?: number) => { + rangeRef.current?.onResize(width); + }; + + const from = value ? value[FROM_INDEX] : timeRangeMin; + const to = value ? value[TO_INDEX] : timeRangeMax; + + return ( + { + dispatch(actions.setIsOpen({ isOpen: !isOpen })); + }} + formatDate={props.formatDate} + from={from} + to={to} + /> + } + isOpen={isOpen} + closePopover={() => dispatch(actions.setIsOpen({ isOpen: false }))} + panelPaddingSize="s" + anchorPosition="downCenter" + disableFocusTrap + attachToAnchor={false} + onPanelResize={onPanelResize} + > + { + props.onChange([timeRangeMin, timeRangeMax]); + }} + ticks={ticks} + timeRangeMin={timeRangeMin} + timeRangeMax={timeRangeMax} + /> + + ); +}; diff --git a/src/plugins/controls/public/time_slider/components/time_slider_popover_button.tsx b/src/plugins/controls/public/time_slider/components/time_slider_popover_button.tsx new file mode 100644 index 0000000000000..a0390cc66d156 --- /dev/null +++ b/src/plugins/controls/public/time_slider/components/time_slider_popover_button.tsx @@ -0,0 +1,29 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import React from 'react'; +import { EuiText } from '@elastic/eui'; + +interface Props { + onClick: () => void; + formatDate: (epoch: number) => string; + from: number; + to: number; +} + +export function TimeSliderPopoverButton(props: Props) { + return ( + + ); +} diff --git a/src/plugins/controls/public/time_slider/components/time_slider_popover_content.tsx b/src/plugins/controls/public/time_slider/components/time_slider_popover_content.tsx new file mode 100644 index 0000000000000..07a63de78d3e6 --- /dev/null +++ b/src/plugins/controls/public/time_slider/components/time_slider_popover_content.tsx @@ -0,0 +1,69 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { i18n } from '@kbn/i18n'; +import React, { Ref } from 'react'; +import { EuiButtonIcon, EuiDualRange, EuiFlexGroup, EuiFlexItem, EuiToolTip } from '@elastic/eui'; +import { EuiRangeTick } from '@elastic/eui/src/components/form/range/range_ticks'; + +interface Props { + value: [number, number]; + onChange: (value?: [number, number]) => void; + onClear: () => void; + ticks: EuiRangeTick[]; + timeRangeMin: number; + timeRangeMax: number; + rangeRef?: Ref; +} + +export function TimeSliderPopoverContent(props: Props) { + function onChange(value?: [number | string, number | string]) { + props.onChange(value as [number, number]); + } + + return ( + + + + + + + + + + + ); +} diff --git a/src/plugins/controls/public/time_slider/components/time_slider_prepend.tsx b/src/plugins/controls/public/time_slider/components/time_slider_prepend.tsx new file mode 100644 index 0000000000000..cff2007b666ba --- /dev/null +++ b/src/plugins/controls/public/time_slider/components/time_slider_prepend.tsx @@ -0,0 +1,117 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import React, { FC, useState } from 'react'; +import { Observable, Subscription } from 'rxjs'; +import { first } from 'rxjs/operators'; +import { i18n } from '@kbn/i18n'; +import { EuiButtonIcon } from '@elastic/eui'; +import { useReduxEmbeddableContext } from '@kbn/presentation-util-plugin/public'; +import { timeSliderReducers } from '../time_slider_reducers'; +import { TimeSliderReduxState } from '../types'; + +interface Props { + onNext: () => void; + onPrevious: () => void; + waitForControlOutputConsumersToLoad$?: Observable; +} + +export const TimeSliderPrepend: FC = (props: Props) => { + const { useEmbeddableDispatch, actions } = useReduxEmbeddableContext< + TimeSliderReduxState, + typeof timeSliderReducers + >(); + const dispatch = useEmbeddableDispatch(); + + const [isPaused, setIsPaused] = useState(true); + const [timeoutId, setTimeoutId] = useState(undefined); + const [subscription, setSubscription] = useState(undefined); + + const playNextFrame = () => { + // advance to next frame + props.onNext(); + + if (props.waitForControlOutputConsumersToLoad$) { + const nextFrameSubscription = props.waitForControlOutputConsumersToLoad$ + .pipe(first()) + .subscribe(() => { + // use timeout to display frame for small time period before moving to next frame + const nextTimeoutId = window.setTimeout(() => { + playNextFrame(); + }, 1750); + setTimeoutId(nextTimeoutId); + }); + setSubscription(nextFrameSubscription); + } + }; + + const onPlay = () => { + dispatch(actions.setIsOpen({ isOpen: true })); + setIsPaused(false); + playNextFrame(); + }; + + const onPause = () => { + dispatch(actions.setIsOpen({ isOpen: true })); + setIsPaused(true); + if (subscription) { + subscription.unsubscribe(); + setSubscription(undefined); + } + if (timeoutId) { + clearTimeout(timeoutId); + setTimeoutId(undefined); + } + }; + + return ( +
+ { + onPause(); + props.onPrevious(); + }} + iconType="framePrevious" + color="text" + aria-label={i18n.translate('controls.timeSlider.previousLabel', { + defaultMessage: 'Previous time window', + })} + data-test-subj="timeSlider-previousTimeWindow" + /> + {props.waitForControlOutputConsumersToLoad$ === undefined ? null : ( + + )} + { + onPause(); + props.onNext(); + }} + iconType="frameNext" + color="text" + aria-label={i18n.translate('controls.timeSlider.nextLabel', { + defaultMessage: 'Next time window', + })} + data-test-subj="timeSlider-nextTimeWindow" + /> +
+ ); +}; diff --git a/src/plugins/controls/public/time_slider/embeddable/time_slider_embeddable.tsx b/src/plugins/controls/public/time_slider/embeddable/time_slider_embeddable.tsx new file mode 100644 index 0000000000000..8122bbfda7813 --- /dev/null +++ b/src/plugins/controls/public/time_slider/embeddable/time_slider_embeddable.tsx @@ -0,0 +1,303 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import _ from 'lodash'; +import { debounceTime, first, map } from 'rxjs/operators'; +import moment from 'moment-timezone'; +import { Embeddable, IContainer } from '@kbn/embeddable-plugin/public'; +import { ReduxEmbeddableTools, ReduxEmbeddablePackage } from '@kbn/presentation-util-plugin/public'; +import type { TimeRange } from '@kbn/es-query'; +import React from 'react'; +import ReactDOM from 'react-dom'; +import { Subscription } from 'rxjs'; +import { TIME_SLIDER_CONTROL } from '../..'; +import { TimeSliderControlEmbeddableInput } from '../../../common/time_slider/types'; +import { pluginServices } from '../../services'; +import { ControlsSettingsService } from '../../services/settings/types'; +import { ControlsDataService } from '../../services/data/types'; +import { ControlOutput } from '../../types'; +import { ControlGroupContainer } from '../../control_group/embeddable/control_group_container'; +import { TimeSlider, TimeSliderPrepend } from '../components'; +import { timeSliderReducers } from '../time_slider_reducers'; +import { TimeSliderReduxState } from '../types'; +import { getMomentTimezone, getTicks, FROM_INDEX, TO_INDEX } from '../time_utils'; + +export class TimeSliderControlEmbeddable extends Embeddable< + TimeSliderControlEmbeddableInput, + ControlOutput +> { + public readonly type = TIME_SLIDER_CONTROL; + public deferEmbeddedLoad = true; + + private inputSubscription: Subscription; + private node?: HTMLElement; + + private getDateFormat: ControlsSettingsService['getDateFormat']; + private getTimezone: ControlsSettingsService['getTimezone']; + private timefilter: ControlsDataService['timefilter']; + private readonly waitForControlOutputConsumersToLoad$; + + private reduxEmbeddableTools: ReduxEmbeddableTools< + TimeSliderReduxState, + typeof timeSliderReducers + >; + + constructor( + reduxEmbeddablePackage: ReduxEmbeddablePackage, + input: TimeSliderControlEmbeddableInput, + output: ControlOutput, + parent?: IContainer + ) { + super(input, output, parent); + + const { + data: { timefilter }, + settings: { getDateFormat, getDefaultTimeRange, getTimezone }, + } = pluginServices.getServices(); + + this.getDateFormat = getDateFormat; + this.getTimezone = getTimezone; + this.timefilter = timefilter; + + const timeRangeBounds = this.timeRangeToBounds( + input.timeRange ? input.timeRange : getDefaultTimeRange() + ); + this.reduxEmbeddableTools = reduxEmbeddablePackage.createTools< + TimeSliderReduxState, + typeof timeSliderReducers + >({ + embeddable: this, + reducers: timeSliderReducers, + initialComponentState: { + isOpen: false, + ticks: getTicks(timeRangeBounds[FROM_INDEX], timeRangeBounds[TO_INDEX], this.getTimezone()), + timeRangeBounds, + }, + }); + + this.inputSubscription = this.getInput$().subscribe(() => this.onInputChange()); + + this.waitForControlOutputConsumersToLoad$ = + parent && 'anyControlOutputConsumerLoading$' in (parent as ControlGroupContainer) + ? (parent as ControlGroupContainer).anyControlOutputConsumerLoading$.pipe( + debounceTime(300), + first((isAnyControlOutputConsumerLoading: boolean) => { + return !isAnyControlOutputConsumerLoading; + }), + map(() => { + // Observable notifies subscriber when loading is finished + // Return void to not expose internal implemenation details of observabale + return; + }) + ) + : undefined; + + this.syncWithTimeRange(); + } + + public destroy = () => { + super.destroy(); + this.reduxEmbeddableTools.cleanup(); + if (this.inputSubscription) { + this.inputSubscription.unsubscribe(); + } + }; + + private onInputChange() { + const input = this.getInput(); + + if (!input.timeRange) { + return; + } + + const nextBounds = this.timeRangeToBounds(input.timeRange); + const { actions, dispatch, getState } = this.reduxEmbeddableTools; + if (!_.isEqual(nextBounds, getState().componentState.timeRangeBounds)) { + dispatch( + actions.setTimeRangeBounds({ + ticks: getTicks(nextBounds[FROM_INDEX], nextBounds[TO_INDEX], this.getTimezone()), + timeRangeBounds: nextBounds, + }) + ); + this.syncWithTimeRange(); + } + } + + private syncWithTimeRange() { + const { actions, dispatch, getState } = this.reduxEmbeddableTools; + const timesliceStartAsPercentageOfTimeRange = + getState().explicitInput.timesliceStartAsPercentageOfTimeRange; + const timesliceEndAsPercentageOfTimeRange = + getState().explicitInput.timesliceEndAsPercentageOfTimeRange; + if ( + timesliceStartAsPercentageOfTimeRange !== undefined && + timesliceEndAsPercentageOfTimeRange !== undefined + ) { + const timeRangeBounds = getState().componentState.timeRangeBounds; + const timeRange = timeRangeBounds[TO_INDEX] - timeRangeBounds[FROM_INDEX]; + const value = [ + timeRangeBounds[FROM_INDEX] + timesliceStartAsPercentageOfTimeRange * timeRange, + timeRangeBounds[FROM_INDEX] + timesliceEndAsPercentageOfTimeRange * timeRange, + ] as [number, number]; + dispatch(actions.publishValue({ value })); + dispatch(actions.setValue({ value })); + this.onRangeChange(value[TO_INDEX] - value[FROM_INDEX]); + } + } + + private timeRangeToBounds(timeRange: TimeRange): [number, number] { + const timeRangeBounds = this.timefilter.calculateBounds(timeRange); + return timeRangeBounds.min === undefined || timeRangeBounds.max === undefined + ? [Date.now() - 1000 * 60 * 15, Date.now()] + : [timeRangeBounds.min.valueOf(), timeRangeBounds.max.valueOf()]; + } + + public reload() { + return; + } + + private debouncedPublishChange = _.debounce((value?: [number, number]) => { + const { actions, dispatch } = this.reduxEmbeddableTools; + dispatch(actions.publishValue({ value })); + }, 500); + + private onTimesliceChange = (value?: [number, number]) => { + const { actions, dispatch, getState } = this.reduxEmbeddableTools; + let timesliceStartAsPercentageOfTimeRange: number | undefined; + let timesliceEndAsPercentageOfTimeRange: number | undefined; + if (value) { + const timeRangeBounds = getState().componentState.timeRangeBounds; + const timeRange = timeRangeBounds[TO_INDEX] - timeRangeBounds[FROM_INDEX]; + timesliceStartAsPercentageOfTimeRange = + (value[FROM_INDEX] - timeRangeBounds[FROM_INDEX]) / timeRange; + timesliceEndAsPercentageOfTimeRange = + (value[TO_INDEX] - timeRangeBounds[FROM_INDEX]) / timeRange; + } + dispatch( + actions.setValueAsPercentageOfTimeRange({ + timesliceStartAsPercentageOfTimeRange, + timesliceEndAsPercentageOfTimeRange, + }) + ); + dispatch(actions.setValue({ value })); + this.debouncedPublishChange(value); + }; + + private onRangeChange = (range?: number) => { + const { actions, dispatch, getState } = this.reduxEmbeddableTools; + const timeRangeBounds = getState().componentState.timeRangeBounds; + const timeRange = timeRangeBounds[TO_INDEX] - timeRangeBounds[FROM_INDEX]; + dispatch( + actions.setRange({ + range: range !== undefined && range < timeRange ? range : undefined, + }) + ); + }; + + private onNext = () => { + const { getState } = this.reduxEmbeddableTools; + const value = getState().componentState.value; + const range = getState().componentState.range; + const ticks = getState().componentState.ticks; + const tickRange = ticks[1].value - ticks[0].value; + const timeRangeBounds = getState().componentState.timeRangeBounds; + + if (value === undefined || value[TO_INDEX] >= timeRangeBounds[TO_INDEX]) { + const from = timeRangeBounds[FROM_INDEX]; + if (range === undefined || range === tickRange) { + const firstTickValue = ticks[0].value; + const secondTickValue = ticks[1].value; + const to = firstTickValue === from ? secondTickValue : firstTickValue; + this.onTimesliceChange([from, to]); + this.onRangeChange(tickRange); + } else { + const to = from + range; + this.onTimesliceChange([from, Math.min(to, timeRangeBounds[TO_INDEX])]); + } + return; + } + + const from = value[TO_INDEX]; + const safeRange = range === undefined ? tickRange : range; + const to = from + safeRange; + this.onTimesliceChange([from, Math.min(to, timeRangeBounds[TO_INDEX])]); + }; + + private onPrevious = () => { + const { getState } = this.reduxEmbeddableTools; + const value = getState().componentState.value; + const range = getState().componentState.range; + const ticks = getState().componentState.ticks; + const tickRange = ticks[1].value - ticks[0].value; + const timeRangeBounds = getState().componentState.timeRangeBounds; + + if (value === undefined || value[FROM_INDEX] <= timeRangeBounds[FROM_INDEX]) { + const to = timeRangeBounds[TO_INDEX]; + if (range === undefined || range === tickRange) { + const lastTickValue = ticks[ticks.length - 1].value; + const secondToLastTickValue = ticks[ticks.length - 2].value; + const from = lastTickValue === to ? secondToLastTickValue : lastTickValue; + this.onTimesliceChange([from, to]); + this.onRangeChange(tickRange); + } else { + const from = to - range; + this.onTimesliceChange([Math.max(from, timeRangeBounds[FROM_INDEX]), to]); + } + return; + } + + const to = value[FROM_INDEX]; + const safeRange = range === undefined ? tickRange : range; + const from = to - safeRange; + this.onTimesliceChange([Math.max(from, timeRangeBounds[FROM_INDEX]), to]); + }; + + private epochToKbnDateFormat = (epoch: number) => { + return moment.tz(epoch, getMomentTimezone(this.getTimezone())).format(this.getDateFormat()); + }; + + public render = (node: HTMLElement) => { + if (this.node) { + ReactDOM.unmountComponentAtNode(this.node); + } + this.node = node; + + const { Wrapper: TimeSliderControlReduxWrapper } = this.reduxEmbeddableTools; + + ReactDOM.render( + + { + this.onTimesliceChange(value); + const range = value ? value[TO_INDEX] - value[FROM_INDEX] : undefined; + this.onRangeChange(range); + }} + /> + , + node + ); + }; + + public renderPrepend() { + const { Wrapper: TimeSliderControlReduxWrapper } = this.reduxEmbeddableTools; + return ( + + + + ); + } + + public isChained() { + return false; + } +} diff --git a/src/plugins/controls/public/time_slider/embeddable/time_slider_embeddable_factory.tsx b/src/plugins/controls/public/time_slider/embeddable/time_slider_embeddable_factory.tsx new file mode 100644 index 0000000000000..b062bcc4370fe --- /dev/null +++ b/src/plugins/controls/public/time_slider/embeddable/time_slider_embeddable_factory.tsx @@ -0,0 +1,51 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { i18n } from '@kbn/i18n'; +import { EmbeddableFactoryDefinition, IContainer } from '@kbn/embeddable-plugin/public'; +import { lazyLoadReduxEmbeddablePackage } from '@kbn/presentation-util-plugin/public'; +import { + createTimeSliderExtract, + createTimeSliderInject, +} from '../../../common/time_slider/time_slider_persistable_state'; +import { TIME_SLIDER_CONTROL } from '../..'; +import { ControlInput, IEditableControlFactory } from '../../types'; + +export class TimeSliderEmbeddableFactory + implements EmbeddableFactoryDefinition, IEditableControlFactory +{ + public type = TIME_SLIDER_CONTROL; + + constructor() {} + + public async create(initialInput: any, parent?: IContainer) { + const reduxEmbeddablePackage = await lazyLoadReduxEmbeddablePackage(); + const { TimeSliderControlEmbeddable } = await import('./time_slider_embeddable'); + + return Promise.resolve( + new TimeSliderControlEmbeddable(reduxEmbeddablePackage, initialInput, {}, parent) + ); + } + + public isFieldCompatible = () => false; + + public isEditable = () => Promise.resolve(false); + + public getDisplayName = () => + i18n.translate('controls.timeSlider.displayName', { + defaultMessage: 'Time slider', + }); + public getIconType = () => 'clock'; + public getDescription = () => + i18n.translate('controls.timeSlider.description', { + defaultMessage: 'Add a slider for selecting a time range', + }); + + public inject = createTimeSliderInject(); + public extract = createTimeSliderExtract(); +} diff --git a/src/plugins/controls/public/time_slider/index.ts b/src/plugins/controls/public/time_slider/index.ts new file mode 100644 index 0000000000000..320373ccfecc6 --- /dev/null +++ b/src/plugins/controls/public/time_slider/index.ts @@ -0,0 +1,11 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +export { TimeSliderEmbeddableFactory } from './embeddable/time_slider_embeddable_factory'; +export type { TimeSliderControlEmbeddableInput } from '../../common/time_slider/types'; +export { TIME_SLIDER_CONTROL } from '../../common/time_slider/types'; diff --git a/src/plugins/controls/public/time_slider/time_slider_reducers.ts b/src/plugins/controls/public/time_slider/time_slider_reducers.ts new file mode 100644 index 0000000000000..26ce9be2d45a2 --- /dev/null +++ b/src/plugins/controls/public/time_slider/time_slider_reducers.ts @@ -0,0 +1,60 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { PayloadAction } from '@reduxjs/toolkit'; +import { WritableDraft } from 'immer/dist/types/types-external'; +import { EuiRangeTick } from '@elastic/eui/src/components/form/range/range_ticks'; +import { TimeSliderReduxState } from './types'; + +export const timeSliderReducers = { + publishValue: ( + state: WritableDraft, + action: PayloadAction<{ value?: [number, number] }> + ) => { + state.output.timeslice = action.payload.value; + }, + setTimeRangeBounds: ( + state: WritableDraft, + action: PayloadAction<{ timeRangeBounds: [number, number]; ticks: EuiRangeTick[] }> + ) => { + state.componentState.ticks = action.payload.ticks; + state.componentState.timeRangeBounds = action.payload.timeRangeBounds; + }, + setValueAsPercentageOfTimeRange: ( + state: WritableDraft, + action: PayloadAction<{ + timesliceStartAsPercentageOfTimeRange?: number; + timesliceEndAsPercentageOfTimeRange?: number; + }> + ) => { + state.explicitInput.timesliceStartAsPercentageOfTimeRange = + action.payload.timesliceStartAsPercentageOfTimeRange; + state.explicitInput.timesliceEndAsPercentageOfTimeRange = + action.payload.timesliceEndAsPercentageOfTimeRange; + }, + setValue: ( + state: WritableDraft, + action: PayloadAction<{ + value?: [number, number]; + }> + ) => { + state.componentState.value = action.payload.value; + }, + setRange: ( + state: WritableDraft, + action: PayloadAction<{ range?: number }> + ) => { + state.componentState.range = action.payload.range; + }, + setIsOpen: ( + state: WritableDraft, + action: PayloadAction<{ isOpen: boolean }> + ) => { + state.componentState.isOpen = action.payload.isOpen; + }, +}; diff --git a/src/plugins/controls/public/time_slider/time_utils.ts b/src/plugins/controls/public/time_slider/time_utils.ts new file mode 100644 index 0000000000000..a79a3e60f323c --- /dev/null +++ b/src/plugins/controls/public/time_slider/time_utils.ts @@ -0,0 +1,79 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import moment from 'moment-timezone'; +import { EuiRangeTick } from '@elastic/eui/src/components/form/range/range_ticks'; +import { calcAutoIntervalNear } from '@kbn/data-plugin/common'; + +export const FROM_INDEX = 0; +export const TO_INDEX = 1; + +export function getMomentTimezone(dateFormatTZ: string) { + const detectedTimezone = moment.tz.guess(); + return dateFormatTZ === undefined || dateFormatTZ === 'Browser' ? detectedTimezone : dateFormatTZ; +} + +function getScaledDateFormat(interval: number): string { + if (interval >= moment.duration(1, 'y').asMilliseconds()) { + return 'YYYY'; + } + + if (interval >= moment.duration(1, 'd').asMilliseconds()) { + return 'MMM D'; + } + + if (interval >= moment.duration(6, 'h').asMilliseconds()) { + return 'Do HH'; + } + + if (interval >= moment.duration(1, 'h').asMilliseconds()) { + return 'HH:mm'; + } + + if (interval >= moment.duration(1, 'm').asMilliseconds()) { + return 'HH:mm'; + } + + if (interval >= moment.duration(1, 's').asMilliseconds()) { + return 'mm:ss'; + } + + return 'ss.SSS'; +} + +export function getInterval(min: number, max: number, steps = 6): number { + const duration = max - min; + let interval = calcAutoIntervalNear(steps, duration).asMilliseconds(); + // Sometimes auto interval is not quite right and returns 2X or 3X requested ticks + // Adjust the interval to get closer to the requested number of ticks + const actualSteps = duration / interval; + if (actualSteps > steps * 1.5) { + const factor = Math.round(actualSteps / steps); + interval *= factor; + } else if (actualSteps < 5) { + interval *= 0.5; + } + return interval; +} + +export function getTicks(min: number, max: number, timezone: string): EuiRangeTick[] { + const interval = getInterval(min, max); + const format = getScaledDateFormat(interval); + + let tick = Math.ceil(min / interval) * interval; + const ticks: EuiRangeTick[] = []; + while (tick < max) { + ticks.push({ + value: tick, + label: moment.tz(tick, getMomentTimezone(timezone)).format(format), + }); + tick += interval; + } + + return ticks; +} diff --git a/src/plugins/controls/public/time_slider/types.ts b/src/plugins/controls/public/time_slider/types.ts new file mode 100644 index 0000000000000..582e5f0460498 --- /dev/null +++ b/src/plugins/controls/public/time_slider/types.ts @@ -0,0 +1,31 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { ReduxEmbeddableState } from '@kbn/presentation-util-plugin/public'; +import { EuiRangeTick } from '@elastic/eui/src/components/form/range/range_ticks'; + +import { ControlOutput } from '../types'; +import { TimeSliderControlEmbeddableInput } from '../../common/time_slider/types'; + +export * from '../../common/time_slider/types'; + +// Component state is only used by public components. +export interface TimeSliderSubjectState { + range?: number; + isOpen: boolean; + ticks: EuiRangeTick[]; + timeRangeBounds: [number, number]; + value?: [number, number]; +} + +// public only - redux embeddable state type +export type TimeSliderReduxState = ReduxEmbeddableState< + TimeSliderControlEmbeddableInput, + ControlOutput, + TimeSliderSubjectState +>; diff --git a/src/plugins/controls/public/types.ts b/src/plugins/controls/public/types.ts index 8e9ee325e74aa..262d6632f45de 100644 --- a/src/plugins/controls/public/types.ts +++ b/src/plugins/controls/public/types.ts @@ -6,8 +6,8 @@ * Side Public License, v 1. */ +import { ReactNode } from 'react'; import { Filter } from '@kbn/es-query'; - import { EmbeddableFactory, EmbeddableOutput, @@ -24,6 +24,7 @@ import { ControlsServiceType } from './services/controls/types'; export interface CommonControlOutput { filters?: Filter[]; dataViewId?: string; + timeslice?: [number, number]; } export type ControlOutput = EmbeddableOutput & CommonControlOutput; @@ -37,7 +38,10 @@ export type ControlFactory = EmbeddableFa export type ControlEmbeddable< TControlEmbeddableInput extends ControlInput = ControlInput, TControlEmbeddableOutput extends ControlOutput = ControlOutput -> = IEmbeddable; +> = IEmbeddable & { + isChained?: () => boolean; + renderPrepend?: () => ReactNode | undefined; +}; /** * Control embeddable editor types diff --git a/src/plugins/controls/server/plugin.ts b/src/plugins/controls/server/plugin.ts index 019430166ff6f..6d3838804e14a 100644 --- a/src/plugins/controls/server/plugin.ts +++ b/src/plugins/controls/server/plugin.ts @@ -14,6 +14,7 @@ import { setupOptionsListSuggestionsRoute } from './options_list/options_list_su import { controlGroupContainerPersistableStateServiceFactory } from './control_group/control_group_container_factory'; import { optionsListPersistableStateServiceFactory } from './options_list/options_list_embeddable_factory'; import { rangeSliderPersistableStateServiceFactory } from './range_slider/range_slider_embeddable_factory'; +import { timeSliderPersistableStateServiceFactory } from './time_slider/time_slider_embeddable_factory'; interface SetupDeps { embeddable: EmbeddableSetup; @@ -28,6 +29,7 @@ export class ControlsPlugin implements Plugin { ); embeddable.registerEmbeddableFactory(optionsListPersistableStateServiceFactory()); embeddable.registerEmbeddableFactory(rangeSliderPersistableStateServiceFactory()); + embeddable.registerEmbeddableFactory(timeSliderPersistableStateServiceFactory()); setupOptionsListSuggestionsRoute(core, unifiedSearch.autocomplete.getAutocompleteSettings); return {}; diff --git a/src/plugins/controls/server/time_slider/time_slider_embeddable_factory.ts b/src/plugins/controls/server/time_slider/time_slider_embeddable_factory.ts new file mode 100644 index 0000000000000..0d85ba4221207 --- /dev/null +++ b/src/plugins/controls/server/time_slider/time_slider_embeddable_factory.ts @@ -0,0 +1,22 @@ +/* + * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one + * or more contributor license agreements. Licensed under the Elastic License + * 2.0 and the Server Side Public License, v 1; you may not use this file except + * in compliance with, at your election, the Elastic License 2.0 or the Server + * Side Public License, v 1. + */ + +import { EmbeddableRegistryDefinition } from '@kbn/embeddable-plugin/server'; +import { TIME_SLIDER_CONTROL } from '../../common'; +import { + createTimeSliderExtract, + createTimeSliderInject, +} from '../../common/time_slider/time_slider_persistable_state'; + +export const timeSliderPersistableStateServiceFactory = (): EmbeddableRegistryDefinition => { + return { + id: TIME_SLIDER_CONTROL, + extract: createTimeSliderExtract(), + inject: createTimeSliderInject(), + }; +}; diff --git a/src/plugins/dashboard/public/application/dashboard_app_no_data.tsx b/src/plugins/dashboard/public/application/dashboard_app_no_data.tsx index 72ffa3f9fdb7f..7cd43e635b495 100644 --- a/src/plugins/dashboard/public/application/dashboard_app_no_data.tsx +++ b/src/plugins/dashboard/public/application/dashboard_app_no_data.tsx @@ -33,7 +33,7 @@ export const DashboardAppNoDataPage = ({ }; return ( - ; + ); }; diff --git a/src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx b/src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx index 2bb7bbb51b376..cd95877c0aba6 100644 --- a/src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx +++ b/src/plugins/dashboard/public/application/embeddable/dashboard_container.tsx @@ -9,6 +9,7 @@ import React from 'react'; import ReactDOM from 'react-dom'; import { I18nProvider } from '@kbn/i18n-react'; +import { Subscription } from 'rxjs'; import uuid from 'uuid'; import { CoreStart, IUiSettingsClient, KibanaExecutionContext } from '@kbn/core/public'; import { Start as InspectorStartContract } from '@kbn/inspector-plugin/public'; @@ -85,6 +86,7 @@ export interface InheritedChildInput extends IndexSignature { filters: Filter[]; query: Query; timeRange: TimeRange; + timeslice?: [number, number]; refreshConfig?: RefreshInterval; viewMode: ViewMode; hidePanelTitles?: boolean; @@ -113,6 +115,8 @@ export class DashboardContainer extends Container void; + private subscriptions: Subscription = new Subscription(); + public controlGroup?: ControlGroupContainer; private domNode?: HTMLElement; @@ -182,6 +186,23 @@ export class DashboardContainer extends Container { + if (!this.controlGroup) { + return; + } + + for (const child of Object.values(this.children)) { + const isLoading = child.getOutput().loading; + if (isLoading) { + this.controlGroup.anyControlOutputConsumerLoading$.next(true); + return; + } + } + this.controlGroup.anyControlOutputConsumerLoading$.next(false); + }) + ); } private onDataLoaded(data: DashboardLoadedInfo) { @@ -345,6 +366,7 @@ export class DashboardContainer extends Container
+ _.isEqual(timesliceA, timesliceB) + ) + ) + .subscribe(({ timeslice }) => { + dashboardContainer.updateInput({ timeslice }); + }) + ); + return { onDestroyControlGroup: () => { subscriptions.unsubscribe(); diff --git a/src/plugins/dashboard/public/application/lib/diff_dashboard_state.ts b/src/plugins/dashboard/public/application/lib/diff_dashboard_state.ts index ec42e18bad858..5fbc1cf2e28b3 100644 --- a/src/plugins/dashboard/public/application/lib/diff_dashboard_state.ts +++ b/src/plugins/dashboard/public/application/lib/diff_dashboard_state.ts @@ -15,7 +15,14 @@ import { DashboardContainerInput } from '../..'; import { DashboardOptions, DashboardPanelMap, DashboardState } from '../../types'; import { IEmbeddable } from '../../services/embeddable'; -const stateKeystoIgnore = ['expandedPanelId', 'fullScreenMode', 'savedQuery', 'viewMode', 'tags']; +const stateKeystoIgnore = [ + 'expandedPanelId', + 'fullScreenMode', + 'savedQuery', + 'viewMode', + 'tags', + 'timeslice', +]; type DashboardStateToCompare = Omit; const inputKeystoIgnore = ['searchSessionId', 'lastReloadRequestTime', 'executionContext'] as const; diff --git a/src/plugins/dashboard/public/application/lib/sync_dashboard_container_input.ts b/src/plugins/dashboard/public/application/lib/sync_dashboard_container_input.ts index 02f939ef69eea..74a2ba9525d38 100644 --- a/src/plugins/dashboard/public/application/lib/sync_dashboard_container_input.ts +++ b/src/plugins/dashboard/public/application/lib/sync_dashboard_container_input.ts @@ -22,6 +22,7 @@ import { setPanels, setQuery, setTimeRange, + setTimeslice, } from '../state'; import { diffDashboardContainerInput } from './diff_dashboard_state'; import { DashboardBuildContext, DashboardContainerInput } from '../../types'; @@ -129,6 +130,10 @@ export const applyContainerChangesToState = ({ dispatchDashboardStateChange(setControlGroupState(input.controlGroupInput)); } dispatchDashboardStateChange(setFullScreenMode(input.isFullScreenMode)); + + if (!_.isEqual(input.timeslice, latestState.timeslice)) { + dispatchDashboardStateChange(setTimeslice(input.timeslice)); + } }; export const applyStateChangesToContainer = ({ diff --git a/src/plugins/dashboard/public/application/state/dashboard_state_slice.ts b/src/plugins/dashboard/public/application/state/dashboard_state_slice.ts index 50ba66d1b781f..07ae72acada70 100644 --- a/src/plugins/dashboard/public/application/state/dashboard_state_slice.ts +++ b/src/plugins/dashboard/public/application/state/dashboard_state_slice.ts @@ -100,6 +100,9 @@ export const dashboardStateSlice = createSlice({ setQuery: (state, action: PayloadAction) => { state.query = action.payload; }, + setTimeslice: (state, action: PayloadAction<[number, number] | undefined>) => { + state.timeslice = action.payload; + }, }, }); @@ -124,5 +127,6 @@ export const { setPanels, setTitle, setQuery, + setTimeslice, setTags, } = dashboardStateSlice.actions; diff --git a/src/plugins/dashboard/public/types.ts b/src/plugins/dashboard/public/types.ts index 8fceca0b27564..f0e9485d20e09 100644 --- a/src/plugins/dashboard/public/types.ts +++ b/src/plugins/dashboard/public/types.ts @@ -71,6 +71,7 @@ export interface DashboardState { options: DashboardOptions; panels: DashboardPanelMap; timeRange?: TimeRange; + timeslice?: [number, number]; controlGroupInput?: PersistableControlGroupInput; } @@ -88,6 +89,7 @@ export interface DashboardContainerInput extends ContainerInput { isFullScreenMode: boolean; expandedPanelId?: string; timeRange: TimeRange; + timeslice?: [number, number]; timeRestore: boolean; description?: string; useMargins: boolean; diff --git a/src/plugins/data/common/search/aggs/buckets/terms.test.ts b/src/plugins/data/common/search/aggs/buckets/terms.test.ts index 3dd49b566ab5c..102fdfcfa6147 100644 --- a/src/plugins/data/common/search/aggs/buckets/terms.test.ts +++ b/src/plugins/data/common/search/aggs/buckets/terms.test.ts @@ -364,6 +364,32 @@ describe('Terms Agg', () => { expect(params.order).toEqual({ 'test-orderAgg.50': 'desc' }); }); + // 25 is the default shard size set for size:10 by Elasticsearch. + // Setting it to 25 for every size below 10 makes sure the shard size doesn't change for sizes 1-10, keeping the top terms stable. + test('set shard_size to 25 if size is smaller or equal than 10', () => { + const aggConfigs = getAggConfigs({ + field: 'string_field', + orderAgg: { + type: 'count', + }, + size: 5, + }); + const { [BUCKET_TYPES.TERMS]: params } = aggConfigs.aggs[0].toDsl(); + expect(params.shard_size).toEqual(25); + }); + + test('do not set shard_size if size is bigger than 10', () => { + const aggConfigs = getAggConfigs({ + field: 'string_field', + orderAgg: { + type: 'count', + }, + size: 15, + }); + const { [BUCKET_TYPES.TERMS]: params } = aggConfigs.aggs[0].toDsl(); + expect(params.shard_size).toBeUndefined(); + }); + test('optionally supports shard_size', () => { const aggConfigs = getAggConfigs({ field: 'string_field', diff --git a/src/plugins/data/common/search/aggs/buckets/terms.ts b/src/plugins/data/common/search/aggs/buckets/terms.ts index dcd2ec6143b03..fdee9dfdb042f 100644 --- a/src/plugins/data/common/search/aggs/buckets/terms.ts +++ b/src/plugins/data/common/search/aggs/buckets/terms.ts @@ -121,7 +121,13 @@ export const getTermsBucketAgg = () => { name: 'shardSize', write: (aggConfig, output) => { - output.params.shard_size = aggConfig.params.shardSize; + if (aggConfig.params.shardSize) { + output.params.shard_size = aggConfig.params.shardSize; + } else if (aggConfig.params.size <= 10) { + // 25 is the default shard size set for size:10 by Elasticsearch. + // Setting it to 25 for every size below 10 makes sure the shard size doesn't change for sizes 1-10, keeping the top terms stable. + output.params.shard_size = 25; + } }, }, { diff --git a/src/plugins/data/common/search/expressions/essql.ts b/src/plugins/data/common/search/expressions/essql.ts index 6349b76d8d687..a5db4674a7d14 100644 --- a/src/plugins/data/common/search/expressions/essql.ts +++ b/src/plugins/data/common/search/expressions/essql.ts @@ -10,7 +10,7 @@ import type { KibanaRequest } from '@kbn/core/server'; import { buildEsQuery } from '@kbn/es-query'; import { castEsToKbnFieldTypeName, ES_FIELD_TYPES, KBN_FIELD_TYPES } from '@kbn/field-types'; import { i18n } from '@kbn/i18n'; -import { +import type { Datatable, DatatableColumnType, ExpressionFunctionDefinition, diff --git a/src/plugins/data/common/search/search_source/search_source.test.ts b/src/plugins/data/common/search/search_source/search_source.test.ts index 7dcc3fd0dff25..b5cabc654a3f7 100644 --- a/src/plugins/data/common/search/search_source/search_source.test.ts +++ b/src/plugins/data/common/search/search_source/search_source.test.ts @@ -93,7 +93,7 @@ describe('SearchSource', () => { aggs: aggsMock, getConfig: getConfigMock, search: mockSearchMethod, - onResponse: (_, res) => res, + onResponse: jest.fn().mockImplementation((_, res) => res), }; searchSource = new SearchSource({}, searchSourceDependencies); @@ -1014,6 +1014,7 @@ describe('SearchSource', () => { expect(next).toBeCalledTimes(2); expect(complete).toBeCalledTimes(1); + expect(searchSourceDependencies.onResponse).toBeCalledTimes(1); expect(next.mock.calls[0]).toMatchObject([ { isPartial: true, isRunning: true, rawResponse: { test: 1 } }, ]); @@ -1202,6 +1203,7 @@ describe('SearchSource', () => { expect(fetchSub.next).toHaveBeenCalledTimes(2); expect(fetchSub.complete).toHaveBeenCalledTimes(1); expect(fetchSub.error).toHaveBeenCalledTimes(0); + expect(searchSourceDependencies.onResponse).toBeCalledTimes(1); expect(typesRegistry.get('avg').postFlightRequest).toHaveBeenCalledTimes(0); }); @@ -1272,6 +1274,7 @@ describe('SearchSource', () => { const resp = await lastValueFrom(fetch$); + expect(searchSourceDependencies.onResponse).toBeCalledTimes(1); expect(fetchSub.next).toHaveBeenCalledTimes(3); expect(fetchSub.complete).toHaveBeenCalledTimes(1); expect(fetchSub.error).toHaveBeenCalledTimes(0); diff --git a/src/plugins/data/common/search/search_source/search_source.ts b/src/plugins/data/common/search/search_source/search_source.ts index 5f4ce4be637a8..d6ec49360e95b 100644 --- a/src/plugins/data/common/search/search_source/search_source.ts +++ b/src/plugins/data/common/search/search_source/search_source.ts @@ -103,6 +103,7 @@ import { IKibanaSearchResponse, isErrorResponse, isPartialResponse, + isCompleteResponse, UI_SETTINGS, } from '../..'; import { AggsStart } from '../aggs'; @@ -571,7 +572,12 @@ export class SearchSource { } }); }), - map((response) => onResponse(searchRequest, response, options)) + map((response) => { + if (!isCompleteResponse(response)) { + return response; + } + return onResponse(searchRequest, response, options); + }) ); } diff --git a/src/plugins/data_view_management/public/components/empty_index_list_prompt/__snapshots__/empty_index_list_prompt.test.tsx.snap b/src/plugins/data_view_management/public/components/empty_index_list_prompt/__snapshots__/empty_index_list_prompt.test.tsx.snap index 4867cd5b65f25..a71d177af3ff0 100644 --- a/src/plugins/data_view_management/public/components/empty_index_list_prompt/__snapshots__/empty_index_list_prompt.test.tsx.snap +++ b/src/plugins/data_view_management/public/components/empty_index_list_prompt/__snapshots__/empty_index_list_prompt.test.tsx.snap @@ -2,7 +2,7 @@ exports[`EmptyIndexListPrompt should render normally 1`] = ` - - - + +

-
-
+ + - +
- - + + `; diff --git a/src/plugins/data_view_management/public/components/empty_index_list_prompt/empty_index_list_prompt.tsx b/src/plugins/data_view_management/public/components/empty_index_list_prompt/empty_index_list_prompt.tsx index 153c51e5f0894..8630f71f65b3c 100644 --- a/src/plugins/data_view_management/public/components/empty_index_list_prompt/empty_index_list_prompt.tsx +++ b/src/plugins/data_view_management/public/components/empty_index_list_prompt/empty_index_list_prompt.tsx @@ -10,11 +10,11 @@ import './empty_index_list_prompt.scss'; import React from 'react'; import { FormattedMessage } from '@kbn/i18n-react'; import { - EuiPageContentHeader, - EuiPageContentHeaderSection, + EuiPageContentHeader_Deprecated as EuiPageContentHeader, + EuiPageContentHeaderSection_Deprecated as EuiPageContentHeaderSection, EuiTitle, - EuiPageContentBody, - EuiPageContent, + EuiPageContentBody_Deprecated as EuiPageContentBody, + EuiPageContent_Deprecated as EuiPageContent, EuiIcon, EuiSpacer, EuiFlexItem, diff --git a/src/plugins/data_views/public/data_views/data_views_api_client.ts b/src/plugins/data_views/public/data_views/data_views_api_client.ts index 835c22891c68c..a45b9f29e595f 100644 --- a/src/plugins/data_views/public/data_views/data_views_api_client.ts +++ b/src/plugins/data_views/public/data_views/data_views_api_client.ts @@ -27,18 +27,17 @@ export class DataViewsApiClient implements IDataViewsApiClient { this.http = http; } - private _request(url: string, query?: {}): Promise { - return this.http - .fetch(url, { - query, - }) - .catch((resp) => { - if (resp.body.statusCode === 404 && resp.body.attributes?.code === 'no_matching_indices') { - throw new DataViewMissingIndices(resp.body.message); - } + private _request(url: string, query?: {}, body?: string): Promise { + const request = body + ? this.http.post(url, { query, body }) + : this.http.fetch(url, { query }); + return request.catch((resp) => { + if (resp.body.statusCode === 404 && resp.body.attributes?.code === 'no_matching_indices') { + throw new DataViewMissingIndices(resp.body.message); + } - throw new Error(resp.body.message || resp.body.error || `${resp.body.statusCode} Response`); - }); + throw new Error(resp.body.message || resp.body.error || `${resp.body.statusCode} Response`); + }); } private _getUrl(path: string[]) { @@ -51,14 +50,17 @@ export class DataViewsApiClient implements IDataViewsApiClient { */ getFieldsForWildcard(options: GetFieldsOptions) { const { pattern, metaFields, type, rollupIndex, allowNoIndex, filter } = options; - return this._request(this._getUrl(['_fields_for_wildcard']), { - pattern, - meta_fields: metaFields, - type, - rollup_index: rollupIndex, - allow_no_index: allowNoIndex, - filter, - }).then((response) => { + return this._request( + this._getUrl(['_fields_for_wildcard']), + { + pattern, + meta_fields: metaFields, + type, + rollup_index: rollupIndex, + allow_no_index: allowNoIndex, + }, + filter ? JSON.stringify({ index_filter: filter }) : undefined + ).then((response) => { return response || { fields: [], indices: [] }; }); } diff --git a/src/plugins/data_views/public/mocks.ts b/src/plugins/data_views/public/mocks.ts index f4f8c08686077..e9bcd6726611a 100644 --- a/src/plugins/data_views/public/mocks.ts +++ b/src/plugins/data_views/public/mocks.ts @@ -35,6 +35,7 @@ const createStartContract = (): Start => { clearCache: jest.fn(), getCanSaveSync: jest.fn(), getIdsWithTitle: jest.fn(), + getFieldsForIndexPattern: jest.fn(), } as unknown as jest.Mocked; }; diff --git a/src/plugins/data_views/server/routes/fields_for.ts b/src/plugins/data_views/server/routes/fields_for.ts index 9e0e94bd57511..67b58148dcf6b 100644 --- a/src/plugins/data_views/server/routes/fields_for.ts +++ b/src/plugins/data_views/server/routes/fields_for.ts @@ -118,5 +118,6 @@ export const registerFieldForWildcard = ( > ) => { router.put({ path, validate }, handler); + router.post({ path, validate }, handler); router.get({ path, validate }, handler); }; diff --git a/src/plugins/discover/public/application/context/context_app.tsx b/src/plugins/discover/public/application/context/context_app.tsx index 5aeec390be3fe..f44103f70b8dd 100644 --- a/src/plugins/discover/public/application/context/context_app.tsx +++ b/src/plugins/discover/public/application/context/context_app.tsx @@ -10,7 +10,12 @@ import React, { Fragment, memo, useEffect, useRef, useMemo, useCallback } from ' import './context_app.scss'; import classNames from 'classnames'; import { FormattedMessage } from '@kbn/i18n-react'; -import { EuiText, EuiPageContent, EuiPage, EuiSpacer } from '@elastic/eui'; +import { + EuiText, + EuiPageContent_Deprecated as EuiPageContent, + EuiPage, + EuiSpacer, +} from '@elastic/eui'; import { cloneDeep } from 'lodash'; import { DataView, DataViewField } from '@kbn/data-views-plugin/public'; import { useExecutionContext } from '@kbn/kibana-react-plugin/public'; diff --git a/src/plugins/discover/public/application/doc/components/doc.tsx b/src/plugins/discover/public/application/doc/components/doc.tsx index 74cc25f339953..8ec6133b73328 100644 --- a/src/plugins/discover/public/application/doc/components/doc.tsx +++ b/src/plugins/discover/public/application/doc/components/doc.tsx @@ -8,7 +8,13 @@ import React, { useEffect, useRef } from 'react'; import { FormattedMessage } from '@kbn/i18n-react'; -import { EuiCallOut, EuiLink, EuiLoadingSpinner, EuiPageContent, EuiPage } from '@elastic/eui'; +import { + EuiCallOut, + EuiLink, + EuiLoadingSpinner, + EuiPageContent_Deprecated as EuiPageContent, + EuiPage, +} from '@elastic/eui'; import type { DataView } from '@kbn/data-views-plugin/public'; import { i18n } from '@kbn/i18n'; import { DocViewer } from '../../../services/doc_views/components/doc_viewer'; diff --git a/src/plugins/discover/public/application/main/components/layout/discover_layout.tsx b/src/plugins/discover/public/application/main/components/layout/discover_layout.tsx index 4806e8f35a007..97c79647d32e1 100644 --- a/src/plugins/discover/public/application/main/components/layout/discover_layout.tsx +++ b/src/plugins/discover/public/application/main/components/layout/discover_layout.tsx @@ -15,7 +15,7 @@ import { EuiHorizontalRule, EuiPage, EuiPageBody, - EuiPageContent, + EuiPageContent_Deprecated as EuiPageContent, EuiSpacer, } from '@elastic/eui'; import { i18n } from '@kbn/i18n'; diff --git a/src/plugins/discover/public/application/main/components/sidebar/discover_sidebar.tsx b/src/plugins/discover/public/application/main/components/sidebar/discover_sidebar.tsx index d67f385578365..87c5205170836 100644 --- a/src/plugins/discover/public/application/main/components/sidebar/discover_sidebar.tsx +++ b/src/plugins/discover/public/application/main/components/sidebar/discover_sidebar.tsx @@ -18,7 +18,7 @@ import { EuiTitle, EuiSpacer, EuiNotificationBadge, - EuiPageSideBar, + EuiPageSideBar_Deprecated as EuiPageSideBar, useResizeObserver, EuiButton, } from '@elastic/eui'; diff --git a/src/plugins/discover/public/components/discover_grid/discover_grid.scss b/src/plugins/discover/public/components/discover_grid/discover_grid.scss index 3ac2055650128..09aa45f76d9f4 100644 --- a/src/plugins/discover/public/components/discover_grid/discover_grid.scss +++ b/src/plugins/discover/public/components/discover_grid/discover_grid.scss @@ -44,6 +44,10 @@ font-size: $euiFontSizeS; } +.euiDataGridRowCell__definedHeight { + white-space: pre-wrap; +} + .dscDiscoverGrid__inner { display: flex; flex-direction: column; @@ -75,13 +79,11 @@ // We only truncate if the cell is not a control column. .euiDataGridHeader { - // This display property is temporary until https://github.com/elastic/eui/issues/4729 is resolved. - display: flex; .euiDataGridHeaderCell__content { @include euiTextTruncate; overflow: hidden; - white-space: nowrap; + white-space: pre-wrap; flex-grow: 1; } @@ -114,6 +116,7 @@ .dscDiscoverGrid__descriptionListDescription { word-break: normal !important; + white-space: nowrap; // Special handling for images coming from the image field formatter img { diff --git a/src/plugins/discover/public/embeddable/saved_search_embeddable.tsx b/src/plugins/discover/public/embeddable/saved_search_embeddable.tsx index fc9afe946fae0..f76343156c955 100644 --- a/src/plugins/discover/public/embeddable/saved_search_embeddable.tsx +++ b/src/plugins/discover/public/embeddable/saved_search_embeddable.tsx @@ -377,8 +377,9 @@ export class SavedSearchEmbeddable const timeRangeSearchSource = searchSource.create(); timeRangeSearchSource.setField('filter', () => { - if (!this.searchProps || !this.input.timeRange) return; - return this.services.timefilter.createFilter(dataView, this.input.timeRange); + const timeRange = this.getTimeRange(); + if (!this.searchProps || !timeRange) return; + return this.services.timefilter.createFilter(dataView, timeRange); }); this.filtersSearchSource = searchSource.create(); @@ -395,6 +396,16 @@ export class SavedSearchEmbeddable } } + private getTimeRange() { + return this.input.timeslice !== undefined + ? { + from: new Date(this.input.timeslice[0]).toISOString(), + to: new Date(this.input.timeslice[1]).toISOString(), + mode: 'absolute' as 'absolute', + } + : this.input.timeRange; + } + private isFetchRequired(searchProps?: SearchProps) { if (!searchProps || !searchProps.dataView) { return false; @@ -403,7 +414,7 @@ export class SavedSearchEmbeddable return ( !onlyDisabledFiltersChanged(this.input.filters, this.prevFilters) || !isEqual(this.prevQuery, this.input.query) || - !isEqual(this.prevTimeRange, this.input.timeRange) || + !isEqual(this.prevTimeRange, this.getTimeRange()) || !isEqual(this.prevSort, this.input.sort) || this.prevSearchSessionId !== this.input.searchSessionId ); @@ -447,7 +458,7 @@ export class SavedSearchEmbeddable this.prevFilters = this.input.filters; this.prevQuery = this.input.query; - this.prevTimeRange = this.input.timeRange; + this.prevTimeRange = this.getTimeRange(); this.prevSearchSessionId = this.input.searchSessionId; this.prevSort = this.input.sort; this.searchProps = searchProps; diff --git a/src/plugins/discover/public/embeddable/types.ts b/src/plugins/discover/public/embeddable/types.ts index 6038aa5a0625c..4dd049c8de9a9 100644 --- a/src/plugins/discover/public/embeddable/types.ts +++ b/src/plugins/discover/public/embeddable/types.ts @@ -19,6 +19,7 @@ import type { SortOrder } from '@kbn/saved-search-plugin/public'; export interface SearchInput extends EmbeddableInput { timeRange: TimeRange; + timeslice?: [number, number]; query?: Query; filters?: Filter[]; hidePanelTitles?: boolean; diff --git a/src/plugins/embeddable/public/lib/containers/container.ts b/src/plugins/embeddable/public/lib/containers/container.ts index 3605f8812fcce..843d3a7cd5c99 100644 --- a/src/plugins/embeddable/public/lib/containers/container.ts +++ b/src/plugins/embeddable/public/lib/containers/container.ts @@ -8,8 +8,18 @@ import uuid from 'uuid'; import { isEqual, xor } from 'lodash'; -import { merge, Subscription } from 'rxjs'; -import { combineLatestWith, mergeMap, pairwise, take } from 'rxjs/operators'; +import { EMPTY, merge, Subscription } from 'rxjs'; +import { + catchError, + combineLatestWith, + distinctUntilChanged, + map, + mergeMap, + pairwise, + switchMap, + take, +} from 'rxjs/operators'; +import deepEqual from 'fast-deep-equal'; import { Embeddable, @@ -47,6 +57,7 @@ export abstract class Container< } = {}; private subscription: Subscription | undefined; + private readonly anyChildOutputChange$; constructor( input: TContainerInput, @@ -82,6 +93,26 @@ export abstract class Container< .subscribe(([_, [{ panels: prevPanels }, { panels: currentPanels }]]) => { this.maybeUpdateChildren(currentPanels, prevPanels); }); + + this.anyChildOutputChange$ = this.getOutput$().pipe( + map(() => this.getChildIds()), + distinctUntilChanged(deepEqual), + + // children may change, so make sure we subscribe/unsubscribe with switchMap + switchMap((newChildIds: string[]) => + merge( + ...newChildIds.map((childId) => + this.getChild(childId) + .getOutput$() + .pipe( + // Embeddables often throw errors into their output streams. + catchError(() => EMPTY), + map(() => childId) + ) + ) + ) + ) + ); } public setChildLoaded(embeddable: IEmbeddable) { @@ -231,6 +262,10 @@ export abstract class Container< } as unknown as TEmbeddableInput; } + public getAnyChildOutputChange$() { + return this.anyChildOutputChange$; + } + public destroy() { super.destroy(); Object.values(this.children).forEach((child) => child.destroy()); diff --git a/src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/page_error.tsx b/src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/page_error.tsx index 54a75fbd3ee65..c338ee982e62f 100644 --- a/src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/page_error.tsx +++ b/src/plugins/es_ui_shared/__packages_do_not_import__/authorization/components/page_error.tsx @@ -6,7 +6,11 @@ * Side Public License, v 1. */ -import { EuiSpacer, EuiEmptyPrompt, EuiPageContent } from '@elastic/eui'; +import { + EuiSpacer, + EuiEmptyPrompt, + EuiPageContent_Deprecated as EuiPageContent, +} from '@elastic/eui'; import React from 'react'; // eslint-disable-next-line @kbn/imports/no_boundary_crossing import { APP_WRAPPER_CLASS } from '@kbn/core/public'; diff --git a/src/plugins/es_ui_shared/public/components/page_loading/page_loading.tsx b/src/plugins/es_ui_shared/public/components/page_loading/page_loading.tsx index 2fb99208e58ac..38caa1d817720 100644 --- a/src/plugins/es_ui_shared/public/components/page_loading/page_loading.tsx +++ b/src/plugins/es_ui_shared/public/components/page_loading/page_loading.tsx @@ -7,7 +7,12 @@ */ import React from 'react'; -import { EuiEmptyPrompt, EuiLoadingSpinner, EuiText, EuiPageContent } from '@elastic/eui'; +import { + EuiEmptyPrompt, + EuiLoadingSpinner, + EuiText, + EuiPageContent_Deprecated as EuiPageContent, +} from '@elastic/eui'; export const PageLoading: React.FunctionComponent = ({ children }) => { return ( diff --git a/src/plugins/es_ui_shared/public/components/section_loading/section_loading.tsx b/src/plugins/es_ui_shared/public/components/section_loading/section_loading.tsx index 09c6986ee252d..119e053312dc8 100644 --- a/src/plugins/es_ui_shared/public/components/section_loading/section_loading.tsx +++ b/src/plugins/es_ui_shared/public/components/section_loading/section_loading.tsx @@ -8,14 +8,9 @@ import React from 'react'; -import { - EuiEmptyPrompt, - EuiLoadingSpinner, - EuiText, - EuiFlexGroup, - EuiFlexItem, - EuiTextColor, -} from '@elastic/eui'; +import { EuiLoadingSpinner, EuiText, EuiFlexGroup, EuiFlexItem, EuiTextColor } from '@elastic/eui'; + +import { KibanaPageTemplate } from '@kbn/shared-ux-page-kibana-template'; interface Props { inline?: boolean; @@ -40,7 +35,7 @@ export const SectionLoading: React.FunctionComponent = ({ inline, childre } return ( - } body={{children}} data-test-subj="sectionLoading" diff --git a/src/plugins/home/public/application/components/__snapshots__/home.test.tsx.snap b/src/plugins/home/public/application/components/__snapshots__/home.test.tsx.snap index 43d8f935221b3..3cc05cb41c6f9 100644 --- a/src/plugins/home/public/application/components/__snapshots__/home.test.tsx.snap +++ b/src/plugins/home/public/application/components/__snapshots__/home.test.tsx.snap @@ -1,7 +1,7 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`home change home route should render a link to change the default route in advanced settings if advanced settings is enabled 1`] = ` -, } } - template="empty" + panelled={false} > - + `; exports[`home directories should not render directory entry when showOnHomePage is false 1`] = ` -, } } - template="empty" + panelled={false} > - + `; exports[`home directories should render ADMIN directory entry in "Manage your data" panel 1`] = ` -, } } - template="empty" + panelled={false} > - + `; exports[`home directories should render solutions in the "solution section" 1`] = ` -, } } - template="empty" + panelled={false} > - + `; exports[`home isNewKibanaInstance should safely handle exceptions 1`] = ` -, } } - template="empty" + panelled={false} > - + `; exports[`home isNewKibanaInstance should set isNewKibanaInstance to false when there are index patterns 1`] = ` -, } } - template="empty" + panelled={false} > - + `; exports[`home isNewKibanaInstance should set isNewKibanaInstance to true when there are no index patterns 1`] = ` @@ -379,7 +379,7 @@ exports[`home isNewKibanaInstance should set isNewKibanaInstance to true when th `; exports[`home should render home component 1`] = ` -, } } - template="empty" + panelled={false} > - + `; diff --git a/src/plugins/home/public/application/components/_add_data.scss b/src/plugins/home/public/application/components/_add_data.scss index e69d14b9be41a..638a636421bcb 100644 --- a/src/plugins/home/public/application/components/_add_data.scss +++ b/src/plugins/home/public/application/components/_add_data.scss @@ -1,12 +1,13 @@ .homDataAdd__illustration { display: block; - margin: 0 auto #{-($euiSizeXXL + $euiSizeXS)} auto; + margin-block: 0 #{-($euiSizeXL + $euiSizeXS)}; + margin-inline: auto; @include euiBreakpoint('m', 'l', 'xl') { - margin-bottom: -$euiSizeXXL; + margin-block-end: -$euiSizeXL; } @include euiBreakpoint('l', 'xl') { - width: 80%; + inline-size: 80%; } -} \ No newline at end of file +} diff --git a/src/plugins/home/public/application/components/_solutions_section.scss b/src/plugins/home/public/application/components/_solutions_section.scss index 5b886b0d8bb42..93da045674261 100644 --- a/src/plugins/home/public/application/components/_solutions_section.scss +++ b/src/plugins/home/public/application/components/_solutions_section.scss @@ -1,13 +1,17 @@ +.homSolutions__content { + padding-block-start: 0; +} + .homSolutions__item { @include euiBreakpoint('l', 'xl') { - max-width: calc(33.33% - #{$euiSizeM * 2}); + max-inline-size: calc(33.33% - #{$euiSizeM * 2}); } } .homSolutionPanel { img { background-color: $euiColorPrimary; - max-height: $euiSize * 10; + max-block-size: $euiSize * 10; object-fit: cover; } @@ -22,4 +26,4 @@ &--securitySolution img { background-color: $euiColorSuccess; } -} \ No newline at end of file +} diff --git a/src/plugins/home/public/application/components/add_data/__snapshots__/add_data.test.tsx.snap b/src/plugins/home/public/application/components/add_data/__snapshots__/add_data.test.tsx.snap index fcc4b3e8f1d0f..58f9581a1ec91 100644 --- a/src/plugins/home/public/application/components/add_data/__snapshots__/add_data.test.tsx.snap +++ b/src/plugins/home/public/application/components/add_data/__snapshots__/add_data.test.tsx.snap @@ -1,116 +1,113 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`AddData render 1`] = ` - -
+ - - - + +

-

- -

-
- - -

- -

-
- - + +
+ + +

+ +

+
+ + + - - - - - - - - - - - - + + + + - - - - - -
- - - -
-
- -
+ + + + + + + + + + + + + + + `; diff --git a/src/plugins/home/public/application/components/add_data/add_data.tsx b/src/plugins/home/public/application/components/add_data/add_data.tsx index 8946e3e80a217..27f98a85ff4e8 100644 --- a/src/plugins/home/public/application/components/add_data/add_data.tsx +++ b/src/plugins/home/public/application/components/add_data/add_data.tsx @@ -12,12 +12,12 @@ import { EuiButtonEmpty, EuiFlexGroup, EuiFlexItem, - EuiHorizontalRule, EuiImage, EuiSpacer, EuiText, EuiTitle, } from '@elastic/eui'; +import { KibanaPageTemplate } from '@kbn/shared-ux-page-kibana-template'; import { FormattedMessage } from '@kbn/i18n-react'; import { METRIC_TYPE } from '@kbn/analytics'; import { ApplicationStart } from '@kbn/core/public'; @@ -36,99 +36,100 @@ export const AddData: FC = ({ addBasePath, application, isDarkMode }) => const canAccessIntegrations = application.capabilities.navLinks.integrations; if (canAccessIntegrations) { return ( - <> -
- - - -

- -

-
- - + + + + +

+ +

+
- -

- -

-
+ - + +

+ +

+
- - - - {/* eslint-disable-next-line @elastic/eui/href-or-on-click */} - { - trackUiMetric(METRIC_TYPE.CLICK, 'home_tutorial_directory'); - createAppNavigationHandler('/app/integrations/browse')(event); - }} - > - - - - + - - + + + {/* eslint-disable-next-line @elastic/eui/href-or-on-click */} + { + trackUiMetric(METRIC_TYPE.CLICK, 'home_tutorial_directory'); + createAppNavigationHandler('/app/integrations/browse')(event); + }} > - - + + +
- - - - - -
-
+ + + + + - - - -
-
+ + + + + + + - - + + + + + ); } else { return null; diff --git a/src/plugins/home/public/application/components/guided_onboarding/__snapshots__/getting_started.test.tsx.snap b/src/plugins/home/public/application/components/guided_onboarding/__snapshots__/getting_started.test.tsx.snap index 5e18ec73565d7..89105328eec7d 100644 --- a/src/plugins/home/public/application/components/guided_onboarding/__snapshots__/getting_started.test.tsx.snap +++ b/src/plugins/home/public/application/components/guided_onboarding/__snapshots__/getting_started.test.tsx.snap @@ -1,81 +1,88 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`getting started should render getting started component 1`] = ` - -
+ - -

- What would you like to do first? -

-
- - -

- Select a starting point for a quick tour of how Elastic can help you do even more with your data. -

-
- - - - - - - - - - - - - - - - -
- +

+ What would you like to do first? +

+ + + +

+ Select a starting point for a quick tour of how Elastic can help you do even more with your data. +

+
+ + + + + + + + + + + + + + + + +
- No thanks, I’ll explore on my own. - -
-
- + + No thanks, I’ll explore on my own. + +
+ + + `; diff --git a/src/plugins/home/public/application/components/guided_onboarding/getting_started.tsx b/src/plugins/home/public/application/components/guided_onboarding/getting_started.tsx index 9f27a0194a3ca..f3131e63ad393 100644 --- a/src/plugins/home/public/application/components/guided_onboarding/getting_started.tsx +++ b/src/plugins/home/public/application/components/guided_onboarding/getting_started.tsx @@ -12,6 +12,8 @@ import { EuiFlexItem, EuiHorizontalRule, EuiLink, + EuiPageTemplate, + EuiPanel, EuiSpacer, EuiText, EuiTitle, @@ -72,38 +74,40 @@ export const GettingStarted = () => { padding: calc(${euiTheme.size.base}*3) calc(${euiTheme.size.base}*4); `; return ( - -
- -

{title}

-
- - -

{subtitle}

-
- - - - - - - - - - - - - - - - -
- {/* data-test-subj used for FS tracking */} - - {skipText} - -
-
+ + + + +

{title}

+
+ + +

{subtitle}

+
+ + + + + + + + + + + + + + + + +
+ {/* data-test-subj used for FS tracking */} + + {skipText} + +
+
+
); }; diff --git a/src/plugins/home/public/application/components/home.tsx b/src/plugins/home/public/application/components/home.tsx index f3d4fd8e01323..f6b579213d420 100644 --- a/src/plugins/home/public/application/components/home.tsx +++ b/src/plugins/home/public/application/components/home.tsx @@ -10,7 +10,8 @@ import React, { Component } from 'react'; import { FormattedMessage } from '@kbn/i18n-react'; import { METRIC_TYPE } from '@kbn/analytics'; import { i18n } from '@kbn/i18n'; -import { KibanaPageTemplate, OverviewPageFooter } from '@kbn/kibana-react-plugin/public'; +import { KibanaPageTemplate } from '@kbn/shared-ux-page-kibana-template'; +import { OverviewPageFooter } from '@kbn/kibana-react-plugin/public'; import { HOME_APP_BASE_PATH } from '../../../common/constants'; import type { FeatureCatalogueEntry, @@ -143,7 +144,7 @@ export class Home extends Component { bottomBorder: false, pageTitle: , }} - template="empty" + panelled={false} > diff --git a/src/plugins/home/public/application/components/manage_data/__snapshots__/manage_data.test.tsx.snap b/src/plugins/home/public/application/components/manage_data/__snapshots__/manage_data.test.tsx.snap index 401af74231e5d..9d9b35b1f8817 100644 --- a/src/plugins/home/public/application/components/manage_data/__snapshots__/manage_data.test.tsx.snap +++ b/src/plugins/home/public/application/components/manage_data/__snapshots__/manage_data.test.tsx.snap @@ -1,266 +1,260 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`ManageData hide dev tools and stack management links if unavailable 1`] = ` - -
+ - - - -

- -

-
-
-
- - + + + + + + + - - - - - - - - - - - - - -
- -
+ + + + + + + + + + + + + `; exports[`ManageData render 1`] = ` - -
+ - - - -

- -

-
-
- + + + + + - - - - - - - - - - + + + + + + + - - - - - - - -
- - + + + + + +
+ + + - - - - - - - - - - - - - -
- -
+ + + + + + + + + + + + + `; exports[`ManageData render null without any features 1`] = `""`; diff --git a/src/plugins/home/public/application/components/manage_data/manage_data.tsx b/src/plugins/home/public/application/components/manage_data/manage_data.tsx index 092d9b2e7a504..9b93d3149c342 100644 --- a/src/plugins/home/public/application/components/manage_data/manage_data.tsx +++ b/src/plugins/home/public/application/components/manage_data/manage_data.tsx @@ -7,14 +7,8 @@ */ import React, { FC, MouseEvent } from 'react'; -import { - EuiButtonEmpty, - EuiFlexGroup, - EuiHorizontalRule, - EuiSpacer, - EuiTitle, - EuiFlexItem, -} from '@elastic/eui'; +import { EuiButtonEmpty, EuiFlexGroup, EuiSpacer, EuiTitle, EuiFlexItem } from '@elastic/eui'; +import { KibanaPageTemplate } from '@kbn/shared-ux-page-kibana-template'; import { FormattedMessage } from '@kbn/i18n-react'; import { METRIC_TYPE } from '@kbn/analytics'; import { ApplicationStart } from '@kbn/core/public'; @@ -43,90 +37,88 @@ export const ManageData: FC = ({ addBasePath, application, features }) => application.capabilities.navLinks; return ( - <> -
- - - -

- -

-
-
- - {isDevToolsEnabled || isManagementEnabled ? ( - - - {/* Check if both the Dev Tools UI and the Console UI are enabled. */} - {isDevToolsEnabled && consoleHref !== undefined ? ( - - - - - - - - ) : null} + + + + +

+ +

+
+
- {isManagementEnabled ? ( - - - - - - - - ) : null} -
-
- ) : null} -
+ {isDevToolsEnabled || isManagementEnabled ? ( + + + {/* Check if both the Dev Tools UI and the Console UI are enabled. */} + {isDevToolsEnabled && consoleHref !== undefined ? ( + + + + + + + + ) : null} - + {isManagementEnabled ? ( + + + + + + + + ) : null} + + + ) : null} + - - {features.map((feature) => ( - - { - trackUiMetric(METRIC_TYPE.CLICK, `manage_data_card_${feature.id}`); - createAppNavigationHandler(feature.path)(event); - }} - title={feature.title} - url={addBasePath(feature.path)} - /> - - ))} - -
+ - - + + {features.map((feature) => ( + + { + trackUiMetric(METRIC_TYPE.CLICK, `manage_data_card_${feature.id}`); + createAppNavigationHandler(feature.path)(event); + }} + title={feature.title} + url={addBasePath(feature.path)} + /> + + ))} + + ); } else { return null; diff --git a/src/plugins/home/public/application/components/solutions_section/__snapshots__/solutions_section.test.tsx.snap b/src/plugins/home/public/application/components/solutions_section/__snapshots__/solutions_section.test.tsx.snap index 676745e7f1a52..68a5578b69f1f 100644 --- a/src/plugins/home/public/application/components/solutions_section/__snapshots__/solutions_section.test.tsx.snap +++ b/src/plugins/home/public/application/components/solutions_section/__snapshots__/solutions_section.test.tsx.snap @@ -1,129 +1,133 @@ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`SolutionsSection renders a single solution 1`] = ` - -
- -

- -

-
- + +

- - -

- -
+ + + + + + `; exports[`SolutionsSection renders multiple solutions 1`] = ` - -
- -

- -

-
- + +

- - + + + - + - + - -

- -
+ } + /> + + + `; exports[`SolutionsSection renders null if no solutions are available 1`] = `""`; diff --git a/src/plugins/home/public/application/components/solutions_section/solutions_section.tsx b/src/plugins/home/public/application/components/solutions_section/solutions_section.tsx index 41978b97cd5a3..4d913646437c1 100644 --- a/src/plugins/home/public/application/components/solutions_section/solutions_section.tsx +++ b/src/plugins/home/public/application/components/solutions_section/solutions_section.tsx @@ -7,7 +7,8 @@ */ import React, { FC } from 'react'; -import { EuiFlexGroup, EuiHorizontalRule, EuiScreenReaderOnly } from '@elastic/eui'; +import { EuiFlexGroup, EuiScreenReaderOnly } from '@elastic/eui'; +import { KibanaPageTemplate } from '@kbn/shared-ux-page-kibana-template'; import { FormattedMessage } from '@kbn/i18n-react'; import { SolutionPanel } from './solution_panel'; import { FeatureCatalogueEntry, FeatureCatalogueSolution } from '../../..'; @@ -27,26 +28,28 @@ export const SolutionsSection: FC = ({ addBasePath, solutions }) => { solutions = solutions.sort(sortByOrder); return ( - <> -
- -

- -

-
+ + +

+ +

+
- - {solutions.map((solution) => ( - - ))} - -
- - - + + {solutions.map((solution) => ( + + ))} + + ); } else { return null; diff --git a/src/plugins/kibana_overview/public/components/overview/__snapshots__/overview.test.tsx.snap b/src/plugins/kibana_overview/public/components/overview/__snapshots__/overview.test.tsx.snap index 7a558339f8c38..6b192533c173c 100644 --- a/src/plugins/kibana_overview/public/components/overview/__snapshots__/overview.test.tsx.snap +++ b/src/plugins/kibana_overview/public/components/overview/__snapshots__/overview.test.tsx.snap @@ -214,6 +214,7 @@ exports[`Overview renders correctly 1`] = ` @@ -914,6 +915,7 @@ exports[`Overview renders correctly without features 1`] = ` @@ -1109,6 +1111,7 @@ exports[`Overview renders correctly without solutions 1`] = ` diff --git a/src/plugins/kibana_overview/public/components/overview/overview.tsx b/src/plugins/kibana_overview/public/components/overview/overview.tsx index 245fcb12c7afd..f87c90a4591d4 100644 --- a/src/plugins/kibana_overview/public/components/overview/overview.tsx +++ b/src/plugins/kibana_overview/public/components/overview/overview.tsx @@ -12,7 +12,6 @@ import { EuiCard, EuiFlexGroup, EuiFlexItem, - EuiHorizontalRule, EuiScreenReaderOnly, EuiSpacer, EuiTitle, @@ -214,45 +213,45 @@ export const Overview: FC = ({ newsFetchResult, solutions, features }) => showDevToolsLink: !!devTools, showManagementLink: !!manageDataFeatures, }), + bottomBorder: true, }} - template="empty" + panelled={false} > - <> -
- -

- -

-
- - {mainApps.length ? ( - <> - - {mainApps.map(renderAppCard)} - - - - - ) : null} - - {remainingApps.length ? ( + + +

+ +

+
+ + {mainApps.length ? ( + <> - {remainingApps.map(renderAppCard)} + {mainApps.map(renderAppCard)} - ) : null} -
- -